/* style.css — v3.5.4 */

/* ============================================================
   FONTES LOCAIS
============================================================ */
@font-face {
  font-family: 'Cooldex';
  src: url('../font/Cooldex.woff2') format('woff2'),
       url('../font/Cooldex.otf')   format('opentype'),
       url('../font/Cooldex.ttf')   format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


/* ============================================================
   RESET & BASE
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Cores */
  --gold:           #C9A227;
  --gold-bright:    #F0BF30;
  --gold-dark:      #9A7A14;
  --dark:           #080106;
  --dark-card:      #110C0F;
  --dark-card-alt:  #160F13;
  --border-subtle:  rgba(255, 255, 255, 0.08);
  --border-gold:    rgba(201, 162, 39, 0.35);
  --white:          #FFFFFF;
  --gray-text:      rgba(255, 255, 255, 0.56);

  /* Tipografia */
  --font-display: 'Bebas Neue', sans-serif;
  --font-marker:  'Cooldex', cursive;
  --font-body:    'Inter', sans-serif;

  /* Espaçamento lateral mobile */
  --px-mobile:  22px;
  --px-tablet:  48px;
  --px-desktop: 80px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--dark);
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}


/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--px-mobile);
}

/* Logo */
.navbar__logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--white);
  user-select: none;
}

/* Carrinho */
.navbar__cart {
  background: none;
  border: none;
  color: var(--white);
  padding: 4px;
  display: flex;
  align-items: center;
}


/* ============================================================
   HERO — SEÇÃO
============================================================ */
.hero {
  position: relative;
  background-color: var(--dark);
  min-height: 100svh; /* fallback: 100vh */
  min-height: 100vh;
  overflow: hidden;
}


/* ============================================================
   HERO — IMAGEM DE FUNDO
   Mobile  (< 640px):  bg-hero-mobile.jpg — portrait, top center
   Desktop (≥ 640px):  bg-hero.jpg        — landscape, top center
============================================================ */
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/bg-hero-mobile.jpg');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  z-index: 0;
}

/* Máscara: a parte de cima mostra a imagem,
   a parte de baixo transita para o fundo escuro */
.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 1, 6, 0.05)  0%,
    rgba(8, 1, 6, 0.00) 18%,
    rgba(8, 1, 6, 0.30) 42%,
    rgba(8, 1, 6, 0.82) 62%,
    rgba(8, 1, 6, 1.00) 75%
  );
  z-index: 1;
  pointer-events: none;
}


/* ============================================================
   HERO — CONTEÚDO
============================================================ */
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--px-mobile) 44px;
  /* Empurra o conteúdo para baixo da área da imagem */
  padding-top: 47vh;
}


/* ---- Badge ---- */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  color: var(--white);
  background: rgba(16, 9, 13, 0.70);
  border: 1px solid rgba(201, 162, 39, 0.55);
  border-radius: 100px;
  padding: 7px 16px;
  margin-bottom: 16px;
  box-shadow: 0 0 16px rgba(201, 162, 39, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero__badge-icon {
  color: var(--gold-bright);
  font-size: 10px;
  line-height: 1;
}


/* ---- Título principal ---- */
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(29px, 8.1vw, 55px); /* −35% em relação ao original */
  line-height: 0.96;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 6px;
}

/* Trecho "O HYPE DAS RUAS / ENCONTRA A"
   Degradê de branco (topo) para #b9b7ba (base) — +15% do tamanho base */
