/* ===== Design tokens (paleta da logo: verde folha + verde-petróleo) ===== */
:root {
  --green: #23a94e;        /* verde "Perto" */
  --green-600: #1c9243;
  --green-700: #167a38;
  --teal: #0f6b57;         /* verde-petróleo "24h" */
  --teal-700: #0a5443;
  --accent: #9d1a5e;       /* magenta complementar */
  --accent-600: #85164f;
  --accent-light: #e173a6; /* magenta claro p/ fundos escuros */
  --accent-soft: rgba(157, 26, 94, .10);
  --wpp: #25d366;
  --wpp-600: #1eb457;
  --ink: #0c211b;
  --ink-2: #2f4239;
  --muted: #6a7d75;
  --bg: #ffffff;
  --bg-soft: #f2f8f4;
  --line: #e3ece7;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px -20px rgba(13, 159, 110, .28);
  --shadow-soft: 0 10px 30px -18px rgba(14, 26, 22, .35);
  --max: 1150px;
  --font: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 22px; }
.container--narrow { max-width: 820px; }
.grad {
  background: linear-gradient(100deg, var(--teal), var(--green));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ===== Ícones SVG ===== */
.ic {
  width: 1.1em; height: 1.1em; fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  display: inline-block; vertical-align: -.18em; flex: none;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 15.5px; line-height: 1;
  padding: 15px 24px; border-radius: 999px; border: none; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn--wpp { background: var(--wpp); color: #fff; box-shadow: 0 12px 26px -12px rgba(37,211,102,.7); }
.btn--wpp:hover { background: var(--wpp-600); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.btn--sm { padding: 10px 16px; font-size: 14px; }
.btn--lg { padding: 18px 30px; font-size: 17px; }
.btn--block { width: 100%; }

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; }
.brand__mark {
  width: 38px; height: 38px; border-radius: 11px; color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--green));
  display: grid; place-items: center; box-shadow: var(--shadow-soft);
}
.brand__logo { height: 52px; width: auto; display: block; }
.brand__text { font-size: 22px; letter-spacing: -.02em; }
.brand__text b { color: var(--green); }
.brand__text--light { color: #fff; }
.brand__text--light b { color: #6ff0bb; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav > a:not(.btn) { font-weight: 600; color: var(--ink-2); font-size: 15px; transition: color .15s; }
.nav > a:not(.btn):hover { color: var(--accent); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative; overflow: visible; padding: 72px 0 110px;
  background-color: var(--bg-soft);
  background-image:
    radial-gradient(circle at 108% -14%, rgba(37,211,102,.26), transparent 44%),
    radial-gradient(circle at -6% 116%, rgba(157,26,94,.16), transparent 46%),
    radial-gradient(rgba(15,107,87,.05) 1px, transparent 1px);
  background-size: auto, auto, 24px 24px;
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 54px; align-items: center; }
.pill {
  display: inline-flex; align-items: center; gap: 7px; background: #fff; border: 1px solid rgba(157,26,94,.25);
  color: var(--accent); font-weight: 700; font-size: 13.5px; padding: 8px 15px; border-radius: 999px;
  box-shadow: var(--shadow-soft); margin-bottom: 20px;
}
.pill .ic { width: 16px; height: 16px; }
.hero h1 { font-size: clamp(32px, 5vw, 52px); line-height: 1.08; letter-spacing: -.03em; margin-bottom: 18px; }
.hero__lead { font-size: 18px; color: var(--ink-2); max-width: 560px; margin-bottom: 28px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero__badges { list-style: none; display: flex; flex-wrap: wrap; gap: 16px; font-size: 14.5px; color: var(--ink-2); font-weight: 600; }

/* Hero logo + highlight */
.hero__logo { height: 74px; width: auto; display: block; margin-bottom: 18px; }
.hl { color: var(--green); font-weight: 800; white-space: nowrap; }

/* Hero carousel */
.hero__card { display: flex; justify-content: center; }
.carousel { position: relative; width: 100%; max-width: 400px; margin: 0 auto; }
.carousel__viewport { overflow: hidden; border-radius: 22px; border: 5px solid #fff; box-shadow: var(--shadow); }
.carousel__track { display: flex; transition: transform .7s cubic-bezier(.6,.05,.2,.95); }
.carousel__slide { min-width: 100%; }
.carousel__slide img { width: 100%; aspect-ratio: 3 / 4; height: auto; object-fit: cover; display: block; }
.carousel__dots { display: flex; gap: 8px; justify-content: center; margin-top: 16px; }
.carousel__dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: #cfe0d8; cursor: pointer; padding: 0; transition: width .25s, background .25s; }
.carousel__dots button.is-active { background: var(--green); width: 26px; border-radius: 6px; }
.herophoto__badge {
  position: absolute; top: 14px; left: -14px; z-index: 3;
  background: linear-gradient(135deg, var(--teal), var(--green)); color: #fff;
  border-radius: 16px; padding: 10px 16px; text-align: center; box-shadow: var(--shadow);
}
.herophoto__badge b { display: block; font-size: 22px; line-height: 1; }
.herophoto__badge span { font-size: 11px; font-weight: 600; opacity: .92; }
.badge__dot {
  display: inline-block; width: 7px; height: 7px; margin-right: 5px; border-radius: 50%;
  background: #fff; vertical-align: middle; position: relative; top: -1px;
  animation: livepulse 1.6s ease-in-out infinite;
}
@keyframes livepulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,.7); opacity: 1; }
  70%  { box-shadow: 0 0 0 7px rgba(255,255,255,0); opacity: .45; }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); opacity: 1; }
}
/* Logo sobreposta ao carrossel (canto inferior direito, sem card) */
.hero__logocard {
  position: absolute; z-index: 5; right: -38px; bottom: -54px; width: 186px;
  transform: rotate(-3deg);
  filter: drop-shadow(0 26px 42px rgba(0,0,0,.38));
}
.hero__logocard img { width: 100%; height: auto; display: block; }

