/* ============================================================
   Clube Guriri — Site de apresentação
   Design tokens espelham o app (cyan #20F1EE -> magenta #FB2954)
   ============================================================ */

:root {
  /* Marca */
  --cyan: #20f1ee;
  --magenta: #fb2954;
  --pink: #fe2c55;
  --grad: linear-gradient(135deg, #20f1ee 0%, #fb2954 100%);
  --grad-soft: linear-gradient(135deg, rgba(32, 241, 238, 0.16), rgba(251, 41, 84, 0.16));

  /* Superfícies (tema escuro — padrão, igual ao app) */
  --bg: #0b0b0f;
  --bg-2: #101015;
  --surface: #14141a;
  --surface-2: #1a1a22;
  --border: #23232c;
  --text: #f5f5f7;
  --text-muted: #a1a1ad;
  --text-dim: #6f6f7b;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --maxw: 1160px;
  --header-h: 68px;

  --shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 18px 50px -12px rgba(251, 41, 84, 0.4);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Tema claro opcional */
html[data-theme='light'] {
  --bg: #f6f7f9;
  --bg-2: #ffffff;
  --surface: #ffffff;
  --surface-2: #f1f2f5;
  --border: #e4e6eb;
  --text: #101015;
  --text-muted: #54545f;
  --text-dim: #8a8a96;
  --shadow: 0 20px 60px -24px rgba(15, 15, 25, 0.18);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 20px;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section {
  padding: 84px 0;
  position: relative;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--magenta);
}

.section-title {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 900;
  line-height: 1.12;
  margin: 10px 0 14px;
  letter-spacing: -0.02em;
}

.section-sub {
  color: var(--text-muted);
  max-width: 620px;
  font-size: 1.02rem;
}

.center {
  text-align: center;
}

.center .section-sub {
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip link de acessibilidade */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--grad);
  color: #000;
  font-weight: 800;
  padding: 10px 16px;
  border-radius: 10px;
  transition: top 0.2s var(--ease);
}
.skip-link:focus {
  top: 12px;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
    background 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--grad);
  color: #07070a;
  box-shadow: var(--shadow-glow);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--cyan);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.02rem;
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* ============================================================
   Header / Navegação
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo wordmark + monograma "CG" */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--grad);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(251, 41, 84, 0.28);
  flex-shrink: 0;
}
.brand-mark::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.62));
}
.brand-mark span {
  position: relative;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-text .brand-top {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  font-weight: 700;
  color: var(--text-dim);
}
.brand-text .brand-bottom {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

/* Nav desktop */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}
.nav-desktop a:hover {
  color: var(--text);
  background: var(--surface);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Seletor de idioma */
.lang-select {
  appearance: none;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 30px 8px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23a1a1ad' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

/* Botão tema */
.icon-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}
.icon-btn:hover {
  border-color: var(--cyan);
  transform: translateY(-1px);
}
.icon-btn svg {
  width: 18px;
  height: 18px;
}
html[data-theme='light'] .icon-btn .moon,
html:not([data-theme='light']) .icon-btn .sun {
  display: none;
}

/* Hambúrguer mobile */
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  place-items: center;
}
.nav-toggle svg {
  width: 22px;
  height: 22px;
}

/* Drawer mobile */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: none;
}
.mobile-drawer.open {
  display: block;
}
.mobile-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
}
.mobile-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(82vw, 320px);
  background: var(--bg-2);
  border-left: 1px solid var(--border);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateX(100%);
  transition: transform 0.32s var(--ease);
  overflow-y: auto;
}
.mobile-drawer.open .mobile-drawer__panel {
  transform: translateX(0);
}
.mobile-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.mobile-drawer a {
  font-size: 1.05rem;
  font-weight: 700;
  padding: 14px 12px;
  border-radius: 12px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-drawer a:hover {
  background: var(--surface);
}
.mobile-drawer .btn {
  margin-top: 18px;
  width: 100%;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 60px) 0 70px;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background: radial-gradient(
      52% 52% at 22% 18%,
      rgba(32, 241, 238, 0.35),
      transparent
    ),
    radial-gradient(54% 54% at 82% 60%, rgba(251, 41, 84, 0.32), transparent);
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero__badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 0 4px rgba(251, 41, 84, 0.18);
}
.hero h1 {
  font-size: clamp(2.3rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 22px 0 18px;
}
.hero p.lead {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--text-muted);
  max-width: 560px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.hero__stats {
  display: flex;
  gap: 34px;
  margin-top: 42px;
  flex-wrap: wrap;
}
.hero__stats .stat-value {
  font-size: 1.8rem;
  font-weight: 900;
}
.hero__stats .stat-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--text-dim);
}

/* Mockup do celular */
.hero__visual {
  display: grid;
  place-items: center;
}
.phone {
  position: relative;
  width: 280px;
  height: 570px;
  background: #050507;
  border-radius: 44px;
  border: 10px solid #15151c;
  box-shadow: var(--shadow), 0 0 0 2px rgba(255, 255, 255, 0.03);
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}
.phone::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 26px;
  background: #050507;
  border-radius: 0 0 16px 16px;
  z-index: 3;
}
.phone__screen {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0c0c12, #16161f);
  display: flex;
  flex-direction: column;
}
.phone__hero-img {
  height: 46%;
  background-size: cover;
  background-position: center;
  position: relative;
}
.phone__hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0c0c12, transparent 60%);
}
.phone__body {
  flex: 1;
  padding: 16px 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.phone__title {
  font-weight: 900;
  font-size: 1.1rem;
}
.phone__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.phone__chip {
  font-size: 0.6rem;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--grad-soft);
  border: 1px solid var(--border);
  color: var(--text);
}
.phone__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}
.phone__card {
  height: 64px;
  border-radius: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}
