/* =========================================================
   TEMA / BASE GERAL
   - Fonte: Century Gothic
   - Cores: #FF6600 (laranja), #575757 (hover), #ECECEC (somente no HERO)
   - Namespace: produto-
========================================================= */
:root{
  --produto-laranja:#FF6600;
  --produto-cinza:#575757;
  --produto-fundo-hero:#ECECEC; /* usado SÓ no hero */
  --produto-branco:#FFFFFF;
  --produto-borda:#E3E3E3;
  --produto-radius:16px;
  --produto-shadow:0 8px 24px rgba(0,0,0,.08);
  --produto-trans:220ms cubic-bezier(.2,.7,.2,1);
}
*{box-sizing:border-box}
html,body{height:100%}
body.produto-body{
  margin:0;
  background:#fff;                /* fundo geral branco */
  color:#222;
  font-family:"Century Gothic", Arial, Helvetica, sans-serif;
  line-height:1.45;
}
.produto-container{ max-width:1350px; margin:0 auto; padding:24px 20px 56px }

/* =========================================================
   BREADCRUMB
========================================================= */
.produto-breadcrumb{ font-size:14px; color:var(--produto-cinza); margin-bottom:14px }
.produto-breadcrumb a{ color:var(--produto-cinza); text-decoration:none }
.produto-breadcrumb a:hover{ text-decoration:underline }
.produto-breadcrumb span{ opacity:.85 }

/* === SEÇÃO: BANNER TOPO (1350 x 350) ===================== */
/* Banner 1350x350 com texto dentro (overlay) */
.produto-banner-top{
  width: 1350px;
  height: 350px;
  margin: 0 auto 0px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;     /* opcional: igual ao seu exemplo */
  background: #fff;
  font-family: "Century Gothic", Arial, sans-serif;
}

.produto-banner-top__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;       /* preenche sem distorcer */
  display: block;
}

/* Texto dentro do banner, simples e legível */
.produto-banner-top__content{
  position: absolute;
  top: 20px;
  left: 24px;
  right: 24px;
  z-index: 1;
}

.produto-banner-top__title{
  margin: 0 0 6px 0;
  font-weight: 700;
  font-size: 28px;         /* ajuste se quiser maior/menor */
  line-height: 1.2;
  color: #575757;             /* troque para #FF6600 se preferir */
}

.produto-banner-top__subtitle{
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
	
  color: #575757;
}

/* === DESCRIÇÃO (1350px, simples) ======================= */
/* === DESCRIÇÃO ABAIXO DO BANNER (responsiva) =================== */
.produto-descricao{
  max-width: 1350px;      /* largura máxima do layout */
  width: 100%;            /* ocupa 100% em telas menores */
  margin: 0px auto 50px; /* 10px de distância do banner + centralizado */
  padding: 0 12px;        /* respiro lateral no mobile (pode tirar se não quiser) */
  font-family: "Century Gothic", Arial, sans-serif;
  color: #333;
}

.produto-descricao p{
  margin: 0;
  font-size: clamp(14px, 1.6vw, 16px); /* levemente responsivo */
  line-height: 1.6;
  text-align:justify;
}

/* ===== HERO: faixa cinza full-width, conteúdo até 1350px ===== */
.produto-hero-wrap{
  width: 100%;
  background: #ECECEC;
  padding: 16px 0;
  font-family: "Century Gothic", Arial, sans-serif;
}

/* Grid: thumbs | coluna 2 (1fr) | coluna 3 (1fr)
   -> col.2 e col.3 com o MESMO peso para o figure ficar centralizado entre elas */
.produto-hero-container{
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
  padding: 0 12px;
  display: grid;
  grid-template-columns: 90px minmax(0,1fr) minmax(0,1fr);
  gap: 24px;
  align-items: center; /* centraliza na vertical */
}

