/* ═══════════════════════════════════════════════
   DON PERATELLO — style.css
   Versão de Produção
═══════════════════════════════════════════════ */

/* ─────────────────────────────────────────────
   TOKENS / CSS VARIABLES
───────────────────────────────────────────── */
:root {
  --ink:        #1a0507;
  --burg:       #2d0b0e;
  --wine:       #7a1528;
  --crimson:    #a01830;
  --gold:       #c8a45a;
  --gold-lt:    #e0c07a;
  --cream:      #f4ead6;
  --cream-lt:   #faf5ec;
  --cream-mid:  #ede0c8;
  --off-white:  #fdf8f2;
  --serif:      'Poppins', system-ui, sans-serif;
  --serif-sc:   'Poppins', system-ui, sans-serif;
  --sans:       'Poppins', system-ui, sans-serif;
  --ease:       cubic-bezier(.4,0,.2,1);
  --mw:         1180px;
}

/* ─────────────────────────────────────────────
   RESET
───────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:var(--sans);background:var(--off-white);color:var(--burg);overflow-x:hidden;line-height:1.7}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none}
button{cursor:pointer;border:none;background:none;font-family:inherit}

/* ─────────────────────────────────────────────
   NOISE TEXTURE OVERLAY
───────────────────────────────────────────── */
.noise::after{
  content:'';pointer-events:none;
  position:absolute;inset:0;z-index:1;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity:.45;
}

/* ─────────────────────────────────────────────
   UTILITIES
───────────────────────────────────────────── */
.wrap{max-width:var(--mw);margin:0 auto;padding:0 2rem}
.sr-only{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0)}

.label{
  font-family:var(--sans);font-size:.68rem;font-weight:600;
  letter-spacing:.22em;text-transform:uppercase;
  color:var(--gold);display:block;margin-bottom:.6rem;
}
.label--dark{color:var(--wine)}

.rule{
  display:flex;align-items:center;gap:1.2rem;
  margin:1.5rem 0;
}
.rule::before,.rule::after{content:'';flex:1;height:1px;background:currentColor;opacity:.18}
.rule svg,.rule span{flex-shrink:0;opacity:.4}

.btn{
  display:inline-flex;align-items:center;gap:.6rem;
  padding:.8rem 2.2rem;font-family:var(--sans);
  font-weight:600;font-size:.78rem;letter-spacing:.14em;
  text-transform:uppercase;border-radius:2px;
  transition:all .3s var(--ease);
}
.btn--gold{
  background:linear-gradient(135deg,var(--gold),var(--gold-lt));
  color:var(--burg);
  box-shadow:0 4px 20px rgba(200,164,90,.3);
}
.btn--gold:hover{transform:translateY(-2px);box-shadow:0 8px 30px rgba(200,164,90,.4)}
.btn--ghost{
  border:1px solid rgba(255,255,255,.3);
  color:rgba(255,255,255,.85);
}
.btn--ghost:hover{border-color:var(--gold);color:var(--gold)}
.btn--ghost-dark{
  border:1px solid var(--gold);color:var(--wine);
}
.btn--ghost-dark:hover{background:var(--gold);color:var(--burg)}

/* ─────────────────────────────────────────────
   REVEAL ANIMATIONS
───────────────────────────────────────────── */
.fade-up{opacity:0;transform:translateY(36px);transition:opacity .8s var(--ease),transform .8s var(--ease)}
.fade-left{opacity:0;transform:translateX(-40px);transition:opacity .8s var(--ease),transform .8s var(--ease)}
.fade-right{opacity:0;transform:translateX(40px);transition:opacity .8s var(--ease),transform .8s var(--ease)}
.in{opacity:1 !important;transform:none !important}
.d1{transition-delay:.1s}.d2{transition-delay:.22s}.d3{transition-delay:.34s}.d4{transition-delay:.46s}

