/* ============================================================
   MAPA DA MINA — Landing Page de Franquias
   Paleta: VINHO (#8E2433) + CREME — com acentos DOURADOS de luxo
   ============================================================ */

:root {
  /* Marca */
  --wine:         #8E2433;
  --wine-soft:    #A8394B;
  --wine-deep:    #6E1C29;
  --wine-deepest: #531420;

  /* Dourado — toque de luxo */
  --gold:         #C9A24B;
  --gold-light:   #E8CB78;
  --gold-deep:    #9C7A2E;
  --gold-grad:    linear-gradient(135deg, #F2DC98 0%, #D4A94A 40%, #C9A24B 65%, #A07928 100%);
  --gold-grad-soft: linear-gradient(135deg, #E5CC7A, #B9922A);
  --gold-line:    rgba(201,162,75,.28);
  --gold-line-2:  rgba(201,162,75,.14);
  --gold-glow:    0 16px 40px rgba(201,162,75,.22);

  /* Claros */
  --cream:        #F5ECDD;
  --cream-2:      #FBF5EC;
  --paper:        #FCFAF6;
  --white:        #FFFFFF;

  /* Escuros (depoimentos / rodapé) */
  --dark:         #141217;
  --dark-2:       #1E1B22;

  /* Texto em fundo claro */
  --ink:          #271F22;
  --body:         #5D555B;
  --body-2:       #8A828A;

  /* Texto em fundo vinho / escuro */
  --on-wine:      #F8F1E6;
  --on-wine-mut:  rgba(248,241,230,.78);
  --on-wine-soft: rgba(248,241,230,.55);

  /* Linhas */
  --line:         rgba(39,31,34,.12);
  --line-2:       rgba(39,31,34,.07);
  --line-cream:   rgba(248,241,230,.20);
  --line-cream-2: rgba(248,241,230,.10);

  --star:         #D4A84A;

  /* Layout */
  --maxw:         1180px;
  --radius:       16px;
  --radius-lg:    22px;
  --shadow:       0 22px 50px rgba(39,20,25,.14);
  --shadow-soft:  0 10px 26px rgba(39,20,25,.08);

  --font: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* ------------------------------------------------------------
     IMAGEM DE FUNDO DO HERO (banner do topo do site)
     Para trocar o banner: coloque o novo arquivo dentro de
     assets/img/ e troque o nome do arquivo na linha abaixo.
     Não precisa mexer em mais nada — o resto da página se
     ajusta sozinho (overlay, texto, responsivo etc).
     ------------------------------------------------------------ */
  --hero-banner-img: url('../img/banner-hero.jpg');
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--paper);
  color: var(--body);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

/* ---------- Tipografia ---------- */
h1, h2, h3, h4 { font-family: var(--font); font-weight: 800; line-height: 1.1; color: var(--ink); letter-spacing: -.01em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .74rem; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-deep); margin: 0 0 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold-grad); display: inline-block; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 26px; height: 2px; background: var(--gold-grad); display: inline-block; }

.section-title { font-size: clamp(1.9rem, 4.2vw, 3rem); color: var(--wine); margin: 0 0 18px; font-weight: 800; }
.hl { color: inherit; }
.lead { color: var(--body); font-size: 1.05rem; max-width: 62ch; }

.section { padding: clamp(58px, 8vw, 104px) 0; position: relative; }
.section.center { text-align: center; }
.section.center .lead { margin-inline: auto; }

