
/* ==========================================
   CONFIG GLOBAIS
   ========================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --preto:         #0E0D0B;
  --carvao:        #15120E;
  --carvao-2:      #211C15;
  --creme:         #F5EFE6;
  --branco:        #FFFFFF;
  --dourado:       #B0894F;
  --dourado-light: #D8B978;
  --texto:         #23201A;
  --texto-medio:   #6E665A;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', sans-serif;

  --px:          1.4rem;
  --gap-section: 5rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--creme);
  color: var(--texto);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

::selection { background: var(--dourado); color: var(--preto); }

.grao {
  position: relative;
}

.grao::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 1;
}


/* ==========================================
   REVEAL 
   
   ANIMA ELEMENTOS AO ROLAR A PÁGINA
   ========================================== */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in { opacity: 1; transform: translateY(0); }

.d1 { transition-delay: 0.10s; }
.d2 { transition-delay: 0.20s; }
.d3 { transition-delay: 0.30s; }


/* ==========================================
   EYEBROW 

   INTRODUZIR A SEÇÃO - SUBTITULO
   ========================================== */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}

.eyebrow-line {
  width: 34px;
  height: 1px;
  background: var(--dourado);
  flex-shrink: 0;
}

.eyebrow span {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--dourado);
}


/* ==========================================
   SEÇÃO 1 — INTRO
   ========================================== */

#intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

#intro.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-logo {
  width: min(80vw, 540px);
  height: auto;
  position: relative;
  z-index: 2;
}

#main-content {
  opacity: 0;
  transition: opacity 1s ease 0.2s;
}

#main-content.visible { opacity: 1; }


/* ==========================================
   MENU PRINCIPAL
   ========================================== */

#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s, box-shadow 0.5s, padding 0.4s;
}

#navbar nav { display: contents; }

#navbar.scrolled {
  background: rgba(14,13,11,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(216,185,120,0.18);
  padding: 0.7rem var(--px);
}

.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-decoration: none;
  text-align: center;
  line-height: 1;
  z-index: 101;
}

.nav-icone {
  height: 30px;
  width: auto;
  display: block;
  animation: girar-moeda 4s linear infinite;
}

@keyframes girar-moeda {
  0%   { transform: scaleX(1);  }
  25%  { transform: scaleX(0);  }
  50%  { transform: scaleX(-1); }
  75%  { transform: scaleX(0);  }
  100% { transform: scaleX(1);  }
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 201;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--creme);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease, background 0.35s ease;
  transform-origin: center;
}

.nav-hamburger.open span { background: var(--creme); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7.25px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7.25px) rotate(-45deg); }

.nav-wpp {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dourado);
  z-index: 201;
  transition: opacity 0.25s;
}

.nav-wpp:hover { opacity: 0.65; }

.nav-links {
  position: fixed;
  inset: 0;
  background: var(--preto);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 2.6rem;
  gap: 1.9rem;
  list-style: none;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.nav-links.open { opacity: 1; visibility: visible; }

.nav-links li {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.nav-links.open li { opacity: 1; transform: translateX(0); }
.nav-links.open li:nth-child(1) { transition-delay: 0.08s; }
.nav-links.open li:nth-child(2) { transition-delay: 0.14s; }
.nav-links.open li:nth-child(3) { transition-delay: 0.20s; }
.nav-links.open li:nth-child(4) { transition-delay: 0.26s; }

.nav-item {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 500;
  font-style: italic;
  color: var(--creme);
  text-decoration: none;
  transition: color 0.25s, padding-left 0.25s;
}

.nav-item:hover { color: var(--dourado); padding-left: 0.5rem; }

.nav-cta {
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.72rem !important;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--preto) !important;
  background: var(--dourado);
  padding: 0.85rem 1.8rem;
  border-radius: 2px;
  margin-top: 0.6rem;
}

.nav-cta:hover { background: var(--dourado-light); padding-left: 1.8rem; }


/* ==========================================
   SEÇÃO 2 — HERO
   ========================================== */

#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 8rem var(--px) 4rem;
  background: var(--preto);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  will-change: transform;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(14,13,11,0.92) 0%, rgba(14,13,11,0.35) 45%, rgba(14,13,11,0.55) 100%),
    linear-gradient(to right, rgba(14,13,11,0.7) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 14vw, 6.2rem);
  font-weight: 500;
  line-height: 1.02;
  color: var(--creme);
  margin-bottom: 1.6rem;
  letter-spacing: -0.01em;
}

