/* ===== EÓLA — Design tokens (Guia de Marca v2.0) ===== */
:root {
  --oliva: #8A8963;
  --marfim: #F1EAE2;
  --oliva-profundo: #3F4034;
  --areia: #D8D0C3;
  --argila: #B79C80;
  --branco: #FFFFFF;

  --font-serif: "EB Garamond", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", -apple-system, sans-serif;

  --container: 1200px;
  --gutter: clamp(24px, 5vw, 84px);

  --ease-eola: cubic-bezier(.22, 1, .36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--marfim);
  color: var(--oliva-profundo);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

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

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

::selection { background: var(--oliva); color: var(--marfim); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ===== Tipografia ===== */
h1, h2, h3, .serif { font-family: var(--font-serif); font-weight: 600; color: var(--oliva-profundo); }

h1 { font-size: clamp(40px, 6vw, 84px); line-height: 1.05; letter-spacing: -0.01em; }
h2 { font-size: clamp(32px, 4.2vw, 56px); line-height: 1.12; }
h3 { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.25; }

.label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oliva);
}

.lede { font-size: clamp(17px, 1.6vw, 20px); color: var(--oliva-profundo); opacity: .85; max-width: 640px; }

.eyebrow-line { display: inline-flex; align-items: center; gap: 12px; }
.eyebrow-line::before { content: ""; width: 32px; height: 1px; background: var(--oliva); display: inline-block; }

/* ===== Custom cursor ===== */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--oliva);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease-eola), height .3s var(--ease-eola), background .3s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 38px; height: 38px;
  border: 1px solid var(--oliva);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .4s var(--ease-eola), height .4s var(--ease-eola), border-color .4s, opacity .4s;
}
.cursor.is-hover { width: 6px; height: 6px; }
.cursor-ring.is-hover { width: 64px; height: 64px; border-color: var(--argila); }
@media (max-width: 860px) { .cursor, .cursor-ring { display: none; } body { cursor: auto; } }