/* ---------- Fundos de seção ---------- */
.sec-cream { background: var(--cream); }
.sec-white { background: var(--paper); }
.sec-wine {
  background:
    radial-gradient(900px 480px at 85% 0%, var(--wine-soft), transparent 60%),
    linear-gradient(135deg, #99293A 0%, var(--wine) 45%, var(--wine-deep) 100%);
  color: var(--on-wine);
}
.sec-dark { background: var(--dark); color: var(--on-wine); }

.sec-wine .section-title, .sec-dark .section-title { color: var(--on-wine); }
.sec-wine .eyebrow, .sec-dark .eyebrow { color: var(--gold-light); }
.sec-wine .eyebrow::before, .sec-wine .eyebrow::after,
.sec-dark .eyebrow::before, .sec-dark .eyebrow::after { background: var(--gold-grad); }
.sec-wine .lead, .sec-dark .lead { color: var(--on-wine-mut); }

/* Emblema (PNG real -> cor via máscara) */
.emblem {
  background: linear-gradient(135deg, var(--wine-soft), var(--wine));
  -webkit-mask: url("../img/emblema.png") center / contain no-repeat;
          mask: url("../img/emblema.png") center / contain no-repeat;
  flex: none;
}
/* Variante dourada — usada em fundos escuros/vinho */
.emblem.gold { background: var(--gold-grad); filter: drop-shadow(0 4px 14px rgba(201,162,75,.3)); }
.emblem.cream { background: var(--on-wine); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font); font-weight: 700; font-size: .92rem; letter-spacing: .01em;
  padding: 15px 26px; border-radius: 100px; cursor: pointer; border: 1.6px solid transparent;
  transition: transform .25s, box-shadow .25s, background .25s, color .25s, border-color .25s;
  text-align: center;
}
.btn svg { width: 18px; height: 18px; }
.btn-lg { padding: 17px 30px; font-size: .98rem; }
.btn-block { width: 100%; }

.btn-wine { background: var(--wine); color: var(--on-wine); box-shadow: var(--shadow-soft); border-color: transparent; }
.btn-wine:hover { background: var(--wine-deep); transform: translateY(-3px); box-shadow: 0 16px 32px rgba(142,36,51,.32); }

