/* ============================================================
   MOORVEX — Landing Page Copa do Mundo 2026
   Sistema visual: bold, esportivo, energia de torcida.
   ============================================================ */

:root {
  /* Tipografia */
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", system-ui, sans-serif;

  /* Cores base */
  --ink: #0c0d0c;
  --ink-2: #1a1c1a;
  --paper: #f3f1ea;
  --paper-2: #e8e4d9;
  --white: #ffffff;

  /* Copa */
  --green: #0a8f4f;
  --green-deep: #064a29;
  --green-deeper: #043019;
  --yellow: #ffd400;
  --yellow-soft: #ffe159;
  --blue: #1d2a6e;

  --line: rgba(12, 13, 12, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);

  /* Tweakable */
  --accent: var(--green);
  --type-scale: 1;

  --maxw: 1240px;
  --radius: 6px;
  --radius-lg: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 18px;
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.wrap-wide { max-width: 1440px; margin: 0 auto; padding: 0 28px; }

/* ---------- Tipografia utilitária ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.01em;
  margin: 0;
}
.kicker {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: "";
  width: 26px; height: 3px;
  background: var(--accent);
  display: inline-block;
}
.lead { font-size: 1.22rem; color: #3a3d3a; line-height: 1.5; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.06rem;
  padding: 15px 26px;
  border: none;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: #0aa05a; box-shadow: 0 10px 24px rgba(10,143,79,.35); }
.btn-yellow { background: var(--yellow); color: var(--ink); }
.btn-yellow:hover { background: var(--yellow-soft); box-shadow: 0 10px 24px rgba(255,212,0,.4); }
.btn-wa { background: #25d366; color: #04331c; }
.btn-wa:hover { background: #2ee672; box-shadow: 0 10px 24px rgba(37,211,102,.4); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-lg { font-size: 1.22rem; padding: 18px 32px; }

.wa-ico { width: 20px; height: 20px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.nav__logo img { height: 30px; width: auto; }
.nav__links {
  display: flex;
  gap: 30px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1rem;
}
.nav__links a { opacity: .85; transition: opacity .2s; }
.nav__links a:hover { opacity: 1; }
.nav__cta { display: flex; align-items: center; gap: 14px; }

/* sobre o hero (escuro) */
.nav[data-mode="over"] { color: #fff; }
.nav[data-mode="over"] .btn-ghost { color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.5); }
.nav[data-mode="over"] .btn-ghost:hover { background: #fff; color: var(--ink); }

/* scrolled */
.nav[data-stuck="true"] {
  background: rgba(243,241,234,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
  color: var(--ink);
  padding: 12px 32px;
}
.nav[data-stuck="true"] .logo-over { display: none; }
.nav:not([data-stuck="true"]) .logo-base { display: none; }
.nav[data-stuck="true"] .btn-ghost { color: var(--ink); box-shadow: inset 0 0 0 2px var(--ink); }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav { padding: 12px 20px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  padding: 132px 0 70px;
}
/* tema verde (default) */
.hero[data-theme="green"] {
  background:
    radial-gradient(120% 90% at 85% -10%, #0c9c56 0%, transparent 55%),
    linear-gradient(160deg, var(--green-deep) 0%, var(--green-deeper) 60%, #052012 100%);
}
.hero[data-theme="ink"] {
  background:
    radial-gradient(120% 90% at 85% -10%, #16331f 0%, transparent 55%),
    linear-gradient(160deg, #16181a 0%, #0a0b0c 100%);
}
.hero[data-theme="yellow"] {
  background:
    radial-gradient(120% 90% at 85% -10%, #ffe468 0%, transparent 55%),
    linear-gradient(160deg, #ffd400 0%, #f4b800 100%);
  color: var(--ink);
}
.hero[data-theme="yellow"] .hero__sub { color: #2a2403; }
.hero[data-theme="yellow"] .countdown__label,
.hero[data-theme="yellow"] .hero__trust span { color: #2a2403; }

/* campo de futebol */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('assets/field-lines.svg') center / cover no-repeat;
  opacity: 0.1;
  pointer-events: none;
}

/* faixa diagonal decorativa */
.hero__stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -56deg, rgba(255,255,255,.05) 0 2px, transparent 2px 64px);
  pointer-events: none;
}
.hero[data-theme="yellow"] .hero__stripes {
  background-image: repeating-linear-gradient(-56deg, rgba(0,0,0,.05) 0 2px, transparent 2px 64px);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.95rem;
  padding: 7px 14px;
  border-radius: 100px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  margin-bottom: 26px;
}
.hero[data-theme="yellow"] .hero__eyebrow { background: rgba(0,0,0,.08); border-color: rgba(0,0,0,.18); }
.flag-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 3px rgba(255,212,0,.25); }
.hero[data-theme="yellow"] .flag-dot { background: var(--green); box-shadow: 0 0 0 3px rgba(10,143,79,.25); }

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.86;
  letter-spacing: -0.01em;
  font-size: clamp(3.2rem, 7.2vw, 6.4rem);
  margin: 0 0 20px;
}
.hero__title .hl { color: var(--yellow); }
.hero[data-theme="yellow"] .hero__title .hl { color: var(--green); }
.hero__title em { font-style: normal; -webkit-text-stroke: 2px var(--yellow); color: transparent; }
.hero[data-theme="yellow"] .hero__title em { -webkit-text-stroke: 2px var(--green); }

.hero__sub {
  font-size: 1.22rem;
  max-width: 30ch;
  color: rgba(255,255,255,.82);
  margin: 0 0 30px;
  line-height: 1.45;
}


.hero__trust {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 0.95rem; color: rgba(255,255,255,.7);
  margin-top: 4px;
}
.hero__trust strong { color: #fff; }
.hero[data-theme="yellow"] .hero__trust strong { color: var(--ink); }

/* ---------- form card ---------- */
.formcard {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 30px 30px 26px;
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
  position: relative;
}
.formcard__tag {
  position: absolute; top: -15px; left: 28px;
  background: var(--yellow); color: var(--ink);
  font-family: var(--font-display); font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 0.86rem; padding: 6px 14px; border-radius: 100px;
  white-space: nowrap;
}
.formcard h3 {
  font-family: var(--font-display); font-weight: 800;
  text-transform: uppercase; font-size: 1.9rem; line-height: 0.95;
  margin: 8px 0 4px;
}
.formcard p.fc-sub { margin: 0 0 18px; color: #555; font-size: 1rem; }

.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; font-size: 0.84rem;
  color: #2a2c2a; margin-bottom: 5px;
}
.field input, .field select {
  width: 100%;
  font-family: var(--font-body); font-size: 1.02rem;
  padding: 13px 14px;
  border: 1.5px solid #d9d6cc;
  border-radius: var(--radius);
  background: #faf9f5;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(10,143,79,.16);
  background: #fff;
}
.field input::placeholder { color: #9b988c; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230c0d0c' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 38px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.formcard .btn { width: 100%; justify-content: center; margin-top: 6px; }
.formcard__note { font-size: 0.82rem; color: #888; text-align: center; margin: 12px 0 0; }

/* sucesso */
.form-success { text-align: center; padding: 16px 6px 8px; }
.form-success .check {
  width: 66px; height: 66px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: grid; place-items: center; margin: 0 auto 16px;
}
.form-success h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: 1.8rem; margin: 0 0 8px; }
.form-success p { color: #555; margin: 0 0 20px; }
.form-success .btn { width: 100%; justify-content: center; }
.form-success .btn + .btn { margin-top: 10px; }
.hidden { display: none !important; }

/* ============================================================
   MARQUEE / TRUST
   ============================================================ */
.brandstrip {
  background: var(--ink);
  color: rgba(255,255,255,.62);
  padding: 22px 0;
  overflow: hidden;
}
.brandstrip__inner { display: flex; align-items: center; }
.marquee { display: flex; gap: 56px; white-space: nowrap; animation: marq 26s linear infinite; padding-right: 56px; }
.marquee span {
  font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; font-size: 1.5rem;
  display: inline-flex; align-items: center; gap: 56px;
}
.marquee span::after { content: "★"; color: var(--yellow); font-size: 1rem; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section { padding: 100px 0; }
.section--paper { background: var(--paper); }
.section--paper2 { background: var(--paper-2); }
.section--ink { background: var(--ink); color: #fff; }
.section--green { background: linear-gradient(165deg, var(--green-deep), var(--green-deeper)); color: #fff; }

.sec-head { max-width: 760px; margin-bottom: 48px; }
.sec-head .display { font-size: clamp(2.4rem, 4.6vw, 3.8rem); margin: 14px 0 14px; }
.section--ink .lead, .section--green .lead { color: rgba(255,255,255,.78); }
.section--ink .kicker, .section--green .kicker { color: #fff; }

/* ============================================================
   GALERIA
   ============================================================ */
.gallery { }
.shot {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #d8d4c8;
  isolation: isolate;
}
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.shot:hover img { transform: scale(1.05); }
.shot__meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px 20px 18px;
  background: linear-gradient(transparent, rgba(0,0,0,.82));
  color: #fff;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 14px;
}
.shot__meta b { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.35rem; line-height: 1; }
.shot__meta small { display: block; font-weight: 400; opacity: .82; letter-spacing: .04em; }
.shot__tag {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; font-size: .76rem; padding: 5px 11px; border-radius: 100px;
  background: rgba(255,255,255,.2); backdrop-filter: blur(4px); white-space: nowrap;
}

/* ---------- CARROSSEL (padrão) ---------- */
.carousel { position: relative; }
.carousel__track {
  display: flex; gap: 18px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 18px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel .shot { flex: 0 0 auto; height: 480px; scroll-snap-align: center; }
.carousel .shot.g-wide { width: min(78vw, 780px); }
.carousel .shot.g-tall { width: min(62vw, 380px); }

.carousel__nav {
  position: absolute; top: calc(50% - 18px); transform: translateY(-50%);
  z-index: 5;
  width: 56px; height: 56px; border-radius: 50%;
  border: none; background: var(--ink); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
  transition: background .2s, transform .15s, opacity .2s;
}
.carousel__nav:hover { background: var(--green); }
.carousel__nav:active { transform: translateY(-50%) scale(.94); }
.carousel__nav svg { width: 24px; height: 24px; }
.carousel__nav--prev { left: -10px; }
.carousel__nav--next { right: -10px; }
.carousel__nav[disabled] { opacity: .28; pointer-events: none; }

.carousel__dots { display: flex; justify-content: center; gap: 9px; margin-top: 22px; }
.carousel__dots button {
  width: 9px; height: 9px; border-radius: 50%; border: none; padding: 0;
  background: rgba(12,13,12,.22); cursor: pointer; transition: background .2s, width .2s;
}
.carousel__dots button[aria-current="true"] { background: var(--green); width: 28px; border-radius: 100px; }

/* ---------- variação: GRADE ---------- */
[data-gallery="grid"] .carousel__track {
  display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 232px;
  gap: 16px; overflow: visible; padding: 0;
}
[data-gallery="grid"] .carousel .shot { height: auto; width: auto; }
[data-gallery="grid"] .shot.g-wide { grid-column: span 8; grid-row: span 2; }
[data-gallery="grid"] .shot.g-tall { grid-column: span 4; grid-row: span 2; }
[data-gallery="grid"] .carousel__nav,
[data-gallery="grid"] .carousel__dots { display: none; }

/* ============================================================
   FAIXAS DE QUANTIDADE
   ============================================================ */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tier {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px 32px;
  position: relative;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.tier:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(0,0,0,.1); }
.tier--feat { background: var(--ink); color: #fff; border-color: var(--ink); }
.tier--feat .tier__price, .tier--feat .tier__num { color: var(--yellow); }
.tier__badge {
  position: absolute; top: 22px; right: 22px;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; font-size: .72rem; padding: 5px 11px; border-radius: 100px;
  background: var(--green); color: #fff;
}
.tier__num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 3.4rem; line-height: .9; color: var(--green); letter-spacing: -.02em;
}
.tier__num small { font-size: 1.1rem; opacity: .6; font-weight: 600; }
.tier__name { font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 1.3rem; margin: 8px 0 4px; letter-spacing: .03em; }
.tier__desc { color: #6a6c69; font-size: 1rem; margin: 0 0 20px; }
.tier--feat .tier__desc { color: rgba(255,255,255,.7); }
.tier__list { list-style: none; padding: 0; margin: 0 0 24px; }
.tier__list li { display: flex; gap: 10px; padding: 7px 0; font-size: 1rem; border-top: 1px solid var(--line); }
.tier--feat .tier__list li { border-color: rgba(255,255,255,.14); }
.tier__list li:first-child { border-top: none; }
.tier__list svg { flex: 0 0 18px; color: var(--green); margin-top: 4px; }
.tier--feat .tier__list svg { color: var(--yellow); }
.tier .btn { width: 100%; justify-content: center; }

/* ============================================================
   PERSONALIZAÇÃO — DTF
   ============================================================ */
.dtf {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.dtf__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #15171a;
}
.dtf__media img { width: 100%; height: 100%; object-fit: cover; }
.dtf__media .shot__tag {
  position: absolute; top: 18px; left: 18px;
  background: var(--yellow); color: var(--ink);
}
.dtf__copy .sec-head { margin-bottom: 22px; }
.dtf__copy .display { font-size: clamp(2.2rem, 4vw, 3.4rem); }
.dtf__lead { font-size: 1.18rem; color: rgba(255,255,255,.8); line-height: 1.5; margin: 0 0 26px; max-width: 46ch; }
.dtf__list { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 0; }
.dtf__list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0; border-top: 1px solid rgba(255,255,255,.14);
}
.dtf__list li:first-child { border-top: none; }
.dtf__list .ico {
  flex: 0 0 22px; width: 22px; height: 22px; margin-top: 2px; color: var(--yellow);
}
.dtf__list b { font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: .03em; font-size: 1.12rem; display: block; }
.dtf__list span { color: rgba(255,255,255,.7); font-size: 1rem; }

@media (max-width: 980px) {
  .dtf { grid-template-columns: 1fr; gap: 32px; }
  .dtf__media { aspect-ratio: 16 / 10; max-height: 460px; }
}

/* ============================================================
   COMO FUNCIONA
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding-top: 18px; }
.step__n {
  font-family: var(--font-display); font-weight: 800;
  font-size: 4.6rem; line-height: .8; color: var(--green);
  -webkit-text-stroke: 0; opacity: .95;
}
.step h4 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 1.4rem; margin: 12px 0 8px; }
.step p { margin: 0; color: #6a6c69; }
.step::after {
  content: "→"; position: absolute; top: 26px; right: -16px;
  color: var(--green); font-size: 1.6rem; opacity: .4;
}
.step:last-child::after { display: none; }

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
}
.feat__big {
  font-family: var(--font-display); font-weight: 800;
  font-size: 3.2rem; line-height: 1; color: var(--yellow); letter-spacing: -.02em;
}
.feat h4 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 1.25rem; margin: 10px 0 8px; }
.feat p { margin: 0; color: rgba(255,255,255,.74); }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 26px; display: flex; flex-direction: column;
}
.quote__stars { color: var(--yellow); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }
.quote p { font-size: 1.12rem; line-height: 1.5; margin: 0 0 22px; }
.quote__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote__av {
  width: 46px; height: 46px; border-radius: 50%; flex: 0 0 46px;
  background: var(--green); color: #fff; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.2rem;
}
.quote__who b { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.05rem; letter-spacing: .03em; display: block; line-height: 1.1; }
.quote__who small { color: #888; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 880px; margin: 0 auto; }
.faq__item { border-top: 1.5px solid var(--line); }
.faq__item:last-child { border-bottom: 1.5px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 1.3rem; letter-spacing: .02em; color: var(--ink);
}
.faq__q .pm { flex: 0 0 28px; width: 28px; height: 28px; position: relative; transition: transform .3s; }
.faq__q .pm::before, .faq__q .pm::after {
  content: ""; position: absolute; background: var(--green); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.faq__q .pm::before { width: 18px; height: 3px; }
.faq__q .pm::after { width: 3px; height: 18px; transition: transform .3s; }
.faq__item[data-open="true"] .pm::after { transform: translate(-50%,-50%) scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__a p { margin: 0; padding: 0 4px 24px; color: #5c5e5b; font-size: 1.08rem; max-width: 70ch; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.finalcta {
  background:
    radial-gradient(100% 120% at 80% 0%, #0c9c56 0%, transparent 55%),
    linear-gradient(160deg, var(--green-deep), var(--green-deeper));
  color: #fff; text-align: center; padding: 110px 0;
  position: relative; overflow: hidden;
}
.finalcta .display { font-size: clamp(2.8rem, 6vw, 5.4rem); }
.finalcta .hl { color: var(--yellow); }
.finalcta .lead { color: rgba(255,255,255,.82); max-width: 56ch; margin: 18px auto 32px; }
.finalcta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: rgba(255,255,255,.66); padding: 64px 0 32px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer__logo img { height: 32px; margin-bottom: 18px; }
.footer__col h5 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #fff; font-size: 0.95rem; margin: 0 0 16px; }
.footer__col a { display: block; padding: 6px 0; transition: color .2s; }
.footer__col a:hover { color: var(--yellow); }
.footer__contact a { display: flex; gap: 10px; align-items: center; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 0.9rem; flex-wrap: wrap; gap: 12px; }

/* WhatsApp flutuante */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 70;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #04331c;
  display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(37,211,102,.45);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ============================================================
   REVEAL on scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ============================================================
   HERO LAYOUT VARIANTS
   ============================================================ */
/* split (default): texto esquerda, form direita — já definido */

/* imgLeft: collage de imagens à esquerda, form à direita, texto acima */
.hero[data-layout="imgLeft"] .hero__grid { grid-template-columns: 1fr 1fr; }
.hero[data-layout="imgLeft"] .hero__copy { grid-column: 1 / -1; max-width: 900px; margin-bottom: 8px; }
.hero[data-layout="imgLeft"] .hero__collage { display: grid; }
.hero:not([data-layout="imgLeft"]) .hero__collage { display: none; }

.hero__collage {
  grid-template-columns: 1fr 1fr; gap: 12px;
}
.hero__collage img { border-radius: 10px; height: 100%; object-fit: cover; }
.hero__collage .c1 { grid-row: span 2; height: 360px; }
.hero__collage .c2 { height: 174px; }

/* stacked: tudo centralizado, form embaixo */
.hero[data-layout="stacked"] .hero__grid { grid-template-columns: 1fr; text-align: center; justify-items: center; max-width: 920px; margin: 0 auto; }
.hero[data-layout="stacked"] .hero__sub { max-width: 46ch; }
.hero[data-layout="stacked"] .countdown__row { justify-content: center; }
.hero[data-layout="stacked"] .hero__eyebrow { margin-inline: auto; }
.hero[data-layout="stacked"] .formcard { max-width: 560px; width: 100%; text-align: left; margin-top: 14px; }
.hero[data-layout="stacked"] .hero__trust { justify-content: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero[data-layout="imgLeft"] .hero__grid { grid-template-columns: 1fr; }
  .types { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2)::after { display: none; }
  .feats { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  [data-gallery="grid"] .carousel__track { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 200px; }
  [data-gallery="grid"] .shot.g-wide, [data-gallery="grid"] .shot.g-tall { grid-column: span 3; grid-row: span 2; }
}
@media (max-width: 720px) {
  body { font-size: 17px; }
  .section { padding: 70px 0; }
  .tiers { grid-template-columns: 1fr; }
  .types { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step::after { display: none !important; }
  [data-gallery="grid"] .carousel__track { grid-template-columns: 1fr; grid-auto-rows: auto; }
  [data-gallery="grid"] .shot.g-wide, [data-gallery="grid"] .shot.g-tall { grid-column: span 1; grid-row: auto; aspect-ratio: 4 / 3; }
  .carousel .shot { height: 380px; }
  .field-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding-top: 104px; }
}