/* ===== Stats + destaque custo zero ===== */
.stats { margin-top: -42px; position: relative; z-index: 2; }
.stats__wrap { display: grid; grid-template-columns: .95fr 1.05fr; gap: 16px; }
.zerocost {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(135deg, var(--teal) 0%, var(--green) 46%, var(--accent) 100%);
  border-radius: var(--radius); padding: 30px 34px; box-shadow: 0 18px 50px -20px rgba(157,26,94,.4);
}
.zerocost::after { content: ""; position: absolute; right: -50px; top: -50px; width: 190px; height: 190px; border-radius: 50%; background: rgba(255,255,255,.12); }
.zerocost::before { content: ""; position: absolute; left: -30px; bottom: -60px; width: 150px; height: 150px; border-radius: 50%; background: rgba(255,255,255,.08); }
.zerocost__tag { position: relative; z-index: 1; display: inline-block; background: rgba(255,255,255,.18); font-weight: 700; font-size: 12.5px; padding: 6px 13px; border-radius: 999px; margin-bottom: 12px; }
.zerocost__value { position: relative; z-index: 1; display: block; font-size: clamp(48px, 8vw, 70px); line-height: .95; letter-spacing: -.03em; font-weight: 800; }
.zerocost__label { position: relative; z-index: 1; display: block; font-size: 20px; font-weight: 700; margin-top: 8px; }
.zerocost__sub { position: relative; z-index: 1; display: block; font-size: 14px; opacity: .95; margin-top: 12px; max-width: 44ch; }
.zerocost__sub b { font-weight: 800; }
.stats__mini {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-content: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-soft);
}
.stat { text-align: center; }
.stat b { display: block; font-size: 34px; color: var(--green); letter-spacing: -.02em; }
.stat span { font-size: 14px; color: var(--muted); }

/* ===== Sections ===== */
.section { padding: 84px 0; }
.section--alt {
  background-color: var(--bg-soft);
  background-image: radial-gradient(rgba(15,107,87,.045) 1px, transparent 1px);
  background-size: 24px 24px;
}
.section__head { max-width: 680px; margin: 0 auto 46px; text-align: center; }
.eyebrow {
  display: inline-block; font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-soft); padding: 6px 13px; border-radius: 999px; margin-bottom: 14px;
}
.eyebrow--light { color: var(--accent-light); background: rgba(225,115,166,.16); }
.section__head h2 { font-size: clamp(26px, 3.6vw, 38px); letter-spacing: -.02em; line-height: 1.15; }
.section__head p { color: var(--ink-2); font-size: 17px; margin-top: 12px; }