/* Botão dourado — principal nos fundos vinho */
.btn-gold { background: var(--gold-grad); color: #2E1A08; border-color: transparent; box-shadow: var(--gold-glow); font-weight: 800; }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 20px 48px rgba(201,162,75,.36); filter: brightness(1.05); }

.btn-cream { background: var(--on-wine); color: var(--wine); font-weight: 700; }
.btn-cream:hover { background: #fff; transform: translateY(-3px); box-shadow: 0 16px 34px rgba(0,0,0,.22); }

.btn-outline-cream { background: transparent; border-color: var(--line-cream); color: var(--on-wine); }
.btn-outline-cream:hover { border-color: var(--on-wine); background: rgba(248,241,230,.08); transform: translateY(-3px); }

.btn-outline-wine { background: transparent; border-color: var(--wine); color: var(--wine); }
.btn-outline-wine:hover { background: var(--wine); color: var(--on-wine); transform: translateY(-3px); }

.btn-wpp { background: #1faa55; color: #fff; border-color: #1faa55; }
.btn-wpp:hover { background: #1c994d; transform: translateY(-3px); box-shadow: 0 16px 30px rgba(31,170,85,.3); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(142,36,51,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-cream-2);
  transition: box-shadow .25s, background .25s;
}
.site-header.scrolled { background: rgba(110,28,41,.97); box-shadow: 0 8px 26px rgba(0,0,0,.22); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 86px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .emblem { width: 36px; height: 36px; }
.brand .brand-name {
  font-weight: 800; font-size: 1.08rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--on-wine); line-height: 1;
}
.brand img { display: block; }
.header-logo {
  height: 82px;
  width: auto;
  filter: brightness(0) invert(1);
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: .8rem; font-weight: 600; letter-spacing: .03em; color: var(--on-wine-mut); text-transform: uppercase; transition: color .2s; }
.nav-links a:hover { color: var(--on-wine); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 11px 20px; font-size: .8rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; padding: clamp(32px, 4vw, 56px) 0 clamp(36px, 4vw, 60px); }

/* Banner hero — imagem de fundo com overlay (degradê vinho) para
   garantir que o texto branco/dourado continue legível por cima
   de qualquer foto usada como fundo. Para trocar a imagem, veja
   a variável --hero-banner-img lá em cima, no :root. */
.hero-banner {
  background:
    linear-gradient(90deg,
      rgba(110,28,41,.97) 0%,
      rgba(110,28,41,.88) 42%,
      rgba(110,28,41,.32) 68%,
      rgba(110,28,41,.0) 100%),
    var(--hero-banner-img) center / cover no-repeat;
}
.hero-banner::after { display: none; }

.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.hero-banner .hero-grid { grid-template-columns: 1fr; }
.hero-banner .hero-copy { max-width: 460px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 14px;
  border: 1px solid var(--gold-line); border-radius: 100px; background: rgba(201,162,75,.08);
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-light); font-weight: 700; margin-bottom: 16px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(201,162,75,.22); }

.hero h1 { font-size: clamp(1.6rem, 3.2vw, 2.6rem); color: var(--on-wine); margin: 0 0 14px; }
.hero h1 .big { display: block; font-size: clamp(2rem, 5vw, 3.6rem); line-height: .96; margin: 4px 0; color: #fff; }
.hero p.sub { font-size: .95rem; color: var(--on-wine-mut); max-width: 54ch; margin: 0 0 12px; }
.hero .support { font-size: .86rem; color: var(--on-wine-soft); border-left: 2px solid var(--gold); padding-left: 14px; max-width: 52ch; margin: 0 0 22px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-banner .hero-cta .btn-lg { padding: 14px 20px; font-size: .85rem; white-space: nowrap; }

/* Painel visual do hero (cartão creme) */
.hero-visual {
  position: relative; aspect-ratio: 4 / 4.3; border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.5);
  background: linear-gradient(165deg, #FFFFFF 0%, var(--cream) 100%);
  box-shadow: var(--shadow); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; overflow: hidden;
}
.hero-visual::before { content: ""; position: absolute; top: -70px; width: 320px; height: 320px; border-radius: 50%; background: var(--wine); filter: blur(80px); opacity: .12; }
.hero-visual .emblem { width: clamp(110px, 17vw, 172px); height: clamp(110px, 17vw, 172px); position: relative; z-index: 2; }
.hero-visual .hv-year { position: relative; z-index: 2; font-weight: 800; font-size: 2.4rem; color: var(--wine); line-height: 1; letter-spacing: -.02em; }
.hero-visual .hv-word { position: relative; z-index: 2; font-weight: 800; letter-spacing: .26em; text-transform: uppercase; font-size: 1.05rem; color: var(--ink); }
.hero-visual .hv-sub { position: relative; z-index: 2; font-size: .7rem; letter-spacing: .26em; color: var(--wine); text-transform: uppercase; font-weight: 600; }
.hero-photo {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: inherit;
}

.hero-float {
  position: absolute; bottom: 16px; left: 16px; right: 16px; z-index: 3; display: flex; gap: 12px; align-items: center;
  padding: 13px 16px; border-radius: 14px;
  background: linear-gradient(135deg, #8E2433, #6E1C29);
  border: 1px solid var(--gold-line); color: var(--on-wine);
}

/* Badge de credibilidade inline (usado no hero-banner sem card visual) */
.hero-float-inline {
  position: static; margin-top: 28px;
  display: inline-flex; width: auto; max-width: 300px;
  border-radius: 14px; background: rgba(110,28,41,.72);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-line);
}
.hero-float .hf-num {
  font-weight: 800; font-size: 1.7rem; line-height: 1;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-float .hf-txt { font-size: .72rem; color: var(--on-wine-mut); letter-spacing: .02em; }

/* ============================================================
   BARRA DE CREDIBILIDADE (faixa vinho)
   ============================================================ */
/* ============================================================
   FAIXA DE SELOS
   ============================================================ */
.seals {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.seals-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 36px;
}
.seals-label {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--body-2);
  white-space: nowrap;
}
.seal-divider {
  width: 1px; height: 48px;
  background: var(--line);
  flex: none;
}
.seal-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(39,20,25,.12));
  transition: transform .25s, filter .25s;
  flex: none;
}
.seal-img:hover { transform: scale(1.07); filter: drop-shadow(0 4px 12px rgba(39,20,25,.2)); }

@media (max-width: 620px) {
  .seal-divider { display: none; }
  .seal-img { height: 58px; }
}

/* ============================================================
   BARRA DE CREDIBILIDADE
   ============================================================ */
.cred { padding: 0; }
.cred .container { padding-block: 0; }
.cred-band {
  margin: 0; border-radius: 0; display: grid; grid-template-columns: repeat(4, 1fr);
}
.cred-item { padding: 34px 24px; text-align: center; border-right: 1px solid var(--line-cream-2); }
.cred-item:last-child { border-right: 0; }
.cred-item .ci-num {
  font-weight: 800; font-size: clamp(2rem, 3.4vw, 2.7rem); line-height: 1; margin-bottom: 6px;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.cred-item .ci-label { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--on-wine-mut); }

/* ============================================================
   SPLIT genérico
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }

.problem-card {
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; background: var(--white); box-shadow: var(--shadow-soft);
}
.problem-card p { color: var(--body); margin: 0 0 16px; }
.problem-card p:last-child { margin: 0; }
.problem-card .accent { color: var(--ink); font-weight: 600; border-left: 3px solid var(--gold); padding-left: 16px; }

/* ============================================================
   DIFERENCIAIS + FORM
   ============================================================ */
.offer-layout { display: grid; grid-template-columns: 1.35fr .9fr; gap: 44px; align-items: start; }
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.diff-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; background: var(--white);
  box-shadow: var(--shadow-soft); transition: transform .25s, box-shadow .25s, border-color .25s;
}
.diff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-line); }
.diff-ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(201,162,75,.1); border: 1px solid var(--gold-line-2); color: var(--gold-deep); margin-bottom: 15px; }
.diff-ico svg { width: 23px; height: 23px; }
.diff-card h3 { font-size: 1rem; font-weight: 700; color: var(--ink); margin: 0 0 8px; line-height: 1.3; }
.diff-card p { font-size: .9rem; color: var(--body); margin: 0; }

