/* ============================================================
   PAGASYS Inscrições & Pagamentos — style.css
   Mobile-first · Paleta do logo: verde #B0BF0A / laranja #F59600
   ============================================================ */

@font-face {
  font-family: "TT Supermolot";
  src: url("../fonts/tt-supermolot-neue-expanded-bl.ttf") format("truetype");
  font-weight: 900;
  font-display: swap;
}

:root {
  --verde: #b0bf0a;
  --verde-claro: #d3e33a;
  --verde-escuro: #7d8807;
  --laranja: #f59600;
  --laranja-escuro: #cc7d00;
  --ink: #23281c;
  --ink-suave: #565e48;
  --fundo: #fdfef7;
  --branco: #ffffff;
  --card: #ffffff;
  --borda: #e7ebd6;
  --sombra: 0 8px 30px rgba(35, 40, 28, 0.08);
  --sombra-hover: 0 16px 44px rgba(35, 40, 28, 0.16);
  --raio: 18px;
  --grad-marca: linear-gradient(160deg, #c3d321, var(--verde-escuro));
  --grad-verde: linear-gradient(160deg, #c9d81f, var(--verde-escuro));
  --fonte-display: "TT Supermolot", "Segoe UI", system-ui, sans-serif;
  --fonte-corpo: "Segoe UI", Roboto, system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--fonte-corpo);
  color: var(--ink);
  background: var(--fundo);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--verde-escuro); text-decoration: none; }
ul { list-style: none; }

.container { width: min(1140px, 92%); margin-inline: auto; }

/* ---------- Tipografia ---------- */
h1, h2, h3, .display {
  font-family: var(--fonte-display);
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-wrap: balance;
}
h1 { font-size: clamp(1.9rem, 6vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 4.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 3vw, 1.35rem); }

.secao { padding: 4.5rem 0; }
.secao-cab { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.secao-cab .tag,
.contato-info .tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--laranja-escuro);
  background: rgba(245, 150, 0, 0.12);
  border: 1px solid rgba(245, 150, 0, 0.25);
  padding: 0.35rem 0.9rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}
.secao-cab p { color: var(--ink-suave); margin-top: 0.8rem; }