.hero-title em { font-style: italic; color: var(--dourado); }

.hero-sub {
  font-size: clamp(0.92rem, 4vw, 1.05rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245,239,230,0.72);
  max-width: 440px;
}


/* ==========================================
   SEÇÃO 3 — MANIFESTO (FRASE DE EFEITO)
   ========================================== */

#manifesto {
  background: var(--creme);
  padding: 3rem 0;
}

.manifesto-texto {
  padding: 0 var(--px);
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-aspas {
  font-family: var(--serif);
  font-size: 6rem;
  line-height: 0.6;
  color: var(--dourado);
  display: block;
  margin-bottom: 1rem;
}

.manifesto-frase {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 6.5vw, 3rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--texto);
}

.manifesto-frase em { font-style: italic; color: var(--dourado); }


/* ==========================================
   SEÇÃO 4 — NOSSA HISTÓRIA
   ========================================== */

#historia {
  background: var(--carvao);
  overflow: hidden;
  padding: 2.5rem 0 0;
  scroll-margin-top: 60px;
}

.historia-header {
  text-align: center;
  padding: 0 var(--px);
  margin-bottom: 2rem;
}

.historia-header .eyebrow { justify-content: center; }

.historia-track-wrap {
  overflow: hidden;
  position: relative;
}

.historia-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.historia-slide {
  flex-shrink: 0;
  padding: 2rem var(--px) 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.4rem;
  min-height: 70svh;
  position: relative;
  justify-content: center;
}

.historia-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--dourado);
}

.historia-titulo {
  font-family: var(--serif);
  font-size: clamp(2rem, 9vw, 3.4rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--creme);
}

.historia-titulo em { font-style: italic; color: var(--dourado); }

.historia-texto {
  font-size: clamp(0.92rem, 4vw, 1rem);
  font-weight: 300;
  line-height: 1.9;
  color: rgba(245,239,230,0.7);
  max-width: 540px;
}

.historia-slide--foto {
  background-size: cover;
  background-position: center 20%;
  justify-content: flex-end;
  padding-bottom: 4rem;
}

.historia-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(14,13,11,0.95) 0%,
    rgba(14,13,11,0.45) 45%,
    rgba(14,13,11,0.1) 100%);
  z-index: 1;
}

.historia-slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
}

/* DOTS */
.historia-dots {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.historia-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(176,137,79,0.25);
  border: none;
  cursor: pointer;
  transition: background 0.4s;
  padding: 0;
}

.historia-dot.on { background: var(--dourado); }


/* ==========================================
   SEÇÃO 5 — POR QUE AQUI (DIFERENCIAIS)
   ========================================== */

#diferenciais {
  background: var(--creme);
  /* MUDADO O BOTTOM PARA 0 PARA ELIMINAR O ESPAÇO E COLAR O CARROSSEL NA LINHA */
  padding: var(--gap-section) var(--px) 0 var(--px);
}

.dif-header { 
  margin-bottom: 2.6rem; 
}

.dif-titulo {
  font-family: var(--serif);
  font-size: clamp(2rem, 9vw, 3.4rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--texto);
  margin-top: 0.8rem;
}

.dif-titulo em { 
  font-style: italic; 
  color: var(--dourado); 
}

.dif-feature {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 2.4rem;
  border-radius: 2px;
}