/* --------- Coluna 1: Miniaturas --------- */
.produto-thumbs{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.produto-thumb{
  width: 90px; height: 90px; object-fit: cover;
  border-radius: 8px; border: 1px solid #ddd; cursor: pointer;
  transition: transform .2s, border-color .2s;
}
.produto-thumb:hover{ transform: scale(1.03); }
.produto-thumb.is-active{ border-color: #FF6600; }

/* --------- Coluna 2: Foto 350x350 (centrada na coluna) --------- */
.produto-mainfigure {
  margin: 0 auto;
  position: relative;
  width: 500px;              /* largura fixa desktop */
  min-height: auto;
  justify-self: center;
  padding-left: 150px;       /* respiro lateral */
  
  box-sizing: border-box;
  text-align: center;        /* garante centralização */
}

#produto-foto {
  display: block;
  width: 500px;              /* imagem fixa desktop */
  height: 500px;
  object-fit: contain;
  margin: 0 auto;
}

/* ===== Responsivo ===== */
@media (max-width: 1024px) {
  .produto-mainfigure {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  #produto-foto {
    width: 100%;
    max-width: 500px;        /* nunca maior que 500px */
    min-width: 250px;        /* nunca menor que 250px */
    height: auto;            /* ajusta proporção */
  }
}

.youtube-btn {
  display: inline-block;
  margin-top: 16px;           /* espaço acima, separa das miniaturas */
  text-align: center;
}

.youtube-icon {
  width:90px;                /* ajuste o tamanho da imagem */
  height: auto;
  transition: transform 0.2s ease;
}

.youtube-btn:hover .youtube-icon {
  transform: scale(1.1);      /* leve zoom no hover */
}

/* Bolinhas centralizadas na foto */
/* Container dos botões */
.produto-acabamentos {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

/* Estilo base dos dots */
.produto-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #ccc;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.produto-dot:hover {
  transform: scale(1.1);
  border-color: #666;
}

/* Hover com nome da cor */
.produto-dot:hover::after {
  content: attr(aria-label);
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 10;
  opacity: 0.9;
  pointer-events: none;
}

/* Dot ativo */
.produto-dot.is-active {
  border-color: #FF6600; /* Destaque da cor ativa */
  transform: scale(1.2);
}

/* Cores dos acabamentos */
.produto-dot--branco { background: #FFFFFF; }
.produto-dot--preto { background: #000000; }
.produto-dot--grafite { background: #4B4B4B; }
.produto-dot--marrom { background: #6B4226; }

/* Degradê para Rose Gold */
.produto-dot--rosegold {
  background: linear-gradient(135deg, #B76E79, #FFD1DC);
}

/* Degradê para Dourado */
.produto-dot--dourado {
  background: linear-gradient(135deg, #FFD700, #FFA500);
}

/* Efeito metálico para cromado */
.produto-dot--cromado {
  background: linear-gradient(145deg, #f0f0f0, #c0c0c0, #a0a0a0);
}



/* --------- Coluna 3: Textos + CTA (bloco à direita, texto à esquerda) --------- */
.produto-beneficios{
  justify-self: end;   /* bloco encostado na direita da coluna 3 */
  align-self: center;  /* centro vertical */
  text-align: left;
}
.produto-beneficios-titulo{
  margin: 0 0 6px; font-size: 20px; color: #222;
}
.produto-beneficios p{
  margin: 0 0 12px; font-size: 16px; line-height: 1.5; color: #444;
}
.produto-btn{
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 18px; border-radius: 999px;
  background: #FF6600; color: #fff; text-decoration: none; font-weight: 700;
  transition: transform .2s, background .2s;
}
.produto-btn:hover{ background: #575757; transform: scale(1.03); }

/* ===== Responsivo ===== */
@media (max-width: 980px){
  /* 2 colunas: thumbs | conteúdo (foto centralizada) */
  .produto-hero-container{
    grid-template-columns: 80px 1fr;
  }
  .produto-mainfigure{ justify-self: center; }
  .produto-beneficios{
    grid-column: 1 / -1;      /* textos abaixo da foto */
    justify-self: start;      /* volta pra esquerda */
    margin-top: 8px;
  }
}
@media (max-width: 560px){
  /* 1 coluna: tudo empilhado */
  .produto-hero-container{ grid-template-columns: 1fr; }
  .produto-thumbs{ flex-direction: row; gap: 8px; order: -1; margin-bottom: 8px; }
  .produto-thumb{ width: 68px; height: 68px; }
  .produto-mainfigure{ width: 280px; min-height: 280px; }
  #produto-foto{ width: 280px; height: 280px; }
}

/* =========================================================
 DOWNLOADS
========================================================= */
  .toast-download {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff6600;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    display: none;
    z-index: 1000;
    font-family: Arial, sans-serif;
  }
.caixa-downloads {
  width: 100%;
  text-align: center;
  background-color: #575757;       /* cinza da barra */
  color: #fff;                     /* cor padrão do texto */
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  margin: 0 0 60px;                 /* espaço inferior opcional */
}

/* Estilo do título dentro da caixa */
.caixa-downloads h2 {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  color: #fff;                      /* mantém contraste no cinza */
}
.produto-sectiontitle {
  font-size: 22px;
  margin: 60px 0 12px;
}

.produto-atalhos {
  margin-top: 50px;
}

.produto-atalhos-lista {
  list-style: none;
  padding: 0;
  margin: 0 0 60px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 1100px) {
  .produto-atalhos-lista { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 620px) {
  .produto-atalhos-lista { grid-template-columns: repeat(2, 1fr); }
}

.produto-card {
  display: block;
  position: relative;
  width: 100%;
  height: 240px;
  perspective: 1000px; /* ativa efeito 3D */
  text-decoration: none;
}

.card-front,
.card-back {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--produto-borda);
  border-radius: 16px;
  background: #fff;
  color: #222;
  backface-visibility: hidden;
  transition: transform 0.6s ease, background 0.3s ease, color 0.3s ease;
}

.card-front span { font-size: 28px; line-height: 1; }
.card-front strong { font-weight: 600; }

.card-back {
  transform: rotateY(180deg);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 0 10px;
}

/* Flip no hover */
.produto-card:hover .card-front,
.produto-card:focus-visible .card-front {
  transform: rotateY(180deg);
  background: var(--produto-laranja);
  color: #fff;
  border-color: var(--produto-laranja);
}

.produto-card:hover .card-back,
.produto-card:focus-visible .card-back {
  transform: rotateY(360deg);
  background: var(--produto-laranja);
  color: #fff;
  border-color: var(--produto-laranja);
}


/* =========================================================
  PRODUTOS
========================================================= */

.secao-botao-galeria {
  margin: 0 0 40px 0;
}

.caixa-galeria {
  width: 100%;
  text-align: center;
  background-color: #575757;
  color: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.caixa-galeria h2 {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}



.secao-produtos {
  padding-top: 40px;
  padding-bottom: 0;
}

.secao-produtos h2 {
  color: #575757;
  margin-bottom: 20px;
  text-align: center;
}

.produtos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 160px;
  margin-top: 60px;
}

.produto {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 15px;
  text-align: center;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.produto:hover {
  transform: scale(1.05);
  border-color: #FF6600;
  color: #FF6600;
}

.imagem-produto {
  width: 100%;
  height: 120px;
  margin-bottom: 40px;
}

.produto-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.secao-extra-produtos {
  margin-top: 20px;
  margin-bottom: 40px;
}

/* ===== FAQ ===== */
.produto-faq { margin-top: 28px; }
.produto-sectiontitle { font-size: 22px; margin: 0 0 12px; color:#222; }

.produto-faq-item{
  border:1px solid #E9E9E9;
  border-radius:14px;
  background:#fff;
  overflow:hidden;
  margin-bottom:12px;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.produto-faq-item:hover{
  border-color:#FF6600;
  box-shadow:0 8px 18px rgba(0,0,0,.06);
}

/* pergunta */
.produto-faq-pergunta{
  list-style:none;
  cursor:pointer;
  position:relative;
  padding:16px 48px 16px 16px;
  font-weight:700;
  color:#222;
}
.produto-faq-pergunta::-webkit-details-marker{ display:none; }

/* seta */
.produto-faq-pergunta::after{
  content:"";
  position:absolute; right:16px; top:50%;
  width:10px; height:10px;
  border-right:2px solid #575757; border-bottom:2px solid #575757;
  transform: translateY(-50%) rotate(45deg);
  transition: transform .25s ease, border-color .25s ease;
}
.produto-faq-item[open] .produto-faq-pergunta::after{
  transform: translateY(-50%) rotate(225deg);
  border-color:#FF6600;
}

/* resposta */
.produto-faq-resposta{
  padding:0 16px 16px 16px;
  color:#575757;
  line-height:1.55;
  font-size:15px;
}