.hero__title--gradient {
  display: inline;
  font-size: 1em;
  background: linear-gradient(to bottom, #ffffff 0%, #b9b7ba 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Trecho "VELOCIDADE / DE UMA LENDA."
   Cooldex, amarelo #fcb503 — −10% do tamanho base */
.hero__title--marker {
  display: inline;
  font-size: 0.9em;
  font-family: var(--font-marker);
  color: #fcb503;
  -webkit-text-fill-color: #fcb503;
  line-height: 1.05;
}


/* ---- Brush underline nas palavras do título ---- */
.title-brush {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.title-brush::after {
  content: '';
  position: absolute;
  bottom: -0.14em;
  left: -2%;
  width: 104%;
  height: 0.24em;
  background-image: url('../img/brush.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}


/* ---- Subtítulo ---- */
.hero__subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 10px;
}

.hero__subtitle strong {
  font-weight: 700;
  color: var(--white);
}


/* ---- Corpo ---- */
.hero__body {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.70);
  margin-bottom: 30px;
}

.text-gold {
  color: var(--gold-bright);
  font-weight: 600;
}


/* ---- CTA Principal ---- */
.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 12px 28px;

  /* Pill shape para combinar com a imagem */
  border-radius: 50px;

  /* Imagem como background, esticada para preencher o botão */
  background-image: url('../img/bg-bt-cta.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-color: #F5A800; /* fallback enquanto a imagem carrega */

  color: #351001;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  font-weight: bold;
  letter-spacing: 0.08em;

  border: none;

  /* Halo externo mantido para o glow dourado ao redor */
  box-shadow:
    0 0 10px  rgba(235, 158,  0, 0.85),
    0 0 26px  rgba(215, 120,  0, 0.60),
    0 0 52px  rgba(190,  95,  0, 0.35),
    0 0 80px  rgba(165,  70,  0, 0.18);

  margin-bottom: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn-cta:hover,
.btn-cta:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow:
    0 0 14px  rgba(235, 158,  0, 1.00),
    0 0 34px  rgba(215, 120,  0, 0.78),
    0 0 65px  rgba(190,  95,  0, 0.50),
    0 0 100px rgba(165,  70,  0, 0.26);
}

.btn-cta:active {
  transform: translateY(0);
  filter: brightness(0.96);
}


/* ---- CTA Secundária ---- */
.btn-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 30px;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.btn-link:hover,
.btn-link:focus-visible {
  color: var(--gold-bright);
}


/* ---- Cards de Diferenciais ---- */
.hero__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.feature-card {
  background: rgba(17, 12, 15, 0.75);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 12px 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.feature-card__icon {
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-card span {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.35;
}


/* ---- Barra de Confiança ---- */
.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gray-text);
}

.trust-item svg {
  flex-shrink: 0;
}

.trust-sep {
  color: rgba(255, 255, 255, 0.20);
  font-size: 14px;
  line-height: 1;
}


/* ============================================================
   ANIMAÇÕES DE REVEAL (controladas pelo JS)
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s ease var(--reveal-delay, 0ms),
    transform 0.55s ease var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respeita preferência de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
}


/* ============================================================
   RESPONSIVO — TABLET  (≥ 640px)
============================================================ */
@media (min-width: 640px) {

  /* Troca para a imagem landscape no desktop/tablet e restaura cover */
  .hero__bg {
    background-image: url('../img/bg-hero.jpg');
    background-size: cover;
  }

  .hero__content {
    padding-left: var(--px-tablet);
    padding-right: var(--px-tablet);
    padding-top: 50vh;
    max-width: 620px;
  }

  .hero__gradient {
    background: linear-gradient(
      to bottom,
      rgba(8, 1, 6, 0.05)  0%,
      rgba(8, 1, 6, 0.00) 20%,
      rgba(8, 1, 6, 0.35) 46%,
      rgba(8, 1, 6, 0.88) 66%,
      rgba(8, 1, 6, 1.00) 78%
    );
  }

  .navbar {
    padding-left: var(--px-tablet);
    padding-right: var(--px-tablet);
  }

  .btn-cta {
    width: auto;
    padding: 17px 40px;
  }

  .btn-link {
    width: auto;
    justify-content: flex-start;
    padding-left: 0;
  }

  .hero__features {
    max-width: 480px;
  }

  .hero__trust {
    justify-content: flex-start;
  }
}


/* ============================================================
   RESPONSIVO — DESKTOP  (≥ 1024px)
============================================================ */
@media (min-width: 1024px) {

  .navbar {
    padding: 28px var(--px-desktop);
  }

  .navbar__logo {
    font-size: 32px;
  }

  .hero__content {
    padding-left: var(--px-desktop);
    padding-right: var(--px-desktop);
    padding-top: 54vh;
    max-width: 760px;
  }

  .hero__title {
    font-size: clamp(39px, 4vw, 62px); /* −35% */
  }

  .hero__stroke {
    width: clamp(200px, 30vw, 380px);
  }

  .hero__gradient {
    background: linear-gradient(
      to bottom,
      rgba(8, 1, 6, 0.05)  0%,
      rgba(8, 1, 6, 0.00) 22%,
      rgba(8, 1, 6, 0.40) 50%,
      rgba(8, 1, 6, 0.90) 68%,
      rgba(8, 1, 6, 1.00) 80%
    );
  }

  .btn-cta {
    font-size: 20px;
    padding: 19px 48px;
  }

  .feature-card {
    padding: 16px 12px;
  }

  .feature-card span {
    font-size: 11px;
  }
}


/* ============================================================
   RESPONSIVO — WIDE  (≥ 1440px)
============================================================ */
@media (min-width: 1440px) {

  .hero__content {
    padding-left: 120px;
    max-width: 820px;
    padding-top: 56vh;
  }

  .hero__title {
    font-size: clamp(49px, 3.8vw, 70px); /* −35% */
  }

  .hero__subtitle,
  .hero__body {
    font-size: 16px;
  }
}


/* ============================================================
   SEÇÃO — ANATOMIA DA OBRA
============================================================ */

/* Container da seção */
.obra {
  position: relative;
  background-image: url('../img/bg-secao.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 64px var(--px-mobile) 72px;
  overflow: hidden;
}

/* Overlay escuro para legibilidade */
.obra::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 2, 4, 0.52);
  pointer-events: none;
  z-index: 0;
}

.obra__inner {
  position: relative;
  z-index: 1;
}


/* ---- Cabeçalho ---- */
.obra__header {
  text-align: center;
  margin-bottom: 32px;
}

/* ============================================================
   DIVISOR DE SEÇÕES — div-section.png
   Aparece no topo de cada seção (exceto o hero) como imagem
   centralizada que "corta" visualmente a transição entre blocos.
============================================================ */
.obra,
.diferente,
.processo,
.montagem,
.galeria,
.catalogo,
.depoimentos,
.farm,
.confianca {
  position: relative;
}

.obra::before,
.diferente::before,
.processo::before,
.montagem::before,
.galeria::before,
.catalogo::before,
.depoimentos::before,
.farm::before,
.confianca::before {
  content: '';
  display: block;
  width: 320px;
  max-width: 70%;
  height: 18px;
  background: url('../img/div-section.png') center / contain no-repeat;
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}


/* Estilo base compartilhado por todos os títulos de seção */
.secao__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 10vw, 58px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
  background: linear-gradient(to bottom, #ffffff 0%, #b9b7ba 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.obra__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 10vw, 58px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
  background: linear-gradient(to bottom, #ffffff 0%, #b9b7ba 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.obra__subtitle {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.obra__subtitle strong {
  color: var(--white);
  font-weight: 700;
}


/* ---- Card principal ---- */
.obra__card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  /* background: rgba(14, 7, 5, 0.82);*/
  border: 1px solid rgba(201, 162, 39, 0.38);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
}

.obra__card-media {
  width: 42%;
  flex-shrink: 0;
  overflow: hidden;
}

.obra__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.obra__card-body {
  flex: 1;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.obra__card-title {
  line-height: 1.15;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.obra__card-title--cooldex {
  font-family: var(--font-body);
  font-size: clamp(20px, 4.5vw, 21px);
  color: var(--white);
}

.obra__card-title--light {
  font-family: var(--font-body);
  font-size: 13px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.70);
  font-weight: 400;
}

/* Checklist */
.obra__checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.obra__checklist li {
  position: relative;
  padding-left: 18px;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.obra__checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 12px;
}

.obra__checklist li strong {
  color: var(--white);
  font-weight: 700;
}


/* ---- Galeria de close-ups ---- */
.obra__closeups {
  margin-bottom: 36px;
}

.obra__closeups-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 6vw, 34px);
  color: var(--white);
  text-align: center;
  margin-bottom: 16px;
  background: linear-gradient(to bottom, #ffffff 0%, #b9b7ba 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Grid de 4 viewers animados (1 por linha em qualquer tela) ---- */
.closeup-viewers-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 4px;
}

/* Wrap de cada viewer (controles + caixa) */
.rv-wrap {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* Barra de controles acima do viewer */
.rv-controls {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 2px;
}

/* Nome do produto na barra de controles */
.rv-name {
  font-family: var(--font-display);
  font-size: clamp(11px, 3vw, 14px);
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  flex: 1;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Botões de controle (setas + play/pause) */
.rv-btn {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(8, 1, 6, 0.70);
  border: 1px solid rgba(201, 162, 39, 0.48);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, transform 0.15s;
  -webkit-tap-highlight-color: transparent;
  line-height: 0;
}

.rv-btn:hover,
.rv-btn:focus-visible {
  background: rgba(201, 162, 39, 0.22);
  border-color: var(--gold-bright);
  transform: scale(1.12);
  outline: none;
}

.rv-btn:active {
  transform: scale(0.95);
}

.rv-btn--play.is-playing {
  background: rgba(201, 162, 39, 0.14);
  border-color: rgba(201, 162, 39, 0.70);
}

/* ---- Viewer interativo com lupas ---- */
.closeup-viewer {
  position: relative;
  background: #000;
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
}

.closeup-viewer__img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

/* Viewer animado (stop-motion) — frames como <img> empilhados */
.rv-viewer {
  width: 100%;
  aspect-ratio: 1 / 1;
}

/* Todos os frames ficam sobrepostos; apenas o .is-active é visível */
.rv-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  pointer-events: none;
}

.rv-frame.is-active {
  display: block;
}

/* Botão-lupa posicionado via % no HTML */
.closeup-lupa {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgb(8 1 5 / 56%);
  border: 1.5px solid var(--gold-bright);
  color: var(--gold-bright);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  -webkit-tap-highlight-color: transparent;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 12px rgba(201, 162, 39, 0.40),
              inset 0 0 8px rgba(201, 162, 39, 0.10);
  animation: lupa-pulse 2.4s ease-in-out infinite;
}

.closeup-lupa:hover,
.closeup-lupa:focus-visible {
  background: rgba(201, 162, 39, 0.38);
  box-shadow: 0 0 22px rgba(201, 162, 39, 0.75),
              inset 0 0 10px rgba(201, 162, 39, 0.20);
  transform: translate(-50%, -50%) scale(1.15);
  outline: none;
}

/* Atrasa o pulso de cada lupa para não ficarem sincronizadas */
.closeup-lupa:nth-child(2) { animation-delay: 0s;    }
.closeup-lupa:nth-child(3) { animation-delay: 0.8s;  }
.closeup-lupa:nth-child(4) { animation-delay: 1.6s;  }

@keyframes lupa-pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(201, 162, 39, 0.35), inset 0 0 6px rgba(201,162,39,0.08); }
  50%       { box-shadow: 0 0 24px rgba(201, 162, 39, 0.80), inset 0 0 12px rgba(201,162,39,0.18); }
}

/* ---- Modal / Lightbox ---- */
.closeup-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.closeup-modal[hidden] { display: none; }

.closeup-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 1, 6, 0.88);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.closeup-modal__box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  background: rgba(20, 8, 4, 0.96);
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 40px rgba(201, 162, 39, 0.20);
}