/* ===== Botões ===== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 34px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  border: 1px solid transparent;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary { background: var(--oliva-profundo); color: var(--marfim); }
.btn-primary::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--oliva);
  transform: translateY(101%);
  transition: transform .5s var(--ease-eola);
  z-index: -1;
}
.btn-primary:hover::before { transform: translateY(0); }

.btn-ghost { border-color: var(--oliva-profundo); color: var(--oliva-profundo); }
.btn-ghost:hover { background: var(--oliva-profundo); color: var(--marfim); }

.btn-arrow { transition: transform .35s var(--ease-eola); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 24px 0;
  transition: background .4s var(--ease-eola), padding .4s var(--ease-eola), border-color .4s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(241, 234, 226, .85);
  backdrop-filter: blur(12px);
  padding: 16px 0;
  border-color: var(--areia);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }

.logo-mark { display: flex; align-items: center; gap: 10px; }
.logo-mark img { width: 30px; height: 30px; }
.logo-mark .wordmark { font-family: var(--font-serif); font-size: 22px; letter-spacing: .08em; color: var(--marfim); font-weight: 600; transition: color .4s var(--ease-eola); }

.nav-links { display: flex; gap: 40px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--marfim); position: relative; transition: color .4s var(--ease-eola); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 1px; background: var(--argila);
  transition: width .35s var(--ease-eola);
}
.nav-links a:hover::after { width: 100%; }
.header-cta { display: none; border-color: var(--marfim); color: var(--marfim); transition: color .4s var(--ease-eola), border-color .4s var(--ease-eola), background .3s; }
@media (min-width: 860px) { .header-cta { display: inline-flex; } }
@media (max-width: 860px) { .nav-links { display: none; } }

.site-header.is-scrolled .logo-mark .wordmark { color: var(--oliva); }
.site-header.is-scrolled .nav-links a { color: var(--oliva-profundo); }
.site-header.is-scrolled .nav-links a::after { background: var(--oliva); }
.site-header.is-scrolled .header-cta { border-color: var(--oliva-profundo); color: var(--oliva-profundo); }
.site-header.is-scrolled .header-cta:hover { background: var(--oliva-profundo); color: var(--marfim); }

/* ===== Progress bar ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--oliva); z-index: 600;
}

/* ===== Hero (vídeo pinado, quadro-a-quadro no scroll) ===== */
.hero-scrub {
  position: relative;
  height: 300vh;
  padding: 0;
}
.hero-pin {
  position: relative;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0; z-index: -4;
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1);
  transform-origin: center center;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: -2;
  background:
    /* dark pool directly behind the text block, for real contrast regardless of what's in the frame */
    radial-gradient(ellipse 62% 55% at 50% 42%, rgba(8,9,7,.6) 0%, rgba(8,9,7,0) 72%),
    /* top-to-bottom depth grade — near-black, not a mid-tone wash */
    linear-gradient(180deg, rgba(8,9,7,.62) 0%, rgba(10,11,9,.22) 20%, rgba(10,11,9,.3) 62%, rgba(6,7,5,.82) 100%),
    /* side vignette */
    linear-gradient(90deg, rgba(6,7,5,.4) 0%, rgba(6,7,5,.05) 50%, rgba(6,7,5,.3) 100%);
}
/* Fine film-grain texture for a premium, less "flat digital" feel */
.hero-grain {
  position: absolute; inset: 0; z-index: -1;
  opacity: .05;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* Radial vignette that clears at the center during the final-frame reveal, spotlighting the result */
.hero-vignette {
  position: absolute; inset: 0; z-index: -3;
  opacity: 0;
  background: radial-gradient(ellipse 65% 60% at 50% 46%, rgba(8,9,7,0) 0%, rgba(8,9,7,.5) 65%, rgba(4,5,4,.86) 100%);
}

.hero-result {
  position: absolute; left: 50%; bottom: 110px; z-index: 3;
  transform: translate(-50%, 28px);
  opacity: 0;
  text-align: center; width: 100%; max-width: 720px; padding: 0 24px;
}
.hero-result .label {
  color: var(--argila); display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.hero-result .label::before, .hero-result .label::after {
  content: ""; width: 28px; height: 1px; background: var(--argila);
}
.hero-result h2 {
  color: var(--marfim); font-size: clamp(28px, 4vw, 46px);
  text-shadow: 0 4px 30px rgba(0,0,0,.4);
}

.hero-copy-centered {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow { margin-bottom: 26px; text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.hero-eyebrow.label { color: var(--argila); }
.hero-eyebrow.eyebrow-line { justify-content: center; }
.hero-eyebrow.eyebrow-line::before { background: var(--argila); }
.hero-pin h1 {
  margin-bottom: 28px; color: var(--marfim);
  font-size: clamp(38px, 5.4vw, 76px); line-height: 1.1;
  text-shadow: 0 10px 50px rgba(0,0,0,.55), 0 2px 14px rgba(0,0,0,.5);
}
.hero-pin h1 em { font-style: italic; color: var(--argila); }
.hero-copy .lede {
  color: var(--marfim); opacity: .9; margin-left: auto; margin-right: auto;
  text-shadow: 0 2px 18px rgba(0,0,0,.5);
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 44px; flex-wrap: wrap; }
.hero-trust { font-size: 13px; color: var(--marfim); opacity: .7; text-shadow: 0 2px 10px rgba(0,0,0,.5); }
.hero-pin .btn-primary {
  background: var(--marfim); color: var(--oliva-profundo);
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
.hero-pin .btn-primary::before { background: var(--argila); }

.hero-scroll-cue {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--argila);
}
.hero-scroll-cue .line { width: 1px; height: 40px; background: rgba(241,234,226,.3); position: relative; overflow: hidden; }
.hero-scroll-cue .line::after {
  content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: var(--marfim);
  animation: scrollcue 2s ease-in-out infinite;
}
@keyframes scrollcue { 0% { top: -100%; } 60% { top: 100%; } 100% { top: 100%; } }

/* ===== Section shell ===== */
section { position: relative; padding: 140px 0; }
.section-inner-tight { padding: 100px 0; }
.section-marfim { background: var(--marfim); }
.section-areia { background: var(--areia); }
.section-dark { background: var(--oliva-profundo); color: var(--marfim); }
.section-dark h2, .section-dark h3 { color: var(--marfim); }
.section-dark .label { color: var(--argila); }
.section-dark .lede { color: var(--marfim); opacity: .75; }

.section-head { max-width: 720px; margin-bottom: 72px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .label { display: block; margin-bottom: 18px; }
.section-head h2 { margin-top: 10px; }
.section-head .lede { margin-top: 20px; }
.center .lede { margin-left: auto; margin-right: auto; }

.divider { width: 100%; height: 1px; background: var(--areia); }
.section-dark .divider { background: rgba(241,234,226,.15); }

/* ===== Dores (problema) ===== */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--areia); border: 1px solid var(--areia); }
.pain-card { background: var(--marfim); padding: 44px 36px; }
.pain-card .num { font-family: var(--font-serif); font-size: 15px; color: var(--argila); display: block; margin-bottom: 20px; }
.pain-card p { opacity: .85; }
@media (max-width: 860px) { .pain-grid { grid-template-columns: 1fr; } }

/* ===== Promessa / solução ===== */
.solution-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: center; }
@media (max-width: 980px) { .solution-layout { grid-template-columns: 1fr; } }
.solution-visual { position: relative; aspect-ratio: 3/4; border-radius: 4px; overflow: hidden; }
.solution-visual img { width: 100%; height: 100%; object-fit: cover; }
.solution-quote {
  font-family: var(--font-serif); font-style: italic; font-size: clamp(22px, 2.4vw, 30px);
  color: var(--oliva-profundo); margin: 32px 0; line-height: 1.4; border-left: 2px solid var(--oliva); padding-left: 28px;
}
.pillars { display: flex; flex-direction: column; gap: 0; margin-top: 20px; }
.pillar { display: flex; gap: 20px; padding: 24px 0; border-top: 1px solid var(--areia); }
.pillar:last-child { border-bottom: 1px solid var(--areia); }
.pillar .icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--oliva); display: flex; align-items: center; justify-content: center; color: var(--marfim); font-family: var(--font-serif); font-style: italic; }
.pillar h3 { font-size: 19px; margin-bottom: 6px; }
.pillar p { font-size: 15px; opacity: .8; }