.grifo { color: var(--laranja); }
.grifo-verde { color: var(--verde-escuro); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.7rem;
  border-radius: 99px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn-primario {
  background: var(--verde);
  color: #262b06;
  box-shadow: 0 10px 24px rgba(176, 191, 10, 0.4);
}
.btn-primario:hover {
  background: var(--verde-escuro);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(176, 191, 10, 0.5);
}
.btn-demo { font-size: 1.18rem; padding: 1rem 2.1rem; color: #fff; }
.btn-demo:hover { background: var(--laranja); color: #fff; box-shadow: 0 16px 32px rgba(245, 150, 0, 0.5); }
.btn-laranja {
  background: var(--laranja);
  color: #fff;
  box-shadow: 0 10px 24px rgba(245, 150, 0, 0.38);
}
.btn-laranja:hover {
  background: var(--laranja-escuro);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(245, 150, 0, 0.48);
}
.btn-contorno {
  border-color: var(--verde);
  color: var(--verde-escuro);
  background: rgba(255, 255, 255, 0.7);
}
.btn-contorno:hover { background: var(--verde); color: #fff; transform: translateY(-3px); }
.btn-zap { background: #25d366; color: #fff; box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4); }
.btn-zap:hover { transform: translateY(-3px); background: #1fb958; }

/* ---------- Header ---------- */
.topo {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(253, 254, 247, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--borda);
  transition: box-shadow 0.3s ease;
}
.topo.rolou { box-shadow: 0 6px 24px rgba(35, 40, 28, 0.1); }
.topo-linha {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}
.topo-logo img { width: clamp(150px, 30vw, 200px); }

.menu-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--borda);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}
.menu-btn span {
  height: 3px;
  border-radius: 3px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-aberto .menu-btn span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-aberto .menu-btn span:nth-child(2) { opacity: 0; }
.menu-aberto .menu-btn span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.menu {
  position: fixed;
  inset: 72px 0 auto 0;
  background: rgba(253, 254, 247, 0.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--borda);
  padding: 1rem 4%;
  display: grid;
  gap: 0.25rem;
  transform: translateY(calc(-100% - 100px));
  visibility: hidden;
  transition: transform 0.35s ease, visibility 0s 0.35s;
  z-index: 55;
}
.menu-aberto .menu {
  transform: translateY(0);
  visibility: visible;
  transition: transform 0.35s ease;
}
.menu a {
  display: block;
  font-weight: 600;
  color: var(--ink);
  padding: 0.7rem 0.9rem;
  border-radius: 99px;
}
.menu a:hover { background: rgba(176, 191, 10, 0.12); color: var(--verde-escuro); }
.menu a.ativo {
  background: var(--verde);
  color: #fff;
}
.menu .menu-plataforma {
  border: 2px solid var(--verde);
}
.menu .menu-cta {
  background: var(--laranja);
  color: #fff;
  text-align: center;
  font-weight: 700;
}
.menu .menu-cta:hover { background: var(--laranja-escuro); color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 5rem;
  background:
    radial-gradient(700px 420px at 85% -10%, rgba(245, 150, 0, 0.18), transparent 65%),
    radial-gradient(800px 520px at -10% 20%, rgba(176, 191, 10, 0.22), transparent 60%),
    var(--fundo);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -2px 0;
  height: 90px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 90" preserveAspectRatio="none"><path d="M0,60 C240,100 480,10 720,35 C960,60 1200,90 1440,45 L1440,90 L0,90 Z" fill="%23ffffff"/></svg>') bottom / 100% 100% no-repeat;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  animation: flutua 9s ease-in-out infinite alternate;
  pointer-events: none;
}
.blob-verde { width: 380px; height: 380px; background: rgba(176, 191, 10, 0.5); top: -120px; left: -120px; }
.blob-laranja { width: 320px; height: 320px; background: rgba(245, 150, 0, 0.4); bottom: -80px; right: -100px; animation-delay: -4s; }
@keyframes flutua {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(30px, 26px) scale(1.12); }
}

.hero-grid { position: relative; z-index: 1; display: grid; gap: 2.5rem; }
.hero-texto .tag-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--verde-escuro);
  background: rgba(176, 191, 10, 0.14);
  border: 1px solid rgba(176, 191, 10, 0.35);
  padding: 0.4rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.2rem;
}
.hero-texto .tag-hero::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--laranja);
  box-shadow: 0 0 0 4px rgba(245, 150, 0, 0.2);
}
.hero-texto p { color: var(--ink-suave); font-size: 1.06rem; margin: 1.2rem 0 1.8rem; max-width: 34rem; }
.hero-acoes { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.hero-metricas {
  display: grid;
  grid-template-columns: 1fr; /* celular: um card embaixo do outro */
  gap: 0.9rem;
  margin-top: 2.2rem;
}
.metrica {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--borda);
  border-left: 4px solid var(--verde);
  border-radius: 14px;
  box-shadow: var(--sombra);
  padding: 0.9rem 1.2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.metrica:hover { transform: translateY(-4px); box-shadow: var(--sombra-hover); }
.metrica:nth-child(2) { border-left-color: var(--laranja); }
.metrica strong {
  font-family: var(--fonte-display);
  font-size: 1.4rem;
  display: block;
  color: var(--verde-escuro);
}
.metrica:nth-child(2) strong { color: var(--laranja); }
.metrica small { color: var(--ink-suave); font-size: 0.85rem; }

/* Cartão flutuante do hero (mock de inscrição) */
.hero-card {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--borda);
  border-radius: 24px;
  box-shadow: var(--sombra-hover);
  padding: 1.6rem;
  max-width: 400px;
  margin-inline: auto;
  animation: flutua-card 6s ease-in-out infinite alternate;
}
@keyframes flutua-card {
  from { transform: translateY(0) rotate(-0.5deg); }
  to { transform: translateY(-14px) rotate(0.5deg); }
}
.hero-card h3 { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.1rem; }
.hero-card h3 .pix-ico {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--grad-marca);
  display: grid;
  place-items: center;
  color: #fff;
}
.linha-fake {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0.2rem;
  border-bottom: 1px dashed var(--borda);
  font-size: 0.92rem;
}
.linha-fake:last-of-type { border-bottom: 0; }
.pill {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 99px;
}
.pill-ok { background: rgba(176, 191, 10, 0.16); color: var(--verde-escuro); }
.pill-espera { background: rgba(245, 150, 0, 0.15); color: var(--laranja-escuro); }
.hero-card .selo {
  position: absolute;
  top: -18px;
  right: -10px;
  background: linear-gradient(120deg, var(--laranja), #ffb440);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.5rem 0.9rem;
  border-radius: 99px;
  box-shadow: 0 8px 20px rgba(245, 150, 0, 0.45);
  transform: rotate(4deg);
}

/* ---------- Vídeo ---------- */
.video-moldura {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--sombra-hover);
  background: #000;
  border: 3px solid transparent;
  background-image: linear-gradient(#000, #000), var(--grad-marca);
  background-origin: border-box;
  background-clip: content-box, border-box;
}
.video-moldura video { width: 100%; display: block; border-radius: 20px; }

/* ---------- Vídeo + card lado a lado ---------- */
.video-demo {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  align-items: center;
}
.video-demo .video-moldura { flex: 0 1 480px; width: 100%; }
.video-demo .hero-card { flex: 0 1 380px; max-width: 400px; margin: 0; }
@media (max-width: 720px) {
  .video-demo { gap: 2.4rem; }
  .video-demo .video-moldura,
  .video-demo .hero-card {
    flex: 1 1 auto;
    width: 100%;
    max-width: 400px;
    margin-inline: auto;
  }
}

/* ---------- Clientes (marquee) ---------- */
.clientes { background: #fff; }
.marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-trilha {
  display: flex;
  gap: 2.2rem;
  width: max-content;
  animation: desliza 40s linear infinite;
  padding: 0.5rem 0;
}
.marquee:hover .marquee-trilha { animation-play-state: paused; }
@keyframes desliza {
  to { transform: translateX(-50%); }
}
.cliente-logo {
  width: 104px;
  height: 104px;
  flex: none;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--borda);
  box-shadow: var(--sombra);
  display: grid;
  place-items: center;
  padding: 0.8rem;
  transition: transform 0.3s ease;
}
.cliente-logo:hover { transform: translateY(-6px) scale(1.05); }
.cliente-logo img { max-height: 100%; object-fit: contain; }

/* ---------- Benefícios ---------- */
.beneficios {
  position: relative;
  background:
    radial-gradient(600px 300px at 100% 0%, rgba(245, 150, 0, 0.08), transparent 60%),
    radial-gradient(600px 300px at 0% 100%, rgba(176, 191, 10, 0.1), transparent 60%),
    var(--fundo);
}
.cards-grid { display: grid; gap: 1.3rem; grid-template-columns: 1fr; }
.card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  padding: 1.7rem 1.5rem;
  box-shadow: var(--sombra);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--grad-marca);
  border-radius: 0 4px 4px 0;
}
.card:hover { transform: translateY(-7px); box-shadow: var(--sombra-hover); }
.card-ico {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--grad-verde);
  box-shadow: 0 8px 18px rgba(176, 191, 10, 0.35);
  margin-bottom: 1rem;
}
.card:nth-child(even) .card-ico {
  background: linear-gradient(160deg, #ffb440, var(--laranja-escuro));
  box-shadow: 0 8px 18px rgba(245, 150, 0, 0.35);
}
.card h3 { text-transform: uppercase; font-size: 1.05rem; margin-bottom: 0.6rem; }
.card p { color: var(--ink-suave); font-size: 0.96rem; }

/* ===== PASSOS (Simples assim) — numero no padrao do .card-ico ===== */
.passo-num {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1;
}
.passo-num--1 { background: var(--grad-verde); box-shadow: 0 8px 18px rgba(176, 191, 10, 0.35); }
.passo-num--2 { background: linear-gradient(160deg, #ffb440, var(--laranja-escuro)); box-shadow: 0 8px 18px rgba(245, 150, 0, 0.35); }
.passo-num--3 { background: var(--grad-verde); box-shadow: 0 8px 18px rgba(176, 191, 10, 0.35); }

/* ---------- Faixa CTA ---------- */
.cta-faixa {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #5f6a05 0%, #9aa808 100%);
  color: #fff;
  text-align: center;
  padding: 4rem 0;
}
.cta-faixa::before, .cta-faixa::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.18);
  width: 340px;
  height: 340px;
  top: -170px;
  left: -120px;
}
.cta-faixa::after { width: 480px; height: 480px; top: auto; left: auto; bottom: -260px; right: -160px; }
.cta-faixa h2 { margin-bottom: 1rem; }
.cta-faixa p { opacity: 0.92; max-width: 620px; margin: 0 auto 1.8rem; }
.cta-faixa .btn-contorno { border-color: #fff; color: #fff; background: rgba(255, 255, 255, 0.08); }
.cta-faixa .btn-contorno:hover { background: #fff; color: var(--verde-escuro); }
.cta-acoes { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; position: relative; z-index: 1; }

/* ---------- Depoimentos ---------- */
.depo-grid { display: grid; gap: 1.4rem; }
.depo {
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  padding: 1.8rem 1.6rem 1.5rem;
  box-shadow: var(--sombra);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.depo:hover { transform: translateY(-6px); box-shadow: var(--sombra-hover); }
.depo .aspas {
  position: absolute;
  top: -16px;
  left: 20px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--grad-marca);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: Georgia, serif;
  font-size: 1.7rem;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(176, 191, 10, 0.4);
}
.depo p { color: var(--ink-suave); font-size: 0.97rem; flex: 1; }
.depo footer { margin-top: 1.2rem; padding-top: 1rem; border-top: 1px dashed var(--borda); }
.depo footer strong { display: block; color: var(--ink); }
.depo footer small { color: var(--ink-suave); }
.estrelas { color: var(--laranja); letter-spacing: 2px; margin-bottom: 0.8rem; }

/* Vídeos de depoimento (shorts 9:16) */
.videos-grid { display: flex; flex-wrap: wrap; gap: 1.3rem; justify-content: center; }
.videos-grid .video-short { flex: 0 1 220px; max-width: 100%; }
.video-short {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: var(--sombra);
  cursor: pointer;
  border: 0;
  padding: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-short:hover { transform: translateY(-6px); box-shadow: var(--sombra-hover); }
.video-short img { width: 100%; height: 100%; object-fit: cover; opacity: 0.88; }
.video-short iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-short .play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.75));
}
.video-short .play span {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--grad-marca);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 26px rgba(245, 150, 0, 0.5);
  transition: transform 0.25s ease;
}
.video-short:hover .play span { transform: scale(1.12); }
.video-short .titulo {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  text-align: left;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}
.video-short .duracao {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 99px;
}