.closeup-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 10px;
  border-bottom: 1px solid rgba(201, 162, 39, 0.18);
}

.closeup-modal__title {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gold-bright);
  letter-spacing: 0.04em;
}

.closeup-modal__close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.55);
  line-height: 0;
  padding: 4px;
  transition: color 0.2s;
}

.closeup-modal__close:hover { color: var(--white); }

.closeup-modal__stage {
  position: relative;
  display: flex;
  align-items: center;
  background: #000;
  line-height: 0;
}

.closeup-modal__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s;
}

.closeup-modal__img.is-transitioning { opacity: 0; }

.closeup-modal__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(8, 1, 6, 0.55);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  transition: background 0.2s, border-color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.closeup-modal__arrow:hover {
  background: rgba(201, 162, 39, 0.25);
  border-color: var(--gold-bright);
}

.closeup-modal__arrow--prev { left: 10px; }
.closeup-modal__arrow--next { right: 10px; }

.closeup-modal__counter {
  text-align: center;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  padding: 10px 0 12px;
  line-height: 1;
}


/* ---- Accordion / FAQ ---- */
.obra__faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgb(255 216 27 / 30%);
}

.obra__faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.obra__faq-item:last-child {
  border-bottom: none;
}

.obra__faq-item:first-child {
  border-top: none;
}

.obra__faq-item--open {
  background: rgba(201, 162, 39, 0.08);
}

.obra__faq-toggle {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 14px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}

.obra__faq-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-bright);
  color: #1a0800;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.obra__faq-question {
  flex: 1;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--white);
}

.obra__faq-question strong {
  color: var(--gold-bright);
}

.obra__faq-icon {
  flex-shrink: 0;
  font-size: 22px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 1px;
  transition: transform 0.2s;
}

.obra__faq-item--open .obra__faq-icon {
  color: var(--gold-bright);
}

.obra__faq-answer {
  padding: 0 14px 16px 46px;
}

.obra__faq-answer p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
}


/* ---- Glow wrapper — criado via JS em volta de cada box com borda dourada ---- */
.glow-wrapper {
  position: relative;
}

/* Base de todas as imagens de brilho */
.glow-img {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 10;
  object-fit: contain;
}

/* Brilho vertical (brilho-vert.png)
   top é calculado aleatoriamente via JS — apenas tamanho e eixo perpendicular aqui */
.glow-img--vert {
  width: 52px;
  height: 55%;
}
.glow-img--left  { left:  -26px; }
.glow-img--right { right: -26px; }

/* Brilho horizontal (brilho-hor.png)
   left é calculado aleatoriamente via JS — apenas tamanho e eixo perpendicular aqui */
.glow-img--hor {
  width: 70%;
  height: 46px;
}
.glow-img--top    { top:    -23px; }
.glow-img--bottom { bottom: -23px; }


/* ---- Responsivo — Tablet/Desktop ---- */
@media (min-width: 640px) {
  .obra {
    padding-left: var(--px-tablet);
    padding-right: var(--px-tablet);
  }
}

@media (min-width: 1024px) {
  .obra {
    padding: 80px var(--px-desktop) 96px;
  }

  .obra__inner {
    max-width: 700px;
    margin: 0 auto;
  }

  .obra__card-title--cooldex {
    font-size: 25px;
  }

  .obra__checklist li {
    font-size: 13px;
  }

  .obra__gallery-label {
    font-size: 11px;
  }

  .obra__faq-question {
    font-size: 14px;
  }
}


/* ============================================================
   SEÇÃO — PORQUE ESSA COLEÇÃO É DIFERENTE
============================================================ */
.diferente {
  position: relative;
  padding: 64px var(--px-mobile) 72px;
  overflow: hidden;
}

.diferente__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/bg-secao.jpg');
  background-size: cover;
  background-position: center top;
  z-index: 0;
}

.diferente__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,1,6,0.55) 0%,
    rgba(8,1,6,0.30) 50%,
    rgba(8,1,6,0.65) 100%
  );
}

.diferente__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ---- Cabeçalho ---- */
.diferente__header {
  text-align: center;
}

.diferente__title {
  font-size: clamp(36px, 10vw, 58px);
  margin-bottom: 12px;
}

.diferente__title--marker {
  font-family: var(--font-marker);
  font-size: 1.05em;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(to bottom, #fcb503 0%, #c97f00 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.diferente__subtitle {
  font-family: var(--font-body);
  font-size: clamp(13px, 3.5vw, 15px);
  line-height: 1.6;
  color: rgba(255,255,255,0.70);
}

.diferente__subtitle strong {
  color: var(--white);
  font-weight: 600;
}

/* ---- Tabela comparativa ---- */
.dif-table {
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgb(255 216 27 / 30%);
}

/* Cabeçalho da tabela */
.dif-table__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(10, 5, 3, 0.82);
  border-bottom: 1px solid rgba(201, 162, 39, 0.30);
}

.dif-table__head-cell {
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
}

.dif-table__head-cell--comum {
  color: rgba(255,255,255,0.9);
  border-right: 1px solid rgba(201, 162, 39, 0.25);
}

.dif-table__head-cell--marca {
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dif-table__head-logo {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Linhas */
.dif-table__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.dif-table__row:last-child {
  border-bottom: none;
}

/* Células */
.dif-table__cell {
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
}

.dif-table__cell--neg {
  color: rgba(255,255,255,0.9);
  background: rgba(8, 1, 6, 0.55);
  border-right: 1px solid rgba(201, 162, 39, 0.18);
}

.dif-table__cell--pos {
  color: rgba(255,255,255,0.85);
  background: rgba(12, 6, 4, 0.65);
}

/* Célula destacada (tooltip-style) */
.dif-table__cell--highlight {
  /*background: rgba(201, 162, 39, 0.12);
  color: rgba(255,255,255,0.90);
  font-style: italic;
  border-left: 2px solid rgba(201, 162, 39, 0.55);*/
}

/* Linha solo (só coluna direita preenchida) */
.dif-table__row--solo .dif-table__cell--empty {
  background: rgba(8, 1, 6, 0.55);
  border-right: 1px solid rgba(201, 162, 39, 0.18);
}

/* Ícone ✕ negativo */
.dif-x {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  color: #e05a3a;
  margin-top: 1px;
}

/* Ícone ✓ positivo */
.dif-check {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-bright);
  margin-top: 1px;
}

/* ---- CTA ---- */
.diferente__cta-wrap {
  display: flex;
  justify-content: center;
}

/* ---- Responsivo ---- */
@media (min-width: 640px) {
  .diferente {
    padding-left: var(--px-tablet);
    padding-right: var(--px-tablet);
  }
}

@media (min-width: 1024px) {
  .diferente {
    padding: 80px var(--px-desktop) 96px;
  }

  .diferente__inner {
    max-width: 700px;
    margin: 0 auto;
  }

  .dif-table__cell {
    font-size: 14px;
    padding: 14px 18px;
  }

  .dif-table__head-cell {
    font-size: 17px;
    padding: 14px 18px;
  }
}


/* ============================================================
   SEÇÃO — PROCESSO DE CRIAÇÃO
============================================================ */
.processo {
  position: relative;
  padding: 64px var(--px-mobile) 72px;
  overflow: hidden;
}

.processo__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/bg-secao.jpg');
  background-size: cover;
  background-position: center center;
  z-index: 0;
}