.dif-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dif-feature .tag {
  position: absolute;
  left: 1.2rem; 
  bottom: 1.2rem;
  background: rgba(14,13,11,0.7);
  backdrop-filter: blur(6px);
  color: var(--creme);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.6rem 1.1rem;
  border-radius: 2px;
}

.dif-lista { 
  display: flex; 
  flex-direction: column; 
}

.dif-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.6rem 0;
  border-top: 1px solid rgba(176,137,79,0.3);
}

.dif-item:last-child {
  border-bottom: 1px solid rgba(176,137,79,0.3);   
}

.dif-item .dif-ico { 
  flex-shrink: 0; 
  color: var(--dourado); 
}

.dif-item .dif-ico svg { 
  width: 26px; 
  height: 26px; 
}

.dif-item h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--texto);
  margin-bottom: 0.3rem;
}

.dif-item p {
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--texto-medio);
}


/* ==========================================
   SEÇÃO 6 — CARROSSEL DE MARCAS 
   ========================================== */

#marcas-mini {
  overflow: hidden;
  padding: 2rem 0;
  background: var(--creme);
}

.marcas-mini-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marcasMini 18s linear infinite;
}

.marcas-mini-track img {
  width: auto;
  height: 32px;       
  object-fit: contain;
  opacity: .6;
  margin-right: 3rem;
}

/* AJUSTE FINO POR MARCA */
.marcas-mini-track .logo-dudalina { height: 80px; } /* MAIOR — COMPENSA O LOGO PEQUENO */
.marcas-mini-track .logo-carmen   { height: 30px; }

@keyframes marcasMini {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.logo-texto-marca {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.15;
  color: var(--texto-medio);
  text-align: center;
  margin-right: 3rem;
  flex-shrink: 0;
  opacity: 0.6;
}

.logo-texto-marca em {
  font-style: italic;
  color: var(--dourado);
}


/* ==========================================
   SEÇÃO 7 — A LOJA (FOTOS EM CARROSSEL)
   ========================================== */

#loja {
  background: var(--creme);
}

.loja-img {
  position: relative;
  width: 100%;
  height: 115vw;
  max-height: 760px;
  overflow: hidden;
}

/* EFEITO DOS SLIDES (Agrupado aqui para evitar duplicidade de código) */
.loja-img .slide,
.manifesto-img .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s ease, transform 6s ease;
}

.loja-img .slide.ativo,
.manifesto-img .slide.ativo {
  opacity: 1;
  transform: scale(1);
}


/* ==========================================
   SEÇÃO 8 — VARIEDADE (CATEGORIAS)
   ========================================== */

#variedade {
  background: var(--creme);
  padding: var(--gap-section) 0;
  overflow: hidden;
}

.variedade-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
  padding: 0 var(--px);
}

.variedade-header .eyebrow { justify-content: center; }

.variedade-titulo {
  font-family: var(--serif);
  font-size: clamp(2rem, 9vw, 3.4rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--texto);
  margin-top: 0.8rem;
}

.variedade-titulo em { font-style: italic; color: var(--dourado); }

.variedade-sub {
  font-size: clamp(0.9rem, 4vw, 1rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--texto-medio);
  margin-top: 1.4rem;
}

/* STACK */
.var-stack {
  position: relative;
  height: 520px;
  margin: 0 var(--px);
}

/* CARD BASE */
.var-card {
  position: absolute;
  width: 68%;
  height: 420px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transform-origin: bottom center;
  transition:
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.65s ease,
    z-index 0s;
  will-change: transform;
}

/* POSIÇÃO PADRÃO DOS 3 CARDS (cascata) */
.var-card:nth-child(1) {
  left: 0;
  top: 0;
  z-index: 1;
  transform: rotate(-3deg) translateY(0px);
}
.var-card:nth-child(2) {
  left: 16%;
  top: 30px;
  z-index: 2;
  transform: rotate(0deg) translateY(0px);
}
.var-card:nth-child(3) {
  left: 32%;
  top: 60px;
  z-index: 3;
  transform: rotate(3deg) translateY(0px);
}