/* ===== Como funciona / módulos ===== */
.modules { display: flex; flex-direction: column; }
.module-row {
  display: grid; grid-template-columns: 100px 1fr 1.3fr; gap: 32px; align-items: start;
  padding: 40px 0; border-top: 1px solid var(--areia);
  cursor: pointer;
}
.modules .module-row:last-child { border-bottom: 1px solid var(--areia); }
.module-row .m-num { font-family: var(--font-serif); font-size: 44px; color: var(--areia); transition: color .4s; }
.module-row:hover .m-num { color: var(--oliva); }
.module-row h3 { margin-bottom: 10px; }
.module-row .m-tag { display: block; margin-bottom: 10px; }
.module-row p { opacity: .8; font-size: 15px; max-width: 480px; }
@media (max-width: 860px) { .module-row { grid-template-columns: 1fr; gap: 12px; } }

/* ===== Galeria antes/depois ===== */
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 60px; }
@media (max-width: 860px) { .ba-grid { grid-template-columns: 1fr; } }

.ba-card { display: flex; flex-direction: column; gap: 14px; }
.ba-media {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 4px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  border: 1px solid var(--areia);
}
.ba-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}
.ba-before { z-index: 1; }
.ba-after {
  z-index: 2;
  clip-path: inset(0 0 0 50%);
}
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: var(--marfim);
  z-index: 3; transform: translateX(-50%);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.ba-handle-grip {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--marfim); color: var(--oliva-profundo);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; box-shadow: 0 4px 16px rgba(63,64,52,.25);
}
.ba-tag {
  position: absolute; bottom: 14px; z-index: 4;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  background: rgba(63,64,52,.75); color: var(--marfim);
}
.ba-tag-before { left: 14px; }
.ba-tag-after { right: 14px; }
.ba-caption { font-size: 14px; opacity: .7; }