.processo__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,1,6,0.62) 0%,
    rgba(8,1,6,0.38) 50%,
    rgba(8,1,6,0.72) 100%
  );
}

.processo__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ---- Cabeçalho ---- */
.processo__header {
  text-align: center;
}

.processo__title {
  font-size: clamp(36px, 10vw, 58px);
  margin-bottom: 12px;
}

.processo__subtitle {
  font-family: var(--font-body);
  font-size: clamp(13px, 3.5vw, 15px);
  line-height: 1.65;
  color: rgba(255,255,255,0.68);
}

.processo__subtitle strong {
  color: var(--white);
  font-weight: 600;
}

/* ---- Cards das etapas ---- */
.processo__steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.processo__card {
  background: rgba(12, 6, 4, 0.80);
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgb(255 216 27 / 30%);
  display: flex;
  flex-direction: column;
}

.processo__card-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 16px 14px;
  background: #160f0d;
}

.processo__card-icon {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 10px;
  overflow: hidden;
  border: none;
  margin: -9px 0 -9px -7px;
}

.processo__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.processo__card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}

.processo__card-title {
  font-family: var(--font-body);
  font-size: clamp(20px, 5.5vw, 24px);
  color: var(--gold-bright);
  line-height: 1;
}

.processo__card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.processo__card-list li {
  position: relative;
  padding-left: 14px;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
}

.processo__card-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(255,255,255,0.40);
}

.processo__card-footer {
  border-top: 1px solid rgba(201, 162, 39, 0.18);
  padding: 10px 16px;
 /*display: flex;*/
  justify-content: flex-end;
  display: none;
}

.processo__card-link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.processo__card-link:hover,
.processo__card-link:focus-visible {
  color: var(--gold-bright);
  outline: none;
}

/* ---- Barra de progresso + tempo ---- */
.processo__tempo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.processo__tempo-label {
  font-family: var(--font-body);
  font-size: clamp(13px, 3.5vw, 15px);
  color: rgba(255,255,255,0.68);
  text-align: center;
}

.processo__tempo-label strong {
  color: var(--gold-bright);
  font-weight: 700;
}

.processo__bar-track {
  width: 100%;
  height: 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 100px;
  overflow: hidden;
}

.processo__bar-fill {
  height: 100%;
  width: 88%;
  border-radius: 100px;
  background: linear-gradient(90deg,
    #7a5c00 0%,
    #C9A227 35%,
    #F0BF30 65%,
    #ffe080 85%,
    #C9A227 100%
  );
  background-size: 250% 100%;
  animation: bar-sweep 2.8s ease-in-out infinite;
  position: relative;
}

/* Shimmer sobre a barra */
.processo__bar-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.30) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: bar-shimmer 2s linear infinite;
}

@keyframes bar-sweep {
  0%   { background-position: 100% 0; }
  50%  { background-position: 0%   0; }
  100% { background-position: 100% 0; }
}

@keyframes bar-shimmer {
  0%   { background-position: -100% 0; }
  100% { background-position:  200% 0; }
}

.processo__tempo-link {
  font-family: var(--font-body);
  font-size: clamp(13px, 3.5vw, 14px);
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.processo__tempo-link:hover {
  color: var(--gold-bright);
}

/* ---- Responsivo ---- */
@media (min-width: 640px) {
  .processo {
    padding-left: var(--px-tablet);
    padding-right: var(--px-tablet);
  }
}

@media (min-width: 1024px) {
  .processo {
    padding: 80px var(--px-desktop) 96px;
  }

  .processo__inner {
    max-width: 700px;
    margin: 0 auto;
  }

  .processo__card-list li {
    font-size: 13px;
  }

  .processo__card-icon {
    width: 80px;
    height: 80px;
  }
}


/* ============================================================
   SEÇÃO — A MONTAGEM (vídeo timelapse)
============================================================ */
.montagem {
  position: relative;
  padding: 64px var(--px-mobile) 72px;
  overflow: hidden;
}

.montagem__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/bg-secao.jpg');
  background-size: cover;
  background-position: center bottom;
  z-index: 0;
}

.montagem__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,1,6,0.70) 0%,
    rgba(8,1,6,0.45) 40%,
    rgba(8,1,6,0.72) 100%
  );
}

.montagem__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ---- Cabeçalho ---- */
.montagem__header {
  text-align: center;
}

.montagem__title {
  font-size: clamp(36px, 10vw, 58px);
  margin-bottom: 10px;
}

.montagem__subtitle {
  font-family: var(--font-body);
  font-size: clamp(13px, 3.5vw, 15px);
  line-height: 1.6;
  color: rgba(255,255,255,0.62);
}

/* ---- Wrapper responsivo 16:9 ---- */
.montagem__video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgb(255 216 27 / 28%),
              0 0  60px rgb(0 0 0 / 60%);
  background: #000;
}

.montagem__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ---- Responsivo ---- */
@media (min-width: 640px) {
  .montagem {
    padding-left: var(--px-tablet);
    padding-right: var(--px-tablet);
  }
}

@media (min-width: 1024px) {
  .montagem {
    padding: 80px var(--px-desktop) 96px;
  }

  .montagem__inner {
    max-width: 780px;
    margin: 0 auto;
    gap: 32px;
  }
}


/* ============================================================
   GALERIA MASONRY
============================================================ */
.galeria {
  background: var(--dark);
  padding: 28px 16px;
  line-height: 0;
}

.galeria__grid {
  columns: 2;
  column-gap: 14px;
  line-height: 0;
  font-size: 0;
}

.galeria__item {
  break-inside: avoid;
  margin: 0 0 14px;
  overflow: hidden;
  display: block;
  position: relative;
  line-height: 0;
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 10px;
  box-shadow: 0 4px 22px rgb(255 216 27 / 30%);
}

.galeria__item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.55s ease;
  filter: brightness(0.88) saturate(1.05);
}

.galeria__item:hover img {
  transform: scale(1.04);
  filter: brightness(1.05) saturate(1.15);
}

/* Overlay escuro sutil em cada item */
.galeria__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 55%,
    rgba(8, 1, 6, 0.45) 100%
  );
  pointer-events: none;
  transition: opacity 0.4s;
}

.galeria__item:hover::after {
  opacity: 0;
}

@media (min-width: 768px) {
  .galeria {
    padding: 32px 24px;
  }

  .galeria__grid {
    columns: 3;
    column-gap: 16px;
  }

  .galeria__item {
    margin-bottom: 16px;
  }
}