/* CARD ATIVO — VEM PARA FRENTE */
.var-card.ativo {
  z-index: 10;
  transform: rotate(0deg) translateY(-30px) scale(1.04) !important;
  box-shadow: 0 24px 60px rgba(14,13,11,0.45);
}

/* CARDS RECUADOS QUANDO HÁ UM ATIVO */
.var-stack.tem-ativo .var-card:not(.ativo) {
  opacity: 0.6;
  transform: rotate(0deg) scale(0.94) translateY(10px) !important;
}

/* SLIDES DENTRO DO CARD */
.var-slides {
  position: absolute;
  inset: 0;
}

.var-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 0;
}

.var-slide.ativo {
  opacity: 1;
  z-index: 1;
}

.var-slide.saindo {
  opacity: 0;
  z-index: 2;
  transition: opacity 0.7s ease;
}

/* OVERLAY */
.var-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14,13,11,0.92) 0%,
    rgba(14,13,11,0.3) 50%,
    rgba(14,13,11,0.05) 100%
  );
  z-index: 1;
}

/* INFO */
.var-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.4rem 1.4rem 1.2rem;
}

.var-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--dourado);
  display: block;
  margin-bottom: 0.2rem;
}

.var-titulo {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--creme);
  margin-bottom: 0.3rem;
}

.var-texto {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(245,239,230,0.7);
  line-height: 1.5;
  margin-bottom: 0.6rem;
}

.var-counter {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--dourado);
  text-transform: uppercase;
}

/* DESKTOP */
@media (min-width: 960px) {
  .var-stack {
    height: 600px;
    margin: 0 auto;
    max-width: 700px;
  }

  .var-card { width: 55%; height: 500px; }

  .var-card:nth-child(1) { left: 0; top: 0; }
  .var-card:nth-child(2) { left: 22%; top: 40px; }
  .var-card:nth-child(3) { left: 44%; top: 80px; }
}

/* TOQUE PARA VER */
.var-dica {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 2rem;
  padding-bottom: 0.5rem;
}

.var-dica-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--dourado);
  display: inline-block;
}

.var-dica-dot:nth-child(1) { animation: dot-fade 1.4s ease-in-out infinite 0s; }
.var-dica-dot:nth-child(2) { animation: dot-fade 1.4s ease-in-out infinite 0.2s; }
.var-dica-dot:nth-child(3) { animation: dot-fade 1.4s ease-in-out infinite 0.4s; }

@keyframes dot-fade {
  0%, 100% { opacity: 0.2; }
  50%       { opacity: 1; }
}

.var-dica-txt {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dourado);
  opacity: 0.6;
  margin-left: 4px;
}


/* ==========================================
   SEÇÃO 9 — QUEM VESTE, RECOMENDA
   ========================================== */

#prova {
  background: var(--carvao);
  padding: 3rem 0 3rem;
  overflow: hidden;
  scroll-margin-top: 60px;
}

.prova-header {
  text-align: center;
  padding: 0 var(--px);
  margin-bottom: 3rem;
}

.prova-header .eyebrow { justify-content: center; }

.prova-titulo {
  font-family: var(--serif);
  font-size: clamp(2rem, 9vw, 3.4rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--creme);
  margin-top: 0.8rem;
}

.prova-titulo em { font-style: italic; color: var(--dourado); }

.prova-row {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  margin-bottom: 1.2rem;
}

.prova-row.r1 { animation: provaScroll 38s linear infinite; }
.prova-row.r2 { animation: provaScrollRev 44s linear infinite; }