/* ─────────────────────────────────────────────
   HEADER
───────────────────────────────────────────── */
#header{
  position:fixed;top:0;left:0;right:0;z-index:900;
  padding:1.25rem 0;
  transition:background .5s var(--ease),padding .3s var(--ease),backdrop-filter .5s;
}
#header.solid{
  background:rgba(21,4,7,.92);
  backdrop-filter:blur(16px);
  padding:.7rem 0;
  border-bottom:1px solid rgba(200,164,90,.08);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
}
.logo img{height:78px;width:auto;transition:height .3s}
#header.solid .logo img{height:64px}
.nav-links{display:flex;align-items:center;gap:2.5rem}
.nav-links a{
  font-size:.73rem;font-weight:500;letter-spacing:.1em;
  text-transform:uppercase;color:rgba(255,255,255,.7);
  transition:color .25s;position:relative;
}
.nav-links a::after{
  content:'';position:absolute;bottom:-4px;left:0;
  width:0;height:1px;background:var(--gold);
  transition:width .3s var(--ease);
}
.nav-links a:hover{color:var(--gold)}
.nav-links a:hover::after{width:100%}
.nav-cta{margin-left:.5rem}
.burger{
  display:none;flex-direction:column;gap:5px;
  background:none;border:none;padding:4px;cursor:pointer;
}
.burger span{
  display:block;width:24px;height:1.5px;
  background:rgba(255,255,255,.8);border-radius:2px;
  transition:all .3s var(--ease);
}
.mob-nav{
  display:none;position:absolute;top:100%;left:0;right:0;
  background:rgba(21,4,7,.96);backdrop-filter:blur(20px);
  padding:1.5rem 2rem;flex-direction:column;gap:0;
  border-top:1px solid rgba(200,164,90,.12);
}
.mob-nav.open{display:flex}
.mob-nav a{
  padding:.85rem 0;
  font-size:.82rem;font-weight:500;letter-spacing:.1em;text-transform:uppercase;
  color:rgba(255,255,255,.7);
  border-bottom:1px solid rgba(255,255,255,.06);
  transition:color .25s;
}
.mob-nav a:hover{color:var(--gold)}
.mob-nav .btn{margin-top:1.2rem;justify-content:center}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
#hero{
  min-height:90vh;
  display:flex;align-items:flex-end;
  position:relative;overflow:hidden;
  background:var(--burg);
}
.hero-bg{
  position:absolute;inset:0;
  background:
    linear-gradient(to bottom, rgba(10,2,4,.5) 0%, rgba(10,2,4,.65) 100%),
    url('banner-vinho.png') center/cover no-repeat;
}
.hero-watermark{
  position:absolute;
  right:-4%;top:-8%;
  width:65vw;max-width:860px;
  opacity:.035;
  pointer-events:none;
  font-family:var(--serif);font-weight:700;font-style:italic;
  font-size:95vw;line-height:1;color:#fff;
  white-space:nowrap;overflow:hidden;
  z-index:0;
  letter-spacing:-.04em;
}
.hero-vertical{
  position:absolute;
  left:2.5rem;bottom:3rem;
  writing-mode:vertical-rl;
  text-orientation:mixed;
  transform:rotate(180deg);
  font-family:var(--sans);
  font-size:.62rem;font-weight:600;
  letter-spacing:.22em;text-transform:uppercase;
  color:rgba(255,255,255,.28);
  z-index:2;
}
.hero-scroll-line{
  position:absolute;right:2.5rem;bottom:0;
  width:1px;height:80px;
  background:linear-gradient(to bottom,transparent,rgba(200,164,90,.5));
  z-index:2;
}
.hero-content{
  position:relative;z-index:2;
  width:100%;
  padding:9rem 0 7rem;
}
.hero-eyebrow{
  font-family:var(--sans);
  font-size:.65rem;font-weight:600;letter-spacing:.25em;text-transform:uppercase;
  color:var(--gold);opacity:.9;
  margin-bottom:2rem;
}
.hero-title{
  font-family:var(--serif);font-style:italic;font-weight:300;
  font-size:clamp(4rem,9vw,5.5rem);
  line-height:.95;
  color:#fff;
  letter-spacing:-.02em;
  margin-bottom:2.5rem;
}
.hero-title strong{
  font-weight:600;font-style:normal;
  display:block;
}
.hero-title em{
  font-style:italic;color:var(--gold);display:block;
  font-weight:300;
}
.hero-rule{
  width:80px;height:1px;
  background:linear-gradient(90deg,var(--gold),transparent);
  margin-bottom:2.5rem;
}
.hero-sub{
  font-size:1rem;color:rgba(255,255,255,.65);
  max-width:480px;line-height:1.9;
  margin-bottom:3rem;font-weight:300;
}
.hero-actions{display:flex;gap:1rem;flex-wrap:wrap}