@media (min-width: 1200px) {
  .galeria__grid {
    columns: 4;
  }
}


/* ============================================================
   SEÇÃO — CATÁLOGO DA COLEÇÃO
============================================================ */
.catalogo {
  position: relative;
  padding: 64px var(--px-mobile) 72px;
  overflow: hidden;
}

.catalogo__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/bg-secao.jpg');
  background-size: cover;
  background-position: center top;
  z-index: 0;
}

.catalogo__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,1,6,0.72) 0%,
    rgba(8,1,6,0.50) 40%,
    rgba(8,1,6,0.78) 100%
  );
}

.catalogo__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ---- Cabeçalho ---- */
.catalogo__header { text-align: center; }

.catalogo__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 10px;
  /* spans internos sobrepõem o gradiente do secao__title com cores próprias */
}

.catalogo__title--main {
  font-family: var(--font-display);
  font-size: clamp(36px, 10vw, 58px);
  line-height: 1;
  background: linear-gradient(to bottom, #ffffff 0%, #b9b7ba 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.catalogo__title--sub {
  font-family: var(--font-marker);
  font-size: clamp(22px, 6vw, 34px);
  line-height: 1;
  background: linear-gradient(to bottom, #fcb503 0%, #c97f00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.catalogo__subtitle {
  font-size: clamp(13px, 3.5vw, 15px);
  line-height: 1.65;
  color: rgba(255,255,255,0.68);
}

.catalogo__subtitle strong { color: var(--white); }

/* ---- Alerta de escassez ---- */
.catalogo__alerta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.55);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.45;
  color: var(--gold-bright);
  box-shadow: 0 0 18px rgba(201,162,39,0.15);
}

.catalogo__alerta strong { color: var(--gold-bright); }
.catalogo__alerta-icon { flex-shrink: 0; line-height: 0; }

/* ---- Grid de produtos ---- */
.catalogo__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* ---- Card de produto ---- */
.catalogo__card {
  display: flex;
  flex-direction: column;
  background: rgba(12, 5, 3, 0.82);
  border: 1px solid rgba(201, 162, 39, 0.40);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgb(255 216 27 / 30%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.catalogo__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgb(255 216 27 / 45%);
}

.catalogo__card-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #0a0305;
}

.catalogo__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}

.catalogo__card:hover .catalogo__card-img {
  transform: scale(1.06);
}

.catalogo__frete-banner {
  background: #d51c1c;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 7px 12px;
  line-height: 1;
}

.catalogo__card-body {
  padding: 10px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.catalogo__card-name {
  font-family: var(--font-body);
  font-size: clamp(15px, 4vw, 18px);
  color: var(--white);
  line-height: 1;
}

.catalogo__card-price {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.70);
  line-height: 1;
}

.catalogo__card-price strong {
  font-size: clamp(18px, 5vw, 22px);
  color: var(--gold-bright);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.catalogo__avista {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  vertical-align: middle;
  top: -3px;
  position: relative;
}

.catalogo__preco-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.catalogo__parcelas {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  margin-top: 6px;
}

.catalogo__parcelas strong {
  color: var(--gold-bright);
  font-weight: 600;
}

/* ---- Botão Adicionar ---- */
.catalogo__btn-add {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 7px 12px;
  border-radius: 100px;
  border: 1.5px solid var(--gold);
  background: linear-gradient(0deg, #ffc91b 0%, #d3a000 45%, #ffedb9 100%);
  color: #1a0800;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  transition: filter 0.2s, transform 0.2s;
  -webkit-tap-highlight-color: transparent;
  letter-spacing: 0.03em;
  margin: 5px 0 10px;
}

.catalogo__btn-add:hover {
  filter: brightness(1.12);
  transform: scale(1.02);
}

.catalogo__btn-add:active {
  transform: scale(0.98);
}

.btn-add__plus {
  font-size: 14px;
  font-weight: 800;
  margin-right: 4px;
}

.btn-add__sep {
  margin: 0 6px;
  opacity: 0.55;
}

.catalogo__btn-add--combo {
  font-size: 12px;
  padding: 9px 16px;
}

/* ---- Indicador de estoque ---- */
.catalogo__stock {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 10px;
  line-height: 1.35;
  color: rgba(255,255,255,0.50);
}

.catalogo__stock strong { color: rgba(255,255,255,0.75); }

/* ---- Box Combo ---- */
.catalogo__combo {
  display: flex;
  align-items: center;
  background: rgba(12, 5, 3, 0.82);
  border: 1px solid rgba(201, 162, 39, 0.55);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 28px rgb(255 216 27 / 32%);
  min-height: 160px;
}

.catalogo__combo-left {
  flex: 1;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.catalogo__combo-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: 0.02em;
}

.catalogo__combo-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1;
}

.catalogo__combo-price strong {
  font-size: clamp(22px, 6vw, 28px);
  color: var(--gold-bright);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.catalogo__combo-old {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  text-decoration: line-through;
  font-style: normal;
}

.catalogo__combo-right {
  width: 45%;
  flex-shrink: 0;
  align-self: stretch;
  overflow: hidden;
}

.catalogo__combo-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: brightness(0.85);
}

/* ---- Microcopy ---- */
.catalogo__microcopy {
  text-align: center;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.42);
  line-height: 1.5;
}

/* ---- CTA ---- */
.catalogo__cta-wrap {
  display: flex;
  justify-content: center;
}

/* ---- Botão de galeria sobre a imagem do card ---- */
.catalogo__card-img-wrap {
  position: relative;
}

.catalogo__gallery-btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 11px 9px;
  background: rgba(8, 1, 6, 0.72);
  border: 1px solid rgba(201, 162, 39, 0.65);
  border-radius: 8px;
  color: var(--gold-bright);
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.catalogo__gallery-btn:hover,
.catalogo__gallery-btn:focus-visible {
  background: rgba(201, 162, 39, 0.22);
  border-color: var(--gold-bright);
  transform: scale(1.05);
  outline: none;
}

/* ---- Botão Ver Vídeo — canto inferior esquerdo da imagem (espelho da galeria) ---- */
.catalogo__video-btn {
  position: absolute;
  bottom: 8px;
  left: 8px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 11px;
  max-width: calc(100% - 100px);
  background: rgba(8, 1, 6, 0.72);
  border: 1px solid rgba(201, 162, 39, 0.65);
  border-radius: 8px;
  color: var(--gold-bright);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.catalogo__video-btn svg {
  flex-shrink: 0;
  color: var(--gold-bright);
}

.catalogo__video-btn-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.catalogo__video-btn:hover,
.catalogo__video-btn:focus-visible {
  background: rgba(201, 162, 39, 0.22);
  border-color: var(--gold-bright);
  transform: scale(1.05);
  outline: none;
}

/* ---- Modal de galeria do catálogo ---- */
.catalogo-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.catalogo-modal[hidden] { display: none; }

.catalogo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 1, 6, 0.90);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.catalogo-modal__box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  background: rgba(18, 7, 4, 0.97);
  border: 1px solid rgba(201, 162, 39, 0.50);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 50px rgba(201, 162, 39, 0.22);
}

.catalogo-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 10px;
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.catalogo-modal__title {
  font-family: var(--font-display);
  font-size: 27px;
  color: var(--gold-bright);
  letter-spacing: 0.04em;
}