/* Lightbox/modal do vídeo de depoimento */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.video-modal.aberto { opacity: 1; visibility: visible; pointer-events: auto; }
body.video-modal-aberto { overflow: hidden; }
.video-modal__frame {
  position: relative;
  aspect-ratio: 9 / 16;
  height: min(85vh, calc(92vw * 16 / 9));
  width: auto;
  max-width: 92vw;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
  transform: scale(0.96);
  transition: transform 0.28s ease;
}
.video-modal.aberto .video-modal__frame { transform: scale(1); }
.video-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-modal__fechar {
  position: absolute;
  top: max(1rem, env(safe-area-inset-top, 0px));
  right: max(1rem, env(safe-area-inset-right, 0px));
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.video-modal__fechar:hover { background: rgba(0, 0, 0, 0.85); transform: scale(1.08); }
.video-modal__fechar:focus-visible { outline: 3px solid var(--laranja, #f59600); outline-offset: 2px; }

/* ---------- FAQ ---------- */
.faq-lista { max-width: 820px; margin-inline: auto; display: grid; gap: 0.9rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  box-shadow: var(--sombra);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item[open] { box-shadow: var(--sombra-hover); border-color: rgba(176, 191, 10, 0.5); }
.faq-item summary {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 1.3rem;
  font-weight: 700;
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(176, 191, 10, 0.14);
  color: var(--verde-escuro);
  font-size: 1.3rem;
  font-weight: 400;
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
  background: var(--grad-marca);
  color: #fff;
}
.faq-corpo { padding: 0 1.3rem 1.3rem; color: var(--ink-suave); }
.faq-corpo ul { padding-left: 1.1rem; list-style: disc; margin-top: 0.4rem; }
.faq-corpo li { margin-bottom: 0.25rem; }

/* ---------- Contato ---------- */
.contato-grid { display: grid; gap: 2rem; align-items: start; }

/* ===== Contato — coluna de info (esquerda) ===== */
.contato-info h1 { font-size: clamp(1.5rem, 4.5vw, 2.4rem); margin-top: 0.2rem; }
.contato-sub { color: var(--ink-suave); font-size: 1.06rem; margin: 1rem 0 2rem; max-width: 34rem; }
.contato-itens { list-style: none; display: grid; gap: 1.4rem; }
.contato-item { display: flex; gap: 1rem; align-items: center; text-decoration: none; }
.contato-item .ico {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(176, 191, 10, 0.12);
  color: var(--verde-escuro);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
a.contato-item:hover .ico { background: var(--grad-marca); color: #fff; transform: translateY(-3px); }
.contato-item strong { display: block; color: var(--ink); font-size: 1.02rem; }
.contato-item-txt span { display: block; color: var(--ink-suave); font-size: 0.92rem; }
a.contato-item:hover strong { color: var(--verde-escuro); }

.form-card {
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: 24px;
  box-shadow: var(--sombra-hover);
  padding: 2rem 1.6rem;
}
.form-card h3 { margin-bottom: 0.4rem; }
.form-card > p { color: var(--ink-suave); margin-bottom: 1.5rem; }
.campo { margin-bottom: 1.1rem; }
.campo label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.35rem; }
.campo input, .campo textarea {
  width: 100%;
  font: inherit;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--borda);
  border-radius: 13px;
  background: var(--fundo);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.campo input:focus, .campo textarea:focus {
  outline: none;
  border-color: var(--verde);
  box-shadow: 0 0 0 4px rgba(176, 191, 10, 0.18);
}
.campo textarea { min-height: 120px; resize: vertical; }
.form-aviso {
  font-size: 0.8rem;
  color: var(--ink-suave);
  margin-top: 0.9rem;
  line-height: 1.5;
  text-align: center;
}
.form-card .btn-enviar { width: 100%; justify-content: center; margin-top: 0.3rem; }

.contato-lado { display: grid; gap: 1.2rem; align-content: start; }
.contato-box {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  box-shadow: var(--sombra);
  padding: 1.3rem;
  transition: transform 0.3s ease;
}
.contato-box:hover { transform: translateY(-4px); }
.contato-box .ico {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--grad-verde);
}
.contato-box.zap .ico { background: linear-gradient(160deg, #4ce082, #1fb958); }
.contato-box.social .ico { background: linear-gradient(160deg, #ffb440, var(--laranja-escuro)); }
.contato-box strong { display: block; margin-bottom: 0.15rem; }
.contato-box p, .contato-box a { color: var(--ink-suave); font-size: 0.94rem; }
.contato-box a:hover { color: var(--verde-escuro); }
.sociais { display: flex; gap: 0.7rem; margin-top: 0.5rem; }
.sociais a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(176, 191, 10, 0.12);
  color: var(--verde-escuro);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.sociais a:hover { background: var(--grad-marca); color: #fff; transform: translateY(-3px); }
.sociais svg { width: 20px; height: 20px; }

/* ---------- Página legal ---------- */
.legal { max-width: 820px; margin-inline: auto; }
mark.pendente {
  background: #ffe98a;
  color: #5c4a00;
  font-weight: 700;
  padding: 0.05em 0.4em;
  border-radius: 6px;
  border: 1px dashed #d9b400;
}
.legal h2 { margin: 2.2rem 0 0.8rem; font-size: 1.35rem; }
.legal h3 { margin: 1.5rem 0 0.5rem; font-size: 1.08rem; }
.legal p { color: var(--ink-suave); margin-bottom: 0.8rem; }
.legal ul { list-style: disc; padding-left: 1.3rem; color: var(--ink-suave); margin-bottom: 0.8rem; }
.legal li { margin-bottom: 0.3rem; }

/* ---------- Hero interno ---------- */
.hero-interno {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 3.6rem 0;
  background:
    radial-gradient(600px 300px at 90% -20%, rgba(245, 150, 0, 0.16), transparent 60%),
    radial-gradient(700px 380px at 0% 110%, rgba(176, 191, 10, 0.18), transparent 60%),
    var(--fundo);
  border-bottom: 1px solid var(--borda);
}
.hero-interno p { color: var(--ink-suave); max-width: 640px; margin: 0.9rem auto 0; }
.migalha { font-size: 0.85rem; color: var(--ink-suave); margin-bottom: 0.8rem; }
.migalha a { font-weight: 600; }

/* ---------- Footer ---------- */
.rodape {
  background: #1c2109;
  color: #cfd6b0;
  padding: 3.5rem 0 0;
  margin-top: 0;
}
.rodape-grid { display: grid; gap: 2.2rem; padding-bottom: 2.5rem; }
.rodape-logo img { width: 190px; filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4)); }
.rodape p { font-size: 0.93rem; margin-top: 0.9rem; max-width: 30rem; }
.rodape h4 {
  font-family: var(--fonte-display);
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.rodape ul li { margin-bottom: 0.55rem; }
.rodape a { color: #cfd6b0; transition: color 0.2s ease; }
.rodape a:hover { color: var(--verde-claro); }
.rodape .sociais a { background: rgba(255, 255, 255, 0.08); color: #e6ecc6; }
.rodape .sociais a:hover { background: var(--grad-marca); color: #fff; }
.rodape-base {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.3rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: #9aa37a;
}

/* ---------- WhatsApp flutuante ---------- */
.zap-flutuante {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
  animation: pulso 2.4s ease-out infinite;
  transition: transform 0.25s ease;
}
.zap-flutuante:hover { transform: scale(1.1); }
.zap-flutuante svg { width: 32px; height: 32px; }
@keyframes pulso {
  0% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5), 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Animações de revelação ---------- */
.revela {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.revela.visivel { opacity: 1; transform: none; }
.revela-d1 { transition-delay: 0.12s; }
.revela-d2 { transition-delay: 0.24s; }
.revela-d3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .revela { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Breakpoints — mobile-first
   ============================================================ */
@media (min-width: 640px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .depo-grid { grid-template-columns: repeat(2, 1fr); }
  .contato-grid { grid-template-columns: 1fr 1.05fr; }
  .rodape-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (min-width: 980px) {
  .secao { padding: 6rem 0; }
  .menu-btn { display: none; }
  .menu {
    position: static;
    transform: none;
    visibility: visible;
    background: transparent;
    border: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    backdrop-filter: none;
  }
  .menu a { padding: 0.55rem 0.95rem; font-size: 0.95rem; }
  .menu .menu-cta { margin-left: 0.5rem; padding: 0.55rem 1.3rem; border-radius: 99px; }
  .menu a.ativo, .menu .menu-plataforma { border-radius: 99px; }
  .menu .menu-plataforma { padding: 0.55rem 1.3rem; }
  .hero { padding: 6.5rem 0 7rem; }
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: 3rem; }
  .hero-metricas { grid-template-columns: repeat(3, 1fr); }
  .hero-card { margin-inline: 0 0 0 auto; }
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .depo-grid { grid-template-columns: repeat(3, 1fr); }
  .videos-grid .video-short { flex-basis: 240px; }
}

/* mascote no hero (substitui o card de inscricoes) */
.hero-mascote { display:block; width:100%; max-width:360px; height:auto; margin-inline:auto; }
/* no celular: mascote antes do titulo e texto (desktop mantem texto esq / mascote dir) */
@media (max-width: 979px) {
  .hero-mascote { order: -1; }
  /* titulo primeiro; "Especialista em Escolas de Futebol" logo abaixo do titulo */
  .hero-texto { display: flex; flex-direction: column; }
  .hero-texto h1 { order: -1; }
  .hero-texto .tag-hero { align-self: flex-start; }
}