.phone__bar {
  margin-top: auto;
  height: 52px;
  border-radius: 16px;
  background: var(--grad);
  display: grid;
  place-items: center;
  color: #000;
  font-weight: 900;
  font-size: 0.85rem;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

/* ============================================================
   Cards genéricos / grids
   ============================================================ */
.grid {
  display: grid;
  gap: 20px;
  margin-top: 44px;
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--cyan) 60%, var(--border));
  box-shadow: var(--shadow);
}
.card__icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--grad);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.card__icon svg {
  width: 24px;
  height: 24px;
  color: #07070a;
}
.card h3 {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Categorias com imagem */
.cat-card {
  position: relative;
  height: 230px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.6s var(--ease);
}
.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(5, 5, 8, 0.92), rgba(5, 5, 8, 0.15) 65%, transparent);
}
.cat-card:hover img {
  transform: scale(1.08);
}
.cat-card__body {
  padding: 20px;
  color: #fff;
}
.cat-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--grad);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  font-size: 1.2rem;
}
.cat-card__icon svg {
  width: 20px;
  height: 20px;
  color: #000;
}
.cat-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
}
.cat-card .cat-card__hint {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 4px;
}
.cat-card__tag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
}

/* Lista com checks (páginas internas) */
.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 9px 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.check-list li:last-child {
  border-bottom: none;
}
.check-list svg {
  width: 18px;
  height: 18px;
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 4px;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   Faixa "Abrir App Web" / CTA
   ============================================================ */
.cta-band {
  background: var(--grad);
  border-radius: var(--radius-lg);
  padding: 2px;
  margin: 0 auto;
}
.cta-band__inner {
  background: var(--bg-2);
  border-radius: calc(var(--radius-lg) - 2px);
  padding: 54px 32px;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 12px;
}
.cta-band p {
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 26px;
}

/* Banner "Breve nas lojas" */
.stores-banner {
  text-align: center;
  padding: 60px 0 30px;
}
.stores-banner__pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 16px 28px;
  font-weight: 800;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
}
.stores-banner__pill .grad-text {
  white-space: nowrap;
}
.store-badges {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 20px;
  opacity: 0.7;
  cursor: default;
}
.store-badge svg {
  width: 26px;
  height: 26px;
}
.store-badge .store-badge__txt small {
  display: block;
  font-size: 0.62rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.store-badge .store-badge__txt strong {
  font-size: 1rem;
}
.store-badge__soon {
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--grad-soft);
  color: var(--text);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  padding: 56px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}
.footer-grid h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.footer-grid a {
  display: block;
  color: var(--text-muted);
  padding: 6px 0;
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-grid a:hover {
  color: var(--cyan);
}
.footer-about p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 14px 0;
  max-width: 320px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.footer-social svg {
  width: 18px;
  height: 18px;
}
.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* ============================================================
   VLibras (acessibilidade em Libras)
   ============================================================ */
.vlibras-hint {
  position: fixed;
  right: 16px;
  bottom: 84px;
  z-index: 90;
}

/* Página interna — hero compacto */
.page-hero {
  padding: calc(var(--header-h) + 56px) 0 30px;
  position: relative;
  overflow: hidden;
}
.page-hero__glow {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
  background: radial-gradient(50% 60% at 20% 10%, rgba(32, 241, 238, 0.3), transparent),
    radial-gradient(50% 60% at 85% 40%, rgba(251, 41, 84, 0.28), transparent);
}
.breadcrumb {
  position: relative;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.breadcrumb a {
  color: var(--text-muted);
}
.breadcrumb a:hover {
  color: var(--cyan);
}
.page-hero h1 {
  position: relative;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.page-hero p {
  position: relative;
  color: var(--text-muted);
  max-width: 640px;
  margin-top: 14px;
  font-size: 1.05rem;
}

/* Split de conteúdo */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split.reverse > :first-child {
  order: 2;
}
.media-box {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--grad-soft);
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  font-size: 4rem;
  overflow: hidden;
}
.media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   Responsivo
   ============================================================ */
@media (max-width: 960px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__visual {
    order: -1;
  }
  .phone {
    width: 240px;
    height: 490px;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .split,
  .split.reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .split.reverse > :first-child {
    order: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .nav-desktop,
  .header-actions .btn,
  .header-actions .lang-select {
    display: none;
  }
  .nav-toggle {
    display: grid;
  }
  .section {
    padding: 60px 0;
  }
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .hero__stats {
    gap: 22px;
  }
}

@media (max-width: 420px) {
  .container {
    padding-inline: 16px;
  }
  .cta-band__inner {
    padding: 38px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Impressão */
@media print {
  .site-header,
  .mobile-drawer,
  .vlibras-hint,
  [vw] {
    display: none !important;
  }
}

/* ============================================================
   FAQ (acordeão)
   ============================================================ */
.faq-list {
  max-width: 760px;
  margin: 44px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-item__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 700;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}
.faq-item__q .chev {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  color: var(--cyan);
}
.faq-item.open .faq-item__q .chev {
  transform: rotate(180deg);
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-item.open .faq-item__a {
  max-height: 320px;
}
.faq-item__a p {
  padding: 0 20px 18px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Passos "como funciona" */
.step {
  position: relative;
  padding-top: 8px;
}
.step__num {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--grad);
  color: #000;
  font-weight: 900;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}