.catalogo-modal__close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.50);
  line-height: 0;
  padding: 4px;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.catalogo-modal__close:hover { color: var(--white); }

.catalogo-modal__stage {
  position: relative;
  display: flex;
  align-items: center;
  background: #000;
  line-height: 0;
}

/* Cada slide é um wrapper para a imagem */
.catalogo-modal__slide {
  display: none;
  width: 100%;
  line-height: 0;
}

.catalogo-modal__slide.is-active {
  display: block;
}

.catalogo-modal__slide.is-transitioning {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.catalogo-modal__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.catalogo-modal__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(8, 1, 6, 0.60);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  transition: background 0.2s, border-color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.catalogo-modal__arrow:disabled {
  opacity: 0.28;
  cursor: default;
}

.catalogo-modal__arrow:not(:disabled):hover {
  background: rgba(201, 162, 39, 0.28);
  border-color: var(--gold-bright);
}

.catalogo-modal__arrow--prev { left: 10px; }
.catalogo-modal__arrow--next { right: 10px; }

/* Thumbnails */
.catalogo-modal__thumbs {
  display: flex;
  gap: 6px;
  padding: 10px 14px 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.catalogo-modal__thumbs::-webkit-scrollbar { display: none; }

.catalogo-modal__thumb {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s, opacity 0.2s;
  opacity: 0.55;
}

.catalogo-modal__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.catalogo-modal__thumb.is-active {
  border-color: var(--gold-bright);
  opacity: 1;
}

.catalogo-modal__counter {
  text-align: center;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  padding: 6px 0 12px;
  line-height: 1;
}

/* ============================================================
   MODAL DE VÍDEO — catálogo
============================================================ */
.catalogo-video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.catalogo-video-modal[hidden] { display: none; }

.catalogo-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  cursor: pointer;
}

.catalogo-video-modal__box {
  position: relative;
  z-index: 1;
  background: #1a0800;
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 10px;
  width: 100%;
  max-width: 780px;
  overflow: hidden;
  animation: modal-in 0.22s ease;
}

.catalogo-video-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.catalogo-video-modal__title {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--white);
  margin: 0;
}

.catalogo-video-modal__close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.catalogo-video-modal__close:hover { color: var(--white); }

.catalogo-video-modal__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.catalogo-video-modal__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.btn-cta--lg {
  font-size: clamp(14px, 4vw, 17px);
  padding: 16px 32px;
}


/* ============================================================
   SEÇÃO — DEPOIMENTOS
============================================================ */
.depoimentos {
  padding: 64px var(--px-mobile) 72px;
  overflow: hidden;
}

.depoimentos__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/bg-secao.jpg');
  background-size: cover;
  background-position: center top;
  z-index: 0;
}

.depoimentos__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,1,6,0.72) 0%,
    rgba(8,1,6,0.50) 40%,
    rgba(8,1,6,0.78) 100%
  );
}

.depoimentos__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ---- Cabeçalho ---- */
.depoimentos__header {
  text-align: center;
}

.depoimentos__title {
  font-size: clamp(28px, 8vw, 50px);
  margin-bottom: 12px;
}

.depoimentos__subtitle {
  font-family: var(--font-body);
  font-size: clamp(13px, 3.5vw, 15px);
  line-height: 1.6;
  color: rgba(255,255,255,0.68);
}

/* ---- Bloco de avaliação geral ---- */
.dep-rating-box {
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 14px;
  padding: 16px 14px;
  background: rgba(12, 5, 3, 0.70);
  box-shadow: 0 4px 22px rgb(255 216 27 / 25%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.dep-rating-score {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.dep-stars {
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 1;
  color: var(--gold-bright);
}

.dep-stars--fractional {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.24);
}

.dep-stars--fractional::before {
  content: "★★★★★";
  position: absolute;
  top: 0;
  left: 0;
  width: calc((var(--rating, 5) / 5) * 100%);
  overflow: hidden;
  white-space: nowrap;
  color: var(--gold-bright);
}

.dep-score-number {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  line-height: 1;
}

.dep-rating-sep {
  color: rgba(255,255,255,0.35);
  font-size: 16px;
}

.dep-reviews-count {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.68);
}

/* Tag pills */
.dep-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.dep-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 4px 12px;
}

/* ---- Dots de navegação ---- */
.dep-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: -4px;
  display: none;
}

.dep-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.20);
  display: inline-block;
  flex-shrink: 0;
}

.dep-dot--active {
  background: var(--gold-bright);
  transform: scale(1.25);
}

/* ---- Cards de depoimentos ---- */
.dep-testimonials {
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(12, 5, 3, 0.70);
  box-shadow: 0 4px 22px rgb(255 216 27 / 25%);
  display: none;
}

.dep-cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
}

.dep-cards__divider {
  width: 1px;
  background: rgba(201, 162, 39, 0.25);
  align-self: stretch;
}

.dep-card {
  padding: 16px 13px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.dep-card__header {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.dep-card__avatar {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.18);
  border: 2px solid rgba(201, 162, 39, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold-bright);
}

.dep-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.dep-card__name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dep-card__city {
  font-weight: 400;
  color: rgba(255,255,255,0.50);
  font-size: 11px;
}

.dep-card__context {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.52);
}

.dep-card__stars {
  font-size: 12px;
  color: var(--gold-bright);
  letter-spacing: 1px;
}

.dep-card__quote {
  font-family: var(--font-marker);
  font-size: clamp(15px, 4vw, 19px);
  color: var(--white);
  line-height: 1.3;
  font-style: normal;
  flex: 1;
}

.dep-card__footer {
  display: flex;
  justify-content: center;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.35);
}

/* ---- Galeria masonry de fotos + depoimentos ---- */
.dep-gallery {
  columns: 2;
  column-gap: 12px;
  margin-top: 8px;
}

.dep-gallery__item {
  break-inside: avoid;
  display: inline-block;
  width: 100%;
  margin-bottom: 12px;
  border-radius: 12px;
  border: 1px solid rgba(201, 162, 39, 0.38);
  background: #0d0509;
  box-shadow: 0 4px 22px rgb(255 216 27 / 22%);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.dep-gallery__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgb(255 216 27 / 32%);
}

.dep-gallery__photo {
  width: 100%;
  overflow: hidden;
}