/* Formulário */
.form-card {
  position: sticky; top: 100px; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 28px; background: var(--white); box-shadow: var(--shadow);
}
.form-card h3 { font-size: 1.45rem; color: var(--wine); margin: 0 0 8px; }
.form-card .form-sub { font-size: .9rem; color: var(--body); margin: 0 0 20px; }
.field { margin-bottom: 13px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field label { display: block; font-size: .76rem; font-weight: 600; color: var(--body); margin-bottom: 6px; }
.field label .req { color: var(--wine); }
.field input, .field select {
  width: 100%; padding: 13px 14px; border-radius: 10px; border: 1.4px solid var(--line);
  background: var(--cream-2); color: var(--ink); font-family: var(--font); font-size: .92rem;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input::placeholder { color: var(--body-2); }
.field input:focus, .field select:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(201,162,75,.14); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23C9A24B' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-card .btn { margin-top: 8px; }
.form-secure { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; font-size: .76rem; color: var(--body-2); }
.form-secure svg { width: 14px; height: 14px; color: var(--wine); }
.form-success { display: none; text-align: center; padding: 16px; border-radius: 12px; background: rgba(31,170,85,.1); border: 1px solid rgba(31,170,85,.34); color: #1c8a47; font-size: .9rem; margin-bottom: 14px; font-weight: 600; }

/* ============================================================
   MODELOS DE NEGÓCIO
   ============================================================ */
.models-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 820px; margin-inline: auto; }
.model-card { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-soft); transition: transform .3s, box-shadow .3s; }
.model-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.model-card.featured { border-color: var(--gold); box-shadow: var(--gold-glow); }
.model-top { position: relative; height: 148px; display: grid; place-items: center; background: linear-gradient(160deg, #9A2A3A, var(--wine-deep)); }
.model-top .emblem { width: 54px; height: 54px; }
.model-top-photo { background: none; padding: 0; overflow: hidden; }
.model-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.model-tag { position: absolute; top: 14px; right: 14px; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: #2E1A08; background: var(--gold-grad); padding: 5px 11px; border-radius: 100px; }
.model-body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; text-align: left; }
.model-body h3 { font-size: 1.35rem; color: var(--ink); margin: 0 0 6px; }
.model-body .mb-for { font-size: .86rem; color: var(--gold-deep); margin: 0 0 18px; font-weight: 600; }
.model-feats { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 10px; }
.model-feats li { display: flex; gap: 10px; font-size: .9rem; color: var(--body); }
.model-feats li svg { width: 17px; height: 17px; color: var(--gold); flex: none; margin-top: 2px; }
.model-ideal { margin-top: auto; font-size: .82rem; color: var(--body-2); border-top: 1px solid var(--line); padding-top: 16px; }
.model-ideal b { color: var(--ink); }

/* ============================================================
   NÚMEROS / OPORTUNIDADE (faixa vinho)
   ============================================================ */
.numbers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.num-card { border: 1px solid rgba(255,255,255,.6); border-radius: var(--radius); padding: 26px 24px; background: var(--cream-2); display: flex; align-items: center; gap: 16px; box-shadow: 0 14px 30px rgba(39,20,25,.2); }
.num-ico { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: rgba(201,162,75,.14); border: 1px solid var(--gold-line); color: var(--gold); flex: none; }
.num-ico svg { width: 24px; height: 24px; }
.num-card .nc-num {
  font-weight: 800; font-size: 1.7rem; line-height: 1; margin-bottom: 4px;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.num-card .nc-label { font-size: .78rem; color: var(--body); text-transform: uppercase; letter-spacing: .06em; }
.disclaimer { margin-top: 28px; font-size: .8rem; color: var(--on-wine-soft); text-align: center; max-width: 75ch; margin-inline: auto; line-height: 1.6; }

/* ============================================================
   DEPOIMENTOS (faixa escura)
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 28px; }
.testi-card { border: 1px solid var(--line-cream-2); border-radius: var(--radius-lg); padding: 28px 26px; background: var(--dark-2); }
.testi-stars { color: var(--star); letter-spacing: 3px; margin-bottom: 14px; font-size: .9rem; }
.testi-card p { color: var(--on-wine); font-size: .95rem; margin: 0 0 22px; }
.testi-person { display: flex; align-items: center; gap: 13px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 1rem; color: var(--on-wine); background: linear-gradient(135deg, var(--wine-soft), var(--wine)); flex: none; }
.testi-person .tp-name { font-weight: 700; color: var(--on-wine); font-size: .92rem; }
.testi-person .tp-role { font-size: .78rem; color: var(--on-wine-mut); }
.testi-videos { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.testi-video-wrap {
  position: relative; display: block; border-radius: var(--radius); overflow: hidden;
  background: var(--dark-2); aspect-ratio: 16/9; cursor: pointer;
}
.testi-video-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s; }
.testi-video-wrap:hover img { transform: scale(1.04); }
.yt-play {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(0,0,0,.28); transition: background .25s;
  border: 0; padding: 0; cursor: pointer; width: 100%;
}
.testi-video-wrap:hover .yt-play { background: rgba(0,0,0,.10); }
.yt-play svg { width: 68px; height: 48px; filter: drop-shadow(0 4px 14px rgba(0,0,0,.5)); transition: transform .2s; }
.testi-video-wrap:hover .yt-play svg { transform: scale(1.1); }

.testi-banner { border: 1px solid var(--line-cream-2); border-radius: var(--radius-lg); padding: 28px 32px; background: var(--dark-2); display: flex; align-items: center; gap: 22px; }
.testi-banner .tb-ico { width: 56px; height: 56px; flex: none; }
.testi-banner p { margin: 0; color: var(--on-wine-mut); font-size: .96rem; }
.testi-banner b { color: var(--on-wine); }

/* ============================================================
   POR QUE / 30 ANOS (creme)
   ============================================================ */
.why-visual { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.why-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.why-badge {
  position: absolute; bottom: 20px; left: 20px;
  display: flex; align-items: center; gap: 10px;
  background: rgba(110,28,41,.88); backdrop-filter: blur(8px);
  border: 1px solid var(--gold-line); border-radius: 14px;
  padding: 12px 20px; color: var(--on-wine);
}
.why-badge-num {
  font-weight: 800; font-size: 2.2rem; line-height: 1;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.why-badge-txt { font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 600; color: var(--on-wine-mut); }
.why p { color: var(--body); margin: 0 0 18px; }
.why-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.why-list li { display: flex; gap: 12px; color: var(--ink); font-size: .98rem; }
.why-list li svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 3px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 860px; margin-inline: auto; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; background: var(--white); overflow: hidden; box-shadow: var(--shadow-soft); transition: border-color .25s; }
.faq-item.open { border-color: var(--gold-line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 21px 24px; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-family: var(--font); font-weight: 700; font-size: 1rem; color: var(--ink); }
.faq-q .faq-plus { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--gold-line); display: grid; place-items: center; color: var(--gold-deep); transition: transform .3s, background .3s, color .3s; }
.faq-item.open .faq-plus { transform: rotate(45deg); background: var(--gold-grad); color: #2E1A08; border-color: var(--gold); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 24px 22px; color: var(--body); font-size: .94rem; }

/* ============================================================
   CTA FINAL (faixa vinho)
   ============================================================ */
.cta-box { text-align: center; }
.cta-box .emblem { width: 62px; height: 62px; margin: 0 auto 20px; }
.cta-box h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); color: var(--on-wine); margin: 0 0 16px; }
.cta-box p { color: var(--on-wine-mut); max-width: 60ch; margin: 0 auto 30px; }
.cta-box .hero-cta { justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--dark); color: var(--on-wine-mut); padding: 54px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 38px; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand .brand .emblem { width: 40px; height: 40px; }
.footer-brand .brand .brand-name { color: var(--on-wine); }
.footer-brand p { color: var(--on-wine-mut); font-size: .9rem; max-width: 38ch; }
.footer-col h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--on-wine); margin: 6px 0 16px; font-weight: 700; }
.footer-col a, .footer-col span { display: block; color: var(--on-wine-mut); font-size: .9rem; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--on-wine); }
.footer-socials { display: flex; gap: 12px; margin-top: 16px; }
.footer-socials a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line-cream-2); display: grid; place-items: center; color: var(--on-wine-mut); transition: all .2s; }
.footer-socials a:hover { border-color: var(--gold); color: var(--gold-light); }
.footer-socials svg { width: 18px; height: 18px; }
.footer-legal { border-top: 1px solid var(--line-cream-2); padding-top: 24px; }
.footer-legal .copyright { font-size: .82rem; color: var(--on-wine-soft); margin-bottom: 12px; }
.footer-legal .copyright a { color: var(--on-wine-mut); }
.footer-legal .legal-note { font-size: .76rem; color: var(--on-wine-soft); line-height: 1.6; max-width: 92ch; }

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.wpp-float { position: fixed; bottom: 24px; right: 24px; z-index: 60; width: 58px; height: 58px; border-radius: 50%; background: #1faa55; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(31,170,85,.45); transition: transform .25s; animation: pulse 2.6s infinite; }
.wpp-float:hover { transform: scale(1.08); }
.wpp-float svg { width: 30px; height: 30px; color: #fff; }
@keyframes pulse {
  0% { box-shadow: 0 12px 30px rgba(31,170,85,.45), 0 0 0 0 rgba(31,170,85,.5); }
  70% { box-shadow: 0 12px 30px rgba(31,170,85,.45), 0 0 0 16px rgba(31,170,85,0); }
  100% { box-shadow: 0 12px 30px rgba(31,170,85,.45), 0 0 0 0 rgba(31,170,85,0); }
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .hero-banner .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 400px; margin-inline: auto; width: 100%; }
  .offer-layout { grid-template-columns: 1fr; }
  .form-card { position: static; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .models-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 620px) {
  .cred-band { grid-template-columns: 1fr 1fr; }
  .cred-item:nth-child(2) { border-right: 0; }
  .cred-item:nth-child(1), .cred-item:nth-child(2) { border-bottom: 1px solid var(--line-cream-2); }
  .diff-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .testi-videos { grid-template-columns: 1fr; }
  .testi-banner { flex-direction: column; text-align: center; }
  .nav-cta .btn span { display: none; }
}

/* ============================================================
   PÁGINA DE OBRIGADO (obrigado.html)
   Só o essencial pra montar o layout dividido (foto + painel).
   As cores, tipografia e o botão vêm das classes de marca que já
   existem acima (.sec-wine, .eyebrow, .section-title, .lead,
   .btn / .btn-wpp) — nada de estilo novo pra elas aqui.
   ============================================================ */
.thanks-page { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }

.thanks-visual {
  margin: 0;
  background: var(--hero-banner-img) center / cover no-repeat;
  min-height: 320px;
}

.thanks-panel { display: flex; align-items: center; }

.thanks-container { max-width: 560px; }

.thanks-header { text-align: right; margin: 0 0 40px; }
.thanks-logo { height: 40px; width: auto; }

.thanks-title { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 22px; }

.thanks-cta { margin-top: 28px; }

@media (max-width: 860px) {
  .thanks-page { grid-template-columns: 1fr; }
  .thanks-visual { min-height: 260px; }
  .thanks-header { text-align: left; margin-bottom: 24px; }
}