/* ===== Bônus CRM (EOLA.IA) ===== */
.bonus-section {
  background: var(--oliva-profundo); color: var(--marfim);
  border-radius: 4px; position: relative; overflow: hidden;
  padding: 88px var(--gutter);
}
.bonus-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; border-radius: 100px;
  background: rgba(183,156,128,.18); border: 1px solid var(--argila); color: var(--argila);
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
}
.bonus-intro { max-width: 640px; margin-top: 22px; }
.bonus-intro h2 { color: var(--marfim); }
.bonus-intro .lede { color: var(--marfim); opacity: .78; margin-top: 18px; }

.bf-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(241,234,226,.14); margin-top: 56px; border-radius: 6px; overflow: hidden; }
@media (max-width: 980px) { .bf-grid { grid-template-columns: repeat(2, 1fr); } }
.bf-card { background: var(--oliva-profundo); padding: 34px 28px; transition: background .35s var(--ease-eola); }
.bf-card:hover { background: rgba(241,234,226,.05); }
.bf-icon { width: 30px; height: 30px; color: var(--argila); margin-bottom: 22px; }
.bf-card h3 { color: var(--marfim); font-size: 18px; margin-bottom: 8px; }
.bf-card p { font-size: 14px; color: var(--marfim); opacity: .68; line-height: 1.55; }

.bonus-value-band {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px 16px;
  margin-top: 56px; padding-top: 32px; border-top: 1px solid rgba(241,234,226,.16);
}
.bvb-label { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--marfim); opacity: .55; width: 100%; }
.bvb-price { font-family: var(--font-serif); font-style: italic; color: var(--argila); }
.bvb-price strong { font-size: 32px; font-weight: 600; }
.bvb-price span { font-size: 16px; opacity: .85; margin-left: 2px; }
.bvb-note { font-size: 14px; color: var(--marfim); opacity: .65; }

.bonus-section .btn { margin-top: 40px; background: var(--marfim); color: var(--oliva-profundo); }

/* ===== Prova social ===== */
.testimonial-track-wrap { overflow: hidden; margin-top: 20px; }
.testimonial-track { display: flex; gap: 28px; width: max-content; }
.t-card {
  width: 380px; flex-shrink: 0; background: var(--marfim); border: 1px solid var(--areia);
  border-radius: 4px; padding: 36px;
}
.t-card .stars { color: var(--argila); font-size: 14px; letter-spacing: 3px; margin-bottom: 20px; }
.t-card p { font-size: 15px; opacity: .85; margin-bottom: 28px; min-height: 96px; }
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; background: var(--areia); }
.t-avatar img { width: 100%; height: 100%; object-fit: cover; }
.t-author .name { font-weight: 600; font-size: 14px; }
.t-author .role { font-size: 13px; opacity: .6; }

.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 90px; }
.stat { text-align: center; }
.stat .num { font-family: var(--font-serif); font-size: clamp(38px, 4vw, 56px); color: var(--oliva); display: block; }
.stat .cap { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; opacity: .65; margin-top: 8px; }
@media (max-width: 860px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }

/* ===== Sobre a mentora ===== */
.about-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: center; }
@media (max-width: 980px) { .about-layout { grid-template-columns: 1fr; } }
.about-visual { aspect-ratio: 4/5; border-radius: 4px; overflow: hidden; position: relative; }
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.about-credentials { display: flex; gap: 40px; margin-top: 40px; flex-wrap: wrap; }
.credential .num { font-family: var(--font-serif); font-size: 32px; color: var(--oliva); display: block; }
.credential .cap { font-size: 13px; opacity: .65; margin-top: 4px; }