.dep-gallery__photo img {
  width: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(0.88);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.dep-gallery__item:hover .dep-gallery__photo img {
  transform: scale(1.04);
  filter: brightness(1);
}

.dep-gallery__quote {
  font-family: var(--font-body);
  font-size: 11.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  padding: 10px 12px 4px;
  margin: 0;
  font-style: italic;
}

.dep-gallery__author {
  display: block;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(252, 181, 3, 0.75);
  padding: 4px 12px 12px;
  letter-spacing: 0.02em;
}

@media (min-width: 480px) {
  .dep-gallery {
    columns: 2;
  }
}

@media (min-width: 768px) {
  .dep-gallery {
    columns: 2;
    column-gap: 14px;
  }

  .dep-gallery__quote {
    font-size: 12px;
  }
}

/* ---- CTA ---- */
.depoimentos__cta-wrap {
  display: flex;
  justify-content: center;
  padding-top: 4px;
}

/* ---- Responsivo ---- */
@media (min-width: 640px) {
  .depoimentos {
    padding-left: var(--px-tablet);
    padding-right: var(--px-tablet);
  }
}

@media (min-width: 1024px) {
  .depoimentos {
    padding: 80px var(--px-desktop) 96px;
  }

  .depoimentos__inner {
    max-width: 700px;
    margin: 0 auto;
  }

  .dep-card__quote {
    font-size: 20px;
  }
}

/* ---- Responsivo ---- */
@media (min-width: 640px) {
  .catalogo {
    padding-left: var(--px-tablet);
    padding-right: var(--px-tablet);
  }

  .catalogo__card-name { font-size: 20px; }
  .catalogo__card-body { padding: 14px; gap: 10px; }
  .catalogo__btn-add { font-size: 13px; padding: 9px 16px; }
  .catalogo__stock { font-size: 11px; }
}

@media (min-width: 1024px) {
  .catalogo {
    padding: 80px var(--px-desktop) 96px;
  }

  .catalogo__inner {
    max-width: 700px;
    margin: 0 auto;
  }

  .catalogo__grid { gap: 14px; }

  .catalogo__combo-right { width: 42%; }
}


/* ============================================================
   SEÇÃO — A FARM (espaço físico & autoridade)
============================================================ */
.farm {
  padding: 64px var(--px-mobile) 72px;
  overflow: hidden;
}

.farm__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/bg-secao.jpg');
  background-size: cover;
  background-position: center top;
  z-index: 0;
}

.farm__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,1,6,0.68) 0%,
    rgba(8,1,6,0.40) 50%,
    rgba(8,1,6,0.75) 100%
  );
}

.farm__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ---- Cabeçalho ---- */
.farm__header { text-align: center; }

.farm__title { margin-bottom: 12px; }

.farm__subtitle {
  font-family: var(--font-body);
  font-size: clamp(13px, 3.5vw, 15px);
  line-height: 1.65;
  color: rgba(255,255,255,0.70);
}

/* ---- Stats box ---- */
.farm__stats-box {
  border: 1px solid rgba(201, 162, 39, 0.50);
  border-radius: 14px;
  background: rgba(8, 1, 6, 0.55);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 22px rgba(255, 216, 27, 0.22);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.farm__stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.farm__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
  min-width: 72px;
}

.farm__stat-num {
  font-family: var(--font-display);
  font-size: clamp(24px, 7vw, 34px);
  color: var(--gold-bright);
  line-height: 1;
}

.farm__stat-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.60);
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.farm__stat-sep {
  font-size: 20px;
  color: rgba(201, 162, 39, 0.35);
  align-self: center;
}

.farm__stat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.farm__stat-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.72);
  background: rgba(201, 162, 39, 0.10);
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: 100px;
  padding: 4px 12px;
}

/* ---- Vídeo destaque ---- */
.farm__video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(255, 216, 27, 0.22),
              0 0 60px rgba(0, 0, 0, 0.60);
  background: #000;
}

.farm__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ---- Cards de destaque (2 colunas) ---- */
.farm__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.farm__card {
  background: rgba(12, 5, 3, 0.82);
  border: 1px solid rgba(201, 162, 39, 0.40);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(255, 216, 27, 0.22);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.farm__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255, 216, 27, 0.38);
}

.farm__card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0a0305;
}

.farm__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.90);
}

.farm__card:hover .farm__card-img img {
  transform: scale(1.06);
  filter: brightness(1.00);
}

.farm__card-body {
  padding: 12px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.farm__card-title {
  font-family: var(--font-display);
  font-size: clamp(14px, 4vw, 18px);
  color: var(--gold-bright);
  line-height: 1.1;
}

.farm__card-desc {
  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1.55;
  color: rgba(255,255,255,0.62);
}

/* ---- Galeria 2×2 ---- */
.farm__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.farm__gallery-item {
  border: 1px solid rgba(201, 162, 39, 0.40);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(255, 216, 27, 0.16);
  background: #0a0305;
  display: flex;
  flex-direction: column;
}

.farm__gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) saturate(1.05);
  transition: transform 0.5s ease, filter 0.4s ease;
}

.farm__gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.00) saturate(1.15);
}

.farm__gallery-label {
  display: block;
  padding: 7px 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
  background: rgba(8, 1, 6, 0.80);
  line-height: 1.3;
  flex: 1;
}

/* ---- CTA ---- */
.farm__cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.farm__link-sec {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.farm__link-sec:hover { color: var(--gold-bright); }

/* ---- Responsivo ---- */
@media (min-width: 640px) {
  .farm {
    padding-left: var(--px-tablet);
    padding-right: var(--px-tablet);
  }

  .farm__card-desc { font-size: 12px; }
  .farm__gallery-label { font-size: 12px; }
}

@media (min-width: 1024px) {
  .farm {
    padding: 80px var(--px-desktop) 96px;
  }

  .farm__inner {
    max-width: 700px;
    margin: 0 auto;
    gap: 32px;
  }

  .farm__card-title { font-size: 20px; }
  .farm__card-desc  { font-size: 13px; }
}


/* ============================================================
   SEÇÃO — COMPRE COM CONFIANÇA (Pagamento & Garantia)
============================================================ */
.confianca {
  padding: 64px var(--px-mobile) 72px;
  overflow: hidden;
}

.confianca__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/bg-secao.jpg');
  background-size: cover;
  background-position: center center;
  z-index: 0;
}

.confianca__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,1,6,0.74) 0%,
    rgba(8,1,6,0.48) 40%,
    rgba(8,1,6,0.80) 100%
  );
}

.confianca__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* ---- Cabeçalho ---- */
.confianca__header { text-align: center; }

.confianca__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 8vw, 50px);
  line-height: 1.1;
  background: linear-gradient(to bottom, #ffffff 0%, #b9b7ba 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.confianca__title--mark {
  font-family: var(--font-marker);
  font-size: 0.88em;
  background: linear-gradient(to bottom, #fcb503 0%, #c97f00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

/* ---- Card compartilhado ---- */
.confianca__card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(8, 1, 6, 0.60);
  border: 1px solid rgba(201, 162, 39, 0.48);
  border-radius: 14px;
  padding: 18px 16px;
  box-shadow: 0 4px 24px rgba(255, 216, 27, 0.18);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ---- Bloco: Garantia (sem fundo, sem borda, coluna centralizada) ---- */
.confianca__card--garantia {
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 8px 0;
}

.confianca__garantia-img {
  flex-shrink: 0;
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(201, 162, 39, 0.65));
  margin:0 auto;
}

.confianca__garantia-texto {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.confianca__garantia-texto p {
  font-family: var(--font-body);
  font-size: clamp(13px, 3.5vw, 15px);
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

.confianca__garantia-texto strong {
  color: var(--gold-bright);
  font-weight: 700;
}

/* ---- Divisor dourado com gradiente ---- */
.confianca__divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(201, 162, 39, 0.50) 15%,
    rgba(240, 191, 48, 0.90) 50%,
    rgba(201, 162, 39, 0.50) 85%,
    transparent 100%
  );
  box-shadow: 0 0 8px rgba(201, 162, 39, 0.28);
}

/* ---- Bloco: Formas de Pagamento ---- */
.confianca__pagamentos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.confianca__sub {
  font-family: var(--font-display);
  font-size: clamp(16px, 5vw, 22px);
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.06em;
  text-align: center;
}

.confianca__pay-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

/* Card individual de logo de pagamento */
.pay-logo {
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;
  box-shadow:
    0 2px 10px rgba(0,0,0,0.35),
    0 0 0 1px rgba(201, 162, 39, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pay-logo:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 6px 18px rgba(0,0,0,0.45),
    0 0 0 1.5px rgba(201, 162, 39, 0.45);
}

.pay-logo svg,
.pay-logo__pix {
  display: block;
  width: 64px;
  height: 41px;
}

.pay-logo__pix {
  object-fit: contain;
  background: #fff;
}

.pay-logo--wide svg {
  width: 86px;
}

/* ---- Bloco: 100% Seguro — 3 colunas (ícone + texto abaixo) ---- */
.confianca__card--seguro {
  justify-content: space-around;
  gap: 12px;
  flex-wrap: wrap;
}

/* Cada coluna: ícone centralizado + texto abaixo */
.confianca__seguro-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  flex: 1;
  min-width: 80px;
}

/* Ícone de imagem (compra-segura e ssl) */
.confianca__seguro-ico {
  width: 80px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(201, 162, 39, 0.55));
}