/* ===== Split (problema/solução) ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.panel { border-radius: var(--radius); padding: 30px; border: 1px solid var(--line); background: #fff; }
.panel h3 { font-size: 20px; margin-bottom: 16px; }
.panel--problem { background: #fff6f4; border-color: #ffe0d8; }
.panel--solution { background: linear-gradient(160deg, #eafaf3, #ffffff); border-color: #cdeede; }
.list { list-style: none; display: grid; gap: 12px; }
.list li { position: relative; padding-left: 32px; color: var(--ink-2); font-weight: 500; }
.list--check li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; background: var(--green); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: 13px; font-weight: 800; }
.list--x li::before { content: "✕"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; background: #f0654a; color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 800; }
.list--light li { color: rgba(255,255,255,.92); }

/* ===== Tabs ===== */
.tabs__nav { display: flex; gap: 8px; justify-content: center; margin-bottom: 30px; flex-wrap: wrap; }
.tab {
  font-family: var(--font); font-weight: 700; font-size: 16px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; color: var(--ink-2);
  transition: .2s;
}
.tab .ic { width: 18px; height: 18px; }
.tab:hover { border-color: var(--green); color: var(--green); }
.tab.is-active { background: var(--green); border-color: var(--green); color: #fff; box-shadow: 0 12px 24px -12px rgba(13,159,110,.6); }
.tabs__panel { animation: fade .35s ease; }
.tabs__panel[hidden] { display: none; }

/* Audience card (Empresas / Condomínios) */
.audience {
  display: grid; grid-template-columns: .82fr 1.18fr; align-items: stretch;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-soft);
}
.audience__media { position: relative; min-height: 100%; }
.audience__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.audience__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(15,107,87,.05), rgba(12,33,27,.5)); }
.audience__tag {
  position: absolute; z-index: 2; top: 16px; left: 16px; display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.95); color: var(--teal); font-weight: 700; font-size: 13.5px;
  padding: 8px 14px; border-radius: 999px; box-shadow: var(--shadow-soft);
}
.audience__tag .ic { width: 16px; height: 16px; }
.audience__stat {
  position: absolute; z-index: 2; left: 16px; bottom: 16px; color: #fff; font-weight: 600; font-size: 13px; line-height: 1.3;
  display: flex; flex-direction: column; text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.audience__stat b { font-size: 19px; font-weight: 800; }
.audience__body { padding: 40px 42px; }
.audience__body h3 { font-size: 25px; letter-spacing: -.01em; margin-bottom: 10px; }
.audience__body > p { color: var(--ink-2); margin-bottom: 26px; max-width: 52ch; }
.benefits { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 20px 24px; margin-bottom: 30px; }
.benefits li { display: flex; gap: 13px; align-items: flex-start; }
.benefits__ic { flex: none; width: 44px; height: 44px; border-radius: 12px; background: rgba(35,169,78,.12); color: var(--green); display: grid; place-items: center; }
.benefits__ic .ic { width: 22px; height: 22px; }
.benefits li:nth-child(even) .benefits__ic { background: var(--accent-soft); color: var(--accent); }
.benefits li b { display: block; font-size: 15.5px; margin-bottom: 3px; color: var(--ink); }
.benefits li p { font-size: 13.5px; color: var(--ink-2); line-height: 1.45; }

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { background: #fff; border-radius: var(--radius); padding: 28px 24px; position: relative; box-shadow: var(--shadow-soft); }
.step__n { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 13px; background: linear-gradient(135deg, var(--teal), var(--green)); color: #fff; font-weight: 800; font-size: 20px; margin-bottom: 16px; }
.step h4 { font-size: 18px; margin-bottom: 6px; }
.step p { font-size: 14.5px; color: var(--ink-2); }

/* ===== Cards ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--accent); }
.card__ic { width: 58px; height: 58px; border-radius: 15px; background: var(--bg-soft); color: var(--green); display: grid; place-items: center; margin-bottom: 16px; transition: background .2s, color .2s; }
.card__ic .ic { width: 28px; height: 28px; }
/* rotação de cores da marca: verde / teal / magenta */
.cards .card:nth-child(3n+1) .card__ic { color: var(--green-700); background: rgba(35,169,78,.12); }
.cards .card:nth-child(3n+2) .card__ic { color: var(--teal); background: rgba(15,107,87,.12); }
.cards .card:nth-child(3n)   .card__ic { color: var(--accent); background: var(--accent-soft); }
.card:hover .card__ic { transform: none; }
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { color: var(--ink-2); font-size: 15px; }

/* ===== Mix chips + fotos ===== */
.mix { margin-top: 46px; }
.mix img { width: 100%; height: auto; max-height: 460px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); display: block; }
.mix h3 { font-size: 24px; margin-bottom: 8px; }
.mix__intro { color: var(--ink-2); margin-bottom: 18px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips span { background: #fff; border: 1px solid var(--line); padding: 10px 16px; border-radius: 999px; font-weight: 600; font-size: 14.5px; color: var(--ink-2); transition: border-color .18s, color .18s, transform .18s; }
.chips span:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.mix__note { font-size: 13px; color: var(--muted); margin-top: 16px; }

/* ===== Timeline ===== */
/* ===== Roadmap (trilha do tesouro) ===== */
.roadmap { position: relative; padding-top: 18px; }
.roadmap__trail { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; overflow: visible; }
.trail-line { fill: none; stroke: var(--accent); stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 0.1 11; vector-effect: non-scaling-stroke; opacity: .6; }
.trail-arrow { fill: none; stroke: var(--accent); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; opacity: .85; }

.timeline { position: relative; z-index: 1; list-style: none; counter-reset: t; display: grid; grid-template-columns: repeat(4, 1fr); gap: 58px 22px; }
.timeline > li { counter-increment: t; background: #fff; border-radius: var(--radius); padding: 24px 20px 20px; position: relative; box-shadow: var(--shadow-soft); }
.timeline > li::before { content: counter(t); position: absolute; top: -14px; left: 20px; width: 30px; height: 30px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 14px; }
.timeline > li span { display: block; font-weight: 700; margin-bottom: 4px; }
.timeline > li p { font-size: 13.5px; color: var(--ink-2); }

/* Serpentina: linha 1 = passos 1-4; linha 2 volta da direita p/ esquerda = 5,6,7 + tesouro */
.timeline > li:nth-child(5) { grid-column: 4; grid-row: 2; }
.timeline > li:nth-child(6) { grid-column: 3; grid-row: 2; }
.timeline > li:nth-child(7) { grid-column: 2; grid-row: 2; }

/* Passo final em destaque */
.step--final { box-shadow: 0 0 0 2px rgba(157, 26, 94, .35), var(--shadow-soft); }
.step--final::before { background: var(--accent); box-shadow: 0 6px 16px rgba(157, 26, 94, .4); }

/* X marca o ponto (tesouro) */
.timeline > li.roadmap__x { grid-column: 1; grid-row: 2; counter-increment: none; background: none; border: none; box-shadow: none; padding: 0; display: grid; place-items: center; align-content: center; gap: 8px; }
.timeline > li.roadmap__x::before { content: none; display: none; }
.roadmap__x svg { width: 82px; height: 82px; }
.x-ring { fill: none; stroke: var(--accent); stroke-width: 2.5; stroke-dasharray: 4 7; stroke-linecap: round; opacity: .7; }
.x-mark { fill: none; stroke: var(--accent); stroke-width: 6; stroke-linecap: round; }
.roadmap__x b { color: var(--accent); font-weight: 800; font-size: 14px; letter-spacing: .01em; }

/* ===== CTA condições ===== */
.section--cta { padding: 40px 0; }
.ctacard {
  background: linear-gradient(135deg, var(--ink), var(--teal-700) 55%, var(--teal));
  border-radius: 26px; padding: 46px; color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  box-shadow: var(--shadow);
}
.ctacard__text { flex: 1 1 480px; }
.ctacard__text h2 { font-size: clamp(24px, 3.2vw, 34px); margin: 10px 0 18px; }

/* ===== FAQ ===== */
.faq { display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px 20px; transition: box-shadow .2s; }
.faq details[open] { box-shadow: var(--shadow-soft); }
.faq summary { list-style: none; cursor: pointer; font-weight: 700; padding: 16px 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 24px; color: var(--accent); font-weight: 400; transition: transform .2s; }
.faq details[open] summary { color: var(--accent); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 18px; color: var(--ink-2); }

/* ===== Contact ===== */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center; }
.contact__info h2 { font-size: clamp(24px, 3.2vw, 34px); margin: 12px 0 12px; }
.contact__info > p { color: var(--ink-2); margin-bottom: 22px; }
.contact__list { list-style: none; display: grid; gap: 14px; }
.contact__list li { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.contact__ic { flex: none; width: 42px; height: 42px; border-radius: 12px; background: rgba(35,169,78,.12); color: var(--green); display: grid; place-items: center; }
.contact__ic .ic { width: 20px; height: 20px; }
.contact__list li:nth-child(even) .contact__ic { background: var(--accent-soft); color: var(--accent); }
.contact__list a { color: var(--green); }
.contact__box { background: linear-gradient(160deg, #eafaf3, #fff); border: 1px solid #cdeede; border-radius: var(--radius); padding: 34px; text-align: center; box-shadow: var(--shadow-soft); }
.contact__box h3 { font-size: 22px; margin-bottom: 8px; }
.contact__box p { color: var(--ink-2); margin-bottom: 22px; }

/* ===== Footer ===== */
.footer {
  color: #c6d3ce; padding: 56px 0 26px;
  background-color: var(--ink);
  background-image:
    radial-gradient(circle at 92% 0%, rgba(35,169,78,.16), transparent 42%),
    radial-gradient(circle at 2% 105%, rgba(157,26,94,.16), transparent 44%);
}
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__logo { display: inline-flex; }
.footer__logo img { height: 58px; width: auto; display: block; }
.footer__brand p { margin-top: 18px; font-size: 14.5px; max-width: 420px; }
.footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.footer__cols h4 { color: #fff; margin-bottom: 14px; font-size: 15px; }
.footer__cols a, .footer__cols span { display: block; font-size: 14.5px; margin-bottom: 9px; transition: color .15s; }
.footer__cols a:hover { color: var(--accent-light); }
.footer__bottom { padding-top: 22px; font-size: 13px; color: #8a9a94; text-align: center; }

/* ===== Floating WhatsApp ===== */
.wpp-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%; background: var(--wpp); color: #fff;
  display: grid; place-items: center; box-shadow: 0 14px 30px -8px rgba(37,211,102,.7);
  animation: pulse 2.4s infinite; transition: transform .2s;
}
.wpp-float:hover { transform: scale(1.08); }

/* ===== Animations ===== */
@keyframes fade { from { opacity: 0; transform: translateY(8px);} to { opacity: 1; transform: none; } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5);} 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0);} 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0);} }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero { overflow: hidden; padding-bottom: 62px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__card { order: -1; }
  .hero__logocard { display: none; }
  .stats__wrap { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .roadmap { padding-top: 0; }
  .roadmap__trail { display: none; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 30px 18px; }
  .timeline > li:nth-child(5), .timeline > li:nth-child(6), .timeline > li:nth-child(7) { grid-column: auto; grid-row: auto; }
  .roadmap__x { grid-column: auto; grid-row: auto; }
  .audience { grid-template-columns: 1fr; }
  .audience__media { height: 240px; min-height: 240px; }
  .audience__body { padding: 32px 30px; }
  .contact { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .mix img { max-height: 300px; }
  .chips { justify-content: center; }
}
@media (max-width: 720px) {
  .hero__card { margin-bottom: 30px; }
  .herophoto { max-width: 340px; margin: 0 auto; }
  .herophoto__float { right: -8px; bottom: -16px; }
  .nav {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 10px 22px 20px;
    transform: translateY(-140%); transition: transform .3s ease; box-shadow: var(--shadow-soft);
  }
  .nav.is-open { transform: none; }
  .nav > a:not(.btn) { padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .nav__cta { margin-top: 14px; }
  .nav-toggle { display: flex; }
  .split { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; gap: 16px; }
  .section { padding: 62px 0; }
  .ctacard { padding: 32px 26px; }
  .ctacard .btn { width: 100%; }
}
@media (max-width: 560px) {
  .stats__mini { grid-template-columns: 1fr; text-align: left; }
  .stat { display: flex; align-items: baseline; gap: 10px; }
  .timeline { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero__logo { height: 60px; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stat b { font-size: 30px; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .wpp-float { animation: none; }
  .badge__dot { animation: none; }
  html { scroll-behavior: auto; }
}