@keyframes provaScroll    { 0% { transform: translateX(0); }    100% { transform: translateX(-50%); } }
@keyframes provaScrollRev { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

.depo-card {
  flex-shrink: 0;
  width: 300px;
  background: var(--carvao-2);
  border: 1px solid rgba(176,137,79,0.22);
  border-radius: 8px;
  padding: 1.9rem 1.8rem;
  position: relative;        
  overflow: hidden;          
  display: flex;
  flex-direction: column;
}

.depo-card::before {
  content: '\201D';          
  position: absolute;
  top: 0.2rem;
  right: 0.7rem;
  font-family: var(--serif);
  font-size: 6.5rem;
  line-height: 1;
  color: rgba(176,137,79,0.13);
  pointer-events: none;
  z-index: 0;
}

.depo-card .estrelas {
  position: relative;
  z-index: 1;
  order: 2;                  
  color: var(--dourado);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  margin-bottom: 0;
}

.depo-card p {
  position: relative;
  z-index: 1;
  order: 1;                  
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.14rem;
  line-height: 1.5;
  color: rgba(245,239,230,0.9);
  margin-bottom: 1.2rem;     
}


/* ==========================================
   SEÇÃO 10 — CTA FINAL + CONTATO
   ========================================== */

#cta-final {
  background: var(--creme);
  padding: var(--gap-section) var(--px) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-chuva {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.cta-estrela {
  position: absolute;
  color: #B0894F;
  animation: estrela-pulsar ease-in-out infinite;
}

@keyframes estrela-pulsar {
  0%, 100% { opacity: 0; transform: scale(0.4); }
  50%       { opacity: 1; transform: scale(1); }
}

.cta-anos {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.cta-anos-line {
  width: 28px;
  height: 1px;
  background: var(--dourado);
  opacity: 0.5;
}

.cta-anos span {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--dourado);
}

.cta-logo-icone {
  height: 70px;
  width: auto;
  margin-bottom: 1.6rem;
}

.cta-frase {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 7vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--texto);
  margin-bottom: 1rem;
}

.cta-frase em {
  font-style: italic;
  color: var(--dourado);
}

.cta-sub {
  font-size: clamp(0.86rem, 3.5vw, 0.96rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--texto-medio);
  margin-bottom: 2.4rem;
}

/* NÚMEROS */
.cta-numeros {
  display: flex;
  width: 100%;
  gap: 6px;
  margin-bottom: 2.4rem;
}

.cta-num-item {
  flex: 1;
  background: #12100D;
  border: 1px solid rgba(176,137,79,0.55);
  outline: 1px solid rgba(176,137,79,0.15);
  outline-offset: -5px;
  padding: 1.6rem 0.6rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  border-radius: 3px;
}

/* CANTOS DECORATIVOS */
.cta-num-item::before,
.cta-num-item::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-color: var(--dourado);
  border-style: solid;
  opacity: 0.6;
}

.cta-num-item::before {
  top: 5px;
  left: 5px;
  border-width: 1px 0 0 1px;
}

.cta-num-item::after {
  bottom: 5px;
  right: 5px;
  border-width: 0 1px 1px 0;
}

.cta-num-val {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 6vw, 2.2rem);
  font-weight: 600;
  line-height: 1;
  background: linear-gradient(180deg, #D8B978 0%, #B0894F 50%, #8A6530 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.8));
}

.cta-num-infinito {
  height: clamp(1.7rem, 6vw, 2.2rem);
  display: flex;
  align-items: center;
}

.cta-num-infinito svg {
  width: auto;
  height: 100%;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.8));
}

.cta-num-infinito svg path {
  stroke: url(#goldGrad);
}

.cta-num-txt {
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(176,137,79,0.55);
  padding-top: 4px;
  border-top: 1px solid rgba(176,137,79,0.2);
  width: 80%;
  text-align: center;
}

.cta-numeros .cta-num-item:nth-child(1) { animation: float-up 3s ease-in-out infinite 0s; }
.cta-numeros .cta-num-item:nth-child(2) { animation: float-up 3s ease-in-out infinite 0.5s; }
.cta-numeros .cta-num-item:nth-child(3) { animation: float-up 3s ease-in-out infinite 1s; }

@keyframes float-up {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}

/* BOTÕES */
.cta-botoes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 340px;
  margin-bottom: 2.4rem;
}