/* Ícone SVG do Mercado Pago */
.confianca__mp-ico {
  width: 80px;
  line-height: 0;
}

.confianca__mp-ico svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Texto de cada item de segurança */
.confianca__seguro-label {
  font-family: var(--font-body);
  font-size: clamp(10px, 2.8vw, 12px);
  font-weight: 600;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}

/* ---- CTA ---- */
.confianca__cta-wrap {
  display: flex;
  justify-content: center;
}

/* ---- Barra de micro-trust ---- */
.confianca__trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 10px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.42);
  text-align: center;
  line-height: 1.6;
}

/* ---- Responsivo ---- */
@media (min-width: 640px) {
  .confianca {
    padding-left: var(--px-tablet);
    padding-right: var(--px-tablet);
  }


  .confianca__seguro-ico { width: 96px; }
  .confianca__mp-ico     { width: 96px; }
  .confianca__seguro-label { font-size: 12px; }
}

@media (min-width: 1024px) {
  .confianca {
    padding: 80px var(--px-desktop) 96px;
  }

  .confianca__inner {
    max-width: 700px;
    margin: 0 auto;
    gap: 26px;
  }
}


/* ============================================================
   Cart Popup — produto adicionado ao carrinho via AJAX
============================================================ */
.cart-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.cart-popup[hidden] { display: none; }

.cart-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.cart-popup__box {
  position: relative;
  z-index: 1;
  background: #1a1008;
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 14px;
  padding: 36px 28px 28px;
  max-width: 360px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7);
  animation: cartPopupIn 0.26s cubic-bezier(0.34, 1.36, 0.64, 1) both;
}

@keyframes cartPopupIn {
  from { opacity: 0; transform: scale(0.88) translateY(16px); }
  to   { opacity: 1; transform: scale(1)    translateY(0);    }
}

.cart-popup__check {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
  animation: cartCheckIn 0.4s 0.12s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes cartCheckIn {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1);   }
}

.cart-popup__title {
  font-family: var(--font-body);
  font-size: 22px;
  color: #f0c040;
  margin: 0 0 8px;
  line-height: 1.2;
}

.cart-popup__msg {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 26px;
}

.cart-popup__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-popup__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 13px 20px;
  border-radius: 7px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: filter 0.18s ease, transform 0.18s ease;
  border: none;
}

.cart-popup__btn:hover {
  filter: brightness(1.13);
  transform: scale(1.02);
}

.cart-popup__btn:active {
  transform: scale(0.98);
}

.cart-popup__btn--continue {
  background: transparent;
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: rgba(255, 255, 255, 0.7);
}

.cart-popup__btn--continue:hover {
  border-color: rgba(201, 162, 39, 0.65);
  color: rgba(255, 255, 255, 0.9);
}

.cart-popup__btn--checkout {
  background: linear-gradient(135deg, #C9A227 0%, #f0c040 50%, #C9A227 100%);
  color: #1a0800;
}

/* Estado de carregamento no botão COMPRAR durante a requisição AJAX */
.catalogo__btn-add.is-loading {
  opacity: 0.6;
  pointer-events: none;
  cursor: wait;
}


/* ============================================================
   Botão flutuante do WhatsApp
============================================================ */
.wpp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wpp-fab:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.wpp-fab__label {
  display: none;
}

@media (max-width: 480px) {
  .wpp-fab {
    bottom: 16px;
    right: 16px;
    width: 46px;
    height: 46px;
  }
}


/* ============================================================
   RODAPÉ — site-footer
============================================================ */

.site-footer {
  position: relative;
  background: var(--dark);
  border-top: 1px solid var(--border-gold);
  overflow: hidden;
}

/* divisor superior (mesma imagem usada nas outras seções) */
/*.site-footer::before {
  content: '';
  display: block;
  width: 100%;
  height: 60px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}*/

.site-footer__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%,   rgba(201,162,39,.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 0% 100%,  rgba(201,162,39,.04) 0%, transparent 60%);
  pointer-events: none;
}

.site-footer__inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px var(--px-mobile) 40px;
}

/* ── Marca / Sobre ── */
.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  margin-bottom: 40px;
}

.site-footer__logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(201,162,39,.3));
}

.site-footer__logo-text {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.site-footer__sobre {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-text);
  max-width: 600px;
}

/* ── Divisor interno ── */
.site-footer__divider {
  height: 1px;
  background: var(--border-gold);
  margin-bottom: 40px;
}

/* ── Grid de colunas ── */
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

.site-footer__col-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.site-footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__link,
.site-footer__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--gray-text);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer__link:hover {
  color: var(--gold-bright);
}

.site-footer__link svg,
.site-footer__item svg {
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.8;
}

/* Badge WhatsApp */
.site-footer__badge {
  font-size: 0.7rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #080106;
  background: var(--gold);
  border-radius: 4px;
  padding: 2px 6px;
  margin-left: 4px;
  white-space: nowrap;
}

/* Links de rede social — ícone levemente maior */
.site-footer__link--social {
  gap: 12px;
}

.site-footer__link--social svg {
  color: var(--gold-bright);
}

/* ── Barra inferior ── */
.site-footer__bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.site-footer__copy {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255,255,255,.3);
  letter-spacing: 0.02em;
}

.site-footer__copy--legal {
  font-size: 0.74rem;
  color: rgba(255,255,255,.2);
}

/* ── Responsividade ── */
@media (min-width: 600px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .site-footer__inner {
    padding: 72px var(--px-desktop) 48px;
  }

  .site-footer__brand {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 40px;
  }

  .site-footer__logo {
    flex-shrink: 0;
  }

  .site-footer__sobre {
    text-align: left;
  }

  .site-footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ------------------------------------------------------------------
   Banner de topo — "Já comprou? Acompanhe seu pedido"
------------------------------------------------------------------ */
.top-banner {
  width: 100%;
  height: 40px;
  background: var(--color-primary, #1cd563);
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-banner__link {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s;
}

.top-banner__link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* ------------------------------------------------------------------
   CheckoutWC — ocultar seção "Endereço de cobrança" no passo pagamento
   O heading e a descrição são injetados pelo CheckoutWC mesmo com a
   opção desabilitada nas configurações do plugin.
------------------------------------------------------------------ */
.cfw-billing-address-heading,
.cfw-billing-address-description {
  display: none !important;
}