/* ===== Oferta / preço ===== */
.offer-card {
  max-width: 640px; margin: 0 auto; background: var(--marfim); border: 1px solid var(--oliva-profundo);
  border-radius: 4px; padding: 64px; position: relative;
}
.offer-badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--oliva-profundo); color: var(--marfim); font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; padding: 8px 22px; border-radius: 100px; white-space: nowrap;
}
.offer-price { text-align: center; margin: 32px 0; }
.offer-price .old { font-size: 18px; text-decoration: line-through; opacity: .5; display: block; margin-bottom: 6px; }
.offer-price .new { font-family: var(--font-serif); font-size: clamp(48px, 6vw, 72px); color: var(--oliva-profundo); }
.offer-price .new sup { font-size: 22px; vertical-align: super; }
.offer-price .cond { font-size: 13px; opacity: .6; margin-top: 8px; }
.offer-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin: 36px 0; }
.offer-list li { display: flex; gap: 14px; font-size: 15px; }
.offer-list li .check { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--oliva); color: var(--marfim); display: flex; align-items: center; justify-content: center; font-size: 11px; margin-top: 2px; }
.offer-list li.bonus-item strong { color: var(--argila); font-family: var(--font-serif); font-style: italic; }
.offer-card .btn { width: 100%; justify-content: center; margin-top: 12px; }
.offer-guarantee { display: flex; align-items: center; gap: 14px; margin-top: 28px; justify-content: center; font-size: 13px; opacity: .7; }

/* ===== Garantia ===== */
.guarantee-band { display: flex; align-items: center; gap: 48px; }
.guarantee-seal {
  flex-shrink: 0; width: 140px; height: 140px; border-radius: 50%; border: 1px solid var(--oliva);
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--font-serif); font-style: italic; font-size: 15px; color: var(--oliva); padding: 20px;
}
@media (max-width: 700px) { .guarantee-band { flex-direction: column; text-align: center; } }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--areia); }
.faq-list .faq-item:last-child { border-bottom: 1px solid var(--areia); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 28px 0; cursor: pointer; font-family: var(--font-serif); font-size: 19px; color: var(--oliva-profundo);
}
.faq-icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--oliva); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-icon::before { width: 14px; height: 1px; }
.faq-icon::after { width: 1px; height: 14px; transition: transform .35s var(--ease-eola); }
.faq-item.is-open .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease-eola); }
.faq-a-inner { padding-bottom: 28px; font-size: 15px; opacity: .8; max-width: 620px; }

/* ===== CTA final ===== */
.final-cta { text-align: center; }
.final-cta h2 { max-width: 780px; margin: 0 auto 30px; }
.final-cta .btn { margin-top: 10px; }

/* ===== Rodapé ===== */
footer { background: var(--oliva-profundo); color: var(--marfim); padding: 80px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid rgba(241,234,226,.14); }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .logo-mark .wordmark { color: var(--marfim); }
.footer-brand p { margin-top: 20px; opacity: .65; font-size: 14px; max-width: 320px; }
.footer-col h4 { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; opacity: .6; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; font-size: 14px; opacity: .85; }
.footer-col a:hover { opacity: .6; }

.footer-rights { padding: 26px 0; font-size: 13px; opacity: .55; border-top: 1px solid rgba(241,234,226,.14); margin-top: 0; }

.credit-bar { background: #000; padding: 18px 0; }
.credit-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.credit-text { color: #fff; font-size: 12px; letter-spacing: .04em; opacity: .8; }
.credit-text strong { opacity: 1; }
.credit-bar .credit-links { display: flex; gap: 18px; }
.credit-bar .credit-links a { color: #fff; opacity: .65; transition: color .3s, opacity .3s; display: flex; }
.credit-bar .credit-links a:hover { color: var(--argila); opacity: 1; }

/* ===== Reveal utilities (GSAP hooks) ===== */
.reveal { opacity: 0; transform: translateY(40px); }
.reveal-fade { opacity: 0; }
.reveal-scale { opacity: 0; transform: scale(.92); }

/* ===== Marquee (barra de logos/palavras) ===== */
.marquee-wrap { overflow: hidden; border-top: 1px solid var(--areia); border-bottom: 1px solid var(--areia); padding: 26px 0; }
.marquee-track { display: flex; gap: 60px; width: max-content; }
.marquee-track span { font-family: var(--font-serif); font-style: italic; font-size: 22px; color: var(--oliva); opacity: .55; white-space: nowrap; }