.cta-wpp, .cta-insta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.05rem 2rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s, gap 0.3s;
  position: relative;
  overflow: hidden;
}

.cta-wpp { background: var(--dourado); color: var(--preto); }
.cta-wpp:hover { background: var(--dourado-light); gap: 1.2rem; }

.cta-insta {
  background: none;
  border: 1px solid rgba(176,137,79,0.5);
  color: var(--dourado);
}
.cta-insta:hover { background: rgba(176,137,79,0.08); gap: 1.2rem; }

.cta-wpp svg, .cta-insta svg { width: 17px; height: 17px; flex-shrink: 0; }

/* EFEITO — LUZ PERCORRENDO A BORDA */
.cta-wpp::before,
.cta-insta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
  animation: borda-top 3s ease-in-out infinite;
  pointer-events: none;
}

.cta-wpp::after,
.cta-insta::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
  animation: borda-bot 3s ease-in-out infinite 1.5s;
  pointer-events: none;
}

.cta-insta::before {
  background: linear-gradient(90deg, transparent, rgba(216,185,120,0.9), transparent);
  animation-delay: 0.8s;
}

.cta-insta::after {
  background: linear-gradient(90deg, transparent, rgba(216,185,120,0.7), transparent);
  animation-delay: 2.3s;
}

@keyframes borda-top {
  0%, 40% { left: -100%; }
  100%     { left: 100%; }
}

@keyframes borda-bot {
  0%, 40% { right: -100%; }
  100%     { right: 100%; }
}

/* ENDEREÇO */
.cta-endereco {
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--texto-medio);
}

.cta-endereco strong {
  display: block;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.62rem;
  color: var(--dourado);
  margin-bottom: 0.4rem;
}

/* RODAPÉ */
.cta-rodape {
  margin-top: var(--gap-section);
  width: calc(100% + (var(--px) * 2));
  background: #000;
  padding: 1.8rem var(--px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.cta-tags {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-tags span {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(216,185,120,0.6);
}

.cta-tags .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(216,185,120,0.4);
}

.cta-copy {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.25);
}


/* ==========================================
   RESPONSIVO — TABLET 680px+
   ========================================== */

@media (min-width: 680px) {
  .cta-botoes {
    flex-direction: row;
    max-width: none;
    justify-content: center;
  }

  .cta-wpp, .cta-insta { flex: 0 1 260px; }
}


/* ==========================================
   RESPONSIVO — DESKTOP 960px+
   ========================================== */

@media (min-width: 960px) {

  :root {
    --px: 4rem;
    --gap-section: 8rem;
  }

  .nav-hamburger { display: none; }
  .nav-logo { left: var(--px); transform: none; }

  .nav-links {
    position: static;
    inset: auto;
    flex-direction: row;
    align-items: center;
    background: none;
    padding-left: 0;
    gap: 2.4rem;
    opacity: 1;
    visibility: visible;
  }

  .nav-links li { opacity: 1; transform: none; }

  .nav-item {
    font-family: var(--sans);
    font-style: normal;
    font-size: 0.74rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--creme);
  }

  .nav-item:hover { padding-left: 0; }
  .nav-cta { margin-top: 0; }

  #navbar {
    justify-content: flex-end;
    gap: 3rem; /* Espaço entre o bloco de links e o ícone do Whats */
  }

  #hero { align-items: center; padding-bottom: 7rem; }
  .hero-content { max-width: 620px; }

  .historia-texto { font-size: 1.05rem; }

  #diferenciais .dif-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .dif-feature { margin-bottom: 0; aspect-ratio: 3/4; }
}


/* ==========================================
   ACESSIBILIDADE — REDUCED MOTION
   ========================================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--dourado);
  outline-offset: 3px;
}