/* ─────────────────────────────────────────────
   INTRO STRIP
───────────────────────────────────────────── */
#intro-strip{
  background:var(--gold);
  overflow:hidden;
  padding:.8rem 0;
  position:relative;
}
.strip-track{
  display:flex;gap:4rem;
  animation:marquee 28s linear infinite;
  width:max-content;
  white-space:nowrap;
}
.strip-track span{
  font-family:var(--serif-sc);font-size:.9rem;letter-spacing:.15em;
  font-weight:500;color:var(--burg);
  display:flex;align-items:center;gap:1.2rem;
}
.strip-track span::after{
  content:'◆';font-size:.5rem;color:rgba(45,11,14,.35);
}
@keyframes marquee{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* ─────────────────────────────────────────────
   BENEFÍCIOS
───────────────────────────────────────────── */
#beneficios{padding:8rem 0;background:var(--off-white)}
.bene-header{
  display:grid;grid-template-columns:1fr 1fr;
  gap:4rem;align-items:end;margin-bottom:5rem;
}
.bene-header h2{
  font-family:var(--serif);font-weight:300;font-style:italic;
  font-size:clamp(2.5rem,4vw,4.2rem);
  line-height:1.1;color:var(--burg);
}
.bene-header h2 strong{font-weight:600;font-style:normal;display:block}
.bene-header p{
  font-size:.93rem;color:#6a3a3a;line-height:1.9;
  max-width:420px;align-self:center;font-weight:300;
}
.bene-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  border-top:1px solid rgba(45,11,14,.1);
}
.bene-item{
  padding:2.5rem 1.75rem;
  border-right:1px solid rgba(45,11,14,.1);
  transition:background .3s var(--ease);
  position:relative;overflow:hidden;
}
.bene-item:last-child{border-right:none}
.bene-item::before{
  content:'';position:absolute;
  top:0;left:0;width:0;height:2px;
  background:linear-gradient(90deg,var(--gold),var(--gold-lt));
  transition:width .5s var(--ease);
}
.bene-item:hover{background:var(--cream-lt)}
.bene-item:hover::before{width:100%}
.bene-num{
  font-family:var(--serif-sc);font-size:3.5rem;font-weight:300;
  color:var(--cream-mid);line-height:1;
  margin-bottom:1.25rem;
  transition:color .3s;
}
.bene-item:hover .bene-num{color:rgba(200,164,90,.35)}
.bene-item h3{
  font-family:var(--serif);font-size:1.3rem;font-weight:500;
  color:var(--burg);margin-bottom:.75rem;
}
.bene-item p{font-size:.83rem;color:#6a3a3a;line-height:1.8;font-weight:300}

/* ─────────────────────────────────────────────
   PLANOS
───────────────────────────────────────────── */
#planos{
  padding:8rem 0;background:var(--burg);
  position:relative;overflow:hidden;
}
#planos .noise::after{opacity:.3}
.planos-eyebrow{text-align:center;margin-bottom:1rem}
.planos-title{
  text-align:center;
  font-family:var(--serif);font-weight:300;font-style:italic;
  font-size:clamp(2.5rem,4vw,4rem);color:#fff;
  margin-bottom:1.5rem;letter-spacing:-.01em;
}
.planos-sub{
  text-align:center;
  font-size:.88rem;color:rgba(255,255,255,.5);
  margin-bottom:5rem;font-weight:300;letter-spacing:.05em;
}
.planos-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:0;border:1px solid rgba(200,164,90,.15);
  position:relative;z-index:1;
}
.plano{
  padding:2.5rem 1.75rem;
  border-right:1px solid rgba(200,164,90,.12);
  position:relative;overflow:hidden;
  transition:background .4s var(--ease);
  display:flex;flex-direction:column;
}
.plano-price,.plano-qty,.plano .btn{margin-top:0}
.plano-attrs{flex:1}
.plano:last-child{border-right:none}
.plano::after{
  content:'';position:absolute;
  bottom:0;left:0;right:0;height:0;
  background:rgba(200,164,90,.04);
  transition:height .5s var(--ease);
}
.plano:hover{background:rgba(255,255,255,.03)}
.plano.featured{background:rgba(200,164,90,.06)}
.plano-tier{
  font-family:var(--serif-sc);font-size:.65rem;letter-spacing:.25em;
  color:var(--gold);margin-bottom:1.5rem;font-weight:500;
}
.plano-num{
  font-family:var(--serif);font-weight:200;font-style:italic;
  font-size:6rem;line-height:.85;color:rgba(255,255,255,.06);
  position:absolute;top:1.5rem;right:1.5rem;
  pointer-events:none;transition:color .4s;
}
.plano:hover .plano-num{color:rgba(200,164,90,.08)}
.plano h3{
  font-family:var(--serif);font-size:2.4rem;font-weight:500;
  color:#fff;margin-bottom:.4rem;letter-spacing:-.01em;
}
.plano-tagline{
  font-family:var(--serif);font-style:italic;font-size:.85rem;
  color:rgba(255,255,255,.45);margin-bottom:1.75rem;
  line-height:1.5;font-weight:300;
}
.plano-divider{
  width:40px;height:1px;
  background:linear-gradient(90deg,var(--gold),transparent);
  margin-bottom:1.75rem;
}
.plano-desc{
  font-size:.73rem;color:rgba(255,255,255,.55);
  line-height:1.9;margin-bottom:2rem;font-weight:300;
}
.plano-attrs{margin-bottom:2.5rem}
.plano-attrs li{
  display:flex;align-items:center;gap:.65rem;
  font-size:.78rem;color:rgba(255,255,255,.55);
  padding:.4rem 0;
  border-bottom:1px solid rgba(255,255,255,.05);
}
.plano-attrs li:last-child{border:none}
.plano-attrs li::before{
  content:'';width:4px;height:4px;border-radius:50%;
  background:var(--gold);flex-shrink:0;
}
.plano-price{margin-bottom:2rem}
.plano-price-from{font-size:.68rem;color:rgba(255,255,255,.3);letter-spacing:.08em;margin-bottom:.2rem}
.plano-price-val{
  font-family:var(--serif);font-weight:600;
  font-size:3.2rem;color:var(--gold-lt);line-height:1;
}
.plano-price-val sup{font-size:1.2rem;vertical-align:top;margin-top:.5rem}
.plano-price-val sub{font-size:.9rem}
.plano-price-note{font-size:.7rem;color:rgba(255,255,255,.25);margin-top:.3rem}
.plano-qty{margin-bottom:1.5rem}
.plano-qty-label{
  display:block;font-size:.65rem;letter-spacing:.12em;text-transform:uppercase;
  color:rgba(255,255,255,.35);margin-bottom:.5rem;font-weight:500;
}
.plano-qty-select{
  width:100%;background:rgba(255,255,255,.06);
  border:1px solid rgba(200,164,90,.25);color:#fff;
  padding:.65rem 2.2rem .65rem 1rem;
  font-family:var(--sans);font-size:.82rem;border-radius:2px;
  cursor:pointer;appearance:none;-webkit-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c8a45a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 1rem center;
  transition:border-color .25s;
}
.plano-qty-select:focus{outline:none;border-color:var(--gold)}
.plano-qty-select option{background:#2d0b0e;color:#fff}
.plano .btn{width:100%;justify-content:center;border-radius:2px;padding:.8rem .2rem}
.plano-featured-badge{
  position:absolute;top:0;left:50%;transform:translateX(-50%);
  background:var(--gold);color:var(--burg);
  font-size:.62rem;font-weight:700;letter-spacing:.15em;text-transform:uppercase;
  padding:.3rem 1.2rem;
}

/* ─────────────────────────────────────────────
   COMO FUNCIONA
───────────────────────────────────────────── */
#como{padding:8rem 0;background:var(--cream)}
.como-inner{
  display:grid;grid-template-columns:1fr 2fr;
  gap:6rem;align-items:start;
}
.como-left h2{
  font-family:var(--serif);font-weight:300;font-style:italic;
  font-size:clamp(2.5rem,3.5vw,3.8rem);
  line-height:1.1;color:var(--burg);
  margin-bottom:1.5rem;
}
.como-left h2 strong{font-weight:600;font-style:normal;display:block}
.como-left p{
  font-size:.88rem;color:#6a3a3a;line-height:1.9;
  font-weight:300;margin-bottom:2rem;
}
.como-steps{display:flex;flex-direction:column;gap:0}
.como-step{
  display:grid;grid-template-columns:80px 1fr;
  gap:2rem;padding:2.5rem 0;
  border-bottom:1px solid rgba(45,11,14,.08);
  align-items:start;
  transition:background .3s;
}
.como-step:first-child{border-top:1px solid rgba(45,11,14,.08)}
.como-step-n{
  font-family:var(--serif-sc);font-size:2.8rem;font-weight:300;
  color:var(--cream-mid);line-height:1;
  transition:color .4s var(--ease);
}
.como-step:hover .como-step-n{color:var(--gold)}
.como-step-content h3{
  font-family:var(--serif);font-size:1.5rem;font-weight:500;
  color:var(--burg);margin-bottom:.6rem;
}
.como-step-content p{font-size:.86rem;color:#6a3a3a;line-height:1.85;font-weight:300}

/* ─────────────────────────────────────────────
   SOBRE
───────────────────────────────────────────── */
#sobre{
  padding:8rem 0;background:var(--burg);
  position:relative;overflow:hidden;
}
.sobre-inner{
  display:grid;grid-template-columns:1fr 1fr;
  gap:7rem;align-items:center;
  position:relative;z-index:1;
}
.sobre-img{
  aspect-ratio:3/4;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(200,164,90,.15);
  position:relative;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
}
.sobre-img-inner{
  display:flex;flex-direction:column;align-items:center;gap:1rem;
  opacity:.2;
}
.sobre-img-inner svg{width:64px;height:64px;fill:var(--gold)}
.sobre-img-inner span{
  font-family:var(--serif-sc);font-size:.7rem;
  letter-spacing:.2em;color:var(--gold);
}
.sobre-img-accent{
  position:absolute;bottom:-2px;right:-2px;
  width:120px;height:120px;
  background:linear-gradient(135deg,var(--gold),var(--gold-lt));
  display:flex;flex-direction:column;align-items:center;justify-content:center;
}
.sobre-img-accent span{
  font-family:var(--serif);font-size:.8rem;font-weight:600;
  color:var(--burg);text-align:center;line-height:1.4;
}
.sobre-text h2{
  font-family:var(--serif);font-weight:300;font-style:italic;
  font-size:clamp(2.2rem,3.5vw,3.8rem);
  color:#fff;line-height:1.1;margin-bottom:1.5rem;
  letter-spacing:-.01em;
}
.sobre-text h2 strong{font-weight:600;font-style:normal;display:block}
.sobre-rule{width:60px;height:1px;background:linear-gradient(90deg,var(--gold),transparent);margin-bottom:2rem}
.sobre-text p{
  font-size:.9rem;color:rgba(255,255,255,.6);
  line-height:1.95;font-weight:300;margin-bottom:1.25rem;
}
.sobre-lista{
  display:grid;grid-template-columns:1fr 1fr;
  gap:.65rem;margin-top:2rem;
}
.sobre-lista li{
  display:flex;align-items:flex-start;gap:.65rem;
  font-size:.78rem;color:rgba(255,255,255,.55);
  font-weight:300;
}
.sobre-lista li::before{
  content:'';width:4px;height:4px;border-radius:50%;
  background:var(--gold);flex-shrink:0;margin-top:.5rem;
}

/* ─────────────────────────────────────────────
   DEPOIMENTOS
───────────────────────────────────────────── */
#depoimentos{padding:8rem 0;background:var(--cream-lt)}
.depo-header{
  display:flex;align-items:flex-end;
  justify-content:space-between;margin-bottom:4rem;
}
.depo-header h2{
  font-family:var(--serif);font-weight:300;font-style:italic;
  font-size:clamp(2.2rem,3.5vw,3.8rem);
  color:var(--burg);line-height:1.1;
}
.depo-header h2 strong{font-weight:600;font-style:normal;display:block}
.depo-header p{
  max-width:320px;font-size:.85rem;color:#6a3a3a;
  line-height:1.8;font-weight:300;text-align:right;
}
.depo-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
}
.depo{
  background:#fff;padding:2.5rem;
  border-top:2px solid var(--cream-mid);
  transition:border-color .35s var(--ease),transform .35s var(--ease);
  position:relative;
}
.depo:hover{border-color:var(--gold);transform:translateY(-4px)}
.depo-plan-tag{
  font-family:var(--sans);font-size:.63rem;font-weight:600;
  letter-spacing:.18em;text-transform:uppercase;
  color:var(--gold);margin-bottom:1.25rem;
}
.depo-mark{
  font-family:var(--serif);font-size:5rem;line-height:.6;
  color:var(--cream-mid);margin-bottom:.75rem;
}
.depo-stars{display:flex;gap:3px;margin-bottom:1rem}
.depo-stars svg{width:13px;height:13px;fill:var(--gold)}
.depo blockquote{
  font-family:var(--serif);font-style:italic;font-size:1.1rem;
  color:var(--burg);line-height:1.75;margin-bottom:1.5rem;font-weight:400;
}
.depo-author{display:flex;align-items:center;gap:.9rem}
.depo-avatar{
  width:44px;height:44px;border-radius:50%;
  background:linear-gradient(135deg,var(--burg),var(--wine));
  display:flex;align-items:center;justify-content:center;
  font-family:var(--serif);font-size:1.1rem;font-weight:600;color:var(--gold);flex-shrink:0;
}
.depo-name{font-weight:600;font-size:.83rem;color:var(--burg)}
.depo-role{font-size:.72rem;color:#8a5050;font-weight:300}

/* ─────────────────────────────────────────────
   FAQ
───────────────────────────────────────────── */
#faq{padding:8rem 0;background:var(--off-white)}
.faq-inner{
  display:grid;grid-template-columns:1fr 1.6fr;
  gap:7rem;align-items:start;
}
.faq-left h2{
  font-family:var(--serif);font-weight:300;font-style:italic;
  font-size:clamp(2.2rem,3.2vw,3.5rem);
  color:var(--burg);line-height:1.1;margin-bottom:1.25rem;
}
.faq-left h2 strong{font-weight:600;font-style:normal;display:block}
.faq-left p{font-size:.87rem;color:#6a3a3a;line-height:1.85;font-weight:300}
.faq-list{display:flex;flex-direction:column}
.faq-item{border-bottom:1px solid rgba(45,11,14,.08)}
.faq-q{
  width:100%;display:flex;align-items:center;justify-content:space-between;
  padding:1.35rem 0;gap:1.5rem;text-align:left;
  font-weight:600;font-size:.9rem;color:var(--burg);
  transition:color .25s;
}
.faq-q:hover{color:var(--wine)}
.faq-icon{
  width:24px;height:24px;flex-shrink:0;
  border:1px solid rgba(45,11,14,.2);border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  transition:all .3s var(--ease);
}
.faq-item.open .faq-icon{background:var(--gold);border-color:var(--gold);transform:rotate(45deg)}
.faq-icon svg{width:10px;height:10px;fill:var(--burg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .45s var(--ease)}
.faq-a-inner{
  padding:.25rem 0 1.35rem;
  font-size:.85rem;color:#6a3a3a;line-height:1.9;font-weight:300;
}

/* ─────────────────────────────────────────────
   CONTATO / CTA FINAL
───────────────────────────────────────────── */
#contato{
  padding:8rem 0;
  background:linear-gradient(155deg,#0e0205 0%,var(--burg) 50%,#1a0507 100%);
  position:relative;overflow:hidden;
}
.contato-inner{
  display:grid;grid-template-columns:1fr 1fr;
  gap:5rem;align-items:center;
  position:relative;z-index:1;
}
.contato-copy h2{
  font-family:var(--serif);font-weight:300;font-style:italic;
  font-size:clamp(2.5rem,4vw,4.5rem);
  color:#fff;line-height:1.05;margin-bottom:1.5rem;letter-spacing:-.02em;
}
.contato-copy h2 strong{font-weight:600;font-style:normal;display:block}
.contato-rule{width:60px;height:1px;background:linear-gradient(90deg,var(--gold),transparent);margin-bottom:1.75rem}
.contato-copy p{
  font-size:.92rem;color:rgba(255,255,255,.55);
  line-height:1.9;font-weight:300;margin-bottom:2.5rem;
}
.contato-perks{display:flex;flex-direction:column;gap:.7rem}
.perk{
  display:flex;align-items:center;gap:.75rem;
  font-size:.82rem;color:rgba(255,255,255,.55);font-weight:300;
}
.perk::before{
  content:'';width:5px;height:5px;border-radius:50%;
  background:var(--gold);flex-shrink:0;
}
.form-box{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(200,164,90,.15);
  padding:3rem;
}
.contato-cta{
  display:flex;flex-direction:column;
  align-items:flex-start;justify-content:center;
  gap:2rem;
}
.contato-cta-desc{
  font-size:1rem;color:rgba(255,255,255,.6);
  line-height:1.9;font-weight:300;max-width:380px;
}
.contato-btn-assinar{
  font-size:1rem;padding:1.1rem 2.5rem;
  display:inline-flex;align-items:center;gap:.75rem;
}
.form-box h3{
  font-family:var(--serif);font-size:1.8rem;font-weight:500;
  color:#fff;margin-bottom:.5rem;
}
.form-box .form-sub{
  font-size:.78rem;color:rgba(255,255,255,.35);
  margin-bottom:2rem;font-style:italic;font-family:var(--serif);
}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.fg{margin-bottom:1rem}
.fg label{
  display:block;font-size:.67rem;font-weight:600;
  letter-spacing:.12em;text-transform:uppercase;
  color:rgba(255,255,255,.3);margin-bottom:.4rem;
}
.fg input,.fg select,.fg textarea{
  width:100%;
  background:rgba(255,255,255,.05);
  border:none;border-bottom:1px solid rgba(200,164,90,.2);
  padding:.7rem .1rem;
  font-family:var(--sans);font-size:.87rem;color:#fff;
  transition:border-color .3s;outline:none;
  border-radius:0;
  -webkit-appearance:none;
}
.fg input::placeholder,.fg textarea::placeholder{color:rgba(255,255,255,.2)}
.fg input:focus,.fg select:focus,.fg textarea:focus{border-color:var(--gold)}
.fg select option{background:var(--burg);color:#fff}
.fg textarea{resize:none;min-height:90px}
.form-submit{
  width:100%;padding:1rem;font-size:.8rem;
  margin-top:.75rem;justify-content:center;border-radius:2px;
}
.form-note{
  text-align:center;font-size:.67rem;
  color:rgba(255,255,255,.2);margin-top:.85rem;font-style:italic;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
#footer{
  background:var(--ink);
  padding:5rem 0 2rem;
  border-top:1px solid rgba(200,164,90,.1);
}
.footer-top{
  display:grid;grid-template-columns:1.8fr 1fr 1fr 1.3fr;
  gap:3rem;margin-bottom:4rem;
}
.footer-brand .logo-f{margin-bottom:1.25rem}
.footer-brand .logo-f img{height:64px}
.footer-brand p{
  font-size:.8rem;color:rgba(255,255,255,.28);
  line-height:1.9;max-width:280px;font-weight:300;
  margin-bottom:1.5rem;
}
.footer-socials{display:flex;gap:.65rem}
.social{
  width:36px;height:36px;border-radius:50%;
  border:1px solid rgba(255,255,255,.08);
  display:flex;align-items:center;justify-content:center;
  transition:all .3s var(--ease);
}
.social:hover{border-color:var(--gold)}
.social:hover svg{fill:var(--gold)}
.social svg{width:14px;height:14px;fill:rgba(255,255,255,.3);transition:fill .3s}
.footer-col h4{
  font-family:var(--serif-sc);font-size:.82rem;
  letter-spacing:.16em;color:rgba(255,255,255,.5);
  margin-bottom:1.5rem;font-weight:500;
}
.footer-links{display:flex;flex-direction:column;gap:.6rem}
.footer-links a{
  font-size:.8rem;color:rgba(255,255,255,.3);font-weight:300;
  transition:color .25s;
}
.footer-links a:hover{color:var(--gold)}
.contact-lines{display:flex;flex-direction:column;gap:.85rem}
.cline{display:flex;align-items:flex-start;gap:.65rem}
.cline svg{width:13px;height:13px;fill:var(--gold);flex-shrink:0;margin-top:3px;opacity:.7}
.cline span{font-size:.78rem;color:rgba(255,255,255,.3);font-weight:300;line-height:1.55}
.footer-bottom{
  display:flex;align-items:center;justify-content:space-between;
  padding-top:1.75rem;border-top:1px solid rgba(255,255,255,.05);
  flex-wrap:wrap;gap:1rem;
}
.footer-copy{font-size:.72rem;color:rgba(255,255,255,.2);font-weight:300}
.by-ddm{color:var(--gold);transition:opacity .25s}
.by-ddm:hover{opacity:.75}
.footer-policy{display:flex;gap:1.5rem}
.footer-policy a{font-size:.72rem;color:rgba(255,255,255,.2);font-weight:300;transition:color .25s}
.footer-policy a:hover{color:var(--gold)}

/* ─────────────────────────────────────────────
   WHATSAPP FLOAT BUTTON
───────────────────────────────────────────── */
.whatsapp-btn{
  position:fixed;bottom:2rem;right:2rem;z-index:500;
  width:56px;height:56px;border-radius:50%;
  background:#25D366;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 24px rgba(37,211,102,.4);
  transition:transform .3s var(--ease),box-shadow .3s;
  text-decoration:none;
}
.whatsapp-btn:hover{transform:scale(1.1);box-shadow:0 8px 32px rgba(37,211,102,.5)}
.whatsapp-btn svg{width:28px;height:28px;fill:#fff;flex-shrink:0}

/* ─────────────────────────────────────────────
   RESPONSIVE — 1100px
───────────────────────────────────────────── */
@media(max-width:1100px){
  .bene-grid{grid-template-columns:1fr 1fr}
  .bene-item:nth-child(2){border-right:none}
  .bene-item:nth-child(3){border-right:1px solid rgba(45,11,14,.1)}
  .bene-item:nth-child(4){border-right:none}
  .bene-item:nth-child(1),.bene-item:nth-child(2){border-bottom:1px solid rgba(45,11,14,.1)}
  .footer-top{grid-template-columns:1fr 1fr}
}

/* ─────────────────────────────────────────────
   RESPONSIVE — 900px
───────────────────────────────────────────── */
@media(max-width:900px){
  .sobre-inner,.contato-inner,.faq-inner,.como-inner{grid-template-columns:1fr;gap:3.5rem}
  .bene-header{grid-template-columns:1fr;gap:1.5rem}
  .depo-header{flex-direction:column;align-items:flex-start;gap:1rem}
  .depo-header p{text-align:left;max-width:100%}
  .planos-grid{grid-template-columns:1fr}
  .plano:not(:last-child){border-bottom:1px solid rgba(200,164,90,.12)}
  .plano{border-right:none;border-bottom:1px solid rgba(200,164,90,.12)}
  .plano:last-child{border-bottom:none}
}

/* ─────────────────────────────────────────────
   RESPONSIVE — 768px (mobile)
───────────────────────────────────────────── */
@media(max-width:768px){
  .nav-links,.nav-cta{display:none}
  .burger{display:flex}
  .bene-grid{grid-template-columns:1fr}
  .bene-item{border-right:none !important;border-bottom:1px solid rgba(45,11,14,.08)}
  .depo-grid{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr;text-align:center}
  .footer-brand p{max-width:100%}
  .footer-socials{justify-content:center}
  .footer-links{align-items:center}
  .footer-bottom{justify-content:center}
  .strip-track{animation-duration:18s}
  .hero-vertical,.hero-scroll-line{display:none}
  .logo img{height:56px}
  #hero{min-height:662px;height:auto;padding-bottom:80px}
  .hero-content{padding-top:7rem;padding-bottom:4rem}
  .hero-bg{
    background:
      linear-gradient(to bottom, rgba(10,2,4,.5) 0%, rgba(10,2,4,.65) 100%),
      url('banner-vinho-mobile.png') center/cover no-repeat;
  }
  .hero-sub{font-size:.85rem}
  .hero-actions .btn{font-size:.72rem;padding:.75rem 1.5rem}
  .sobre-img img {width: inherit;height: inherit;}
}

/* ─────────────────────────────────────────────
   RESPONSIVE — 480px
───────────────────────────────────────────── */
@media(max-width:480px){
  .hero-title{font-size:2.6rem}
  .wrap{padding:0 1.25rem}
  .form-box{padding:2rem 1.5rem}
  .logo img{height:48px}
  .sobre-img img {width: inherit;height: inherit;}
}
