/* =========================================================
   BaratãoPromo — Design System
   Mobile-first, dark + amarelo Brasil, aesthetic premium
   ========================================================= */

:root {
  /* Cores */
  --bg-0: #0A0A0B;
  --bg-1: #111113;
  --bg-2: #18181B;
  --bg-3: #27272A;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --text-0: #FAFAFA;
  --text-1: #E4E4E7;
  --text-2: #A1A1AA;
  --text-3: #71717A;

  --yellow: #FFD60A;
  --yellow-dim: #FACC15;
  --yellow-dark: #B8860B;
  --yellow-glow: rgba(255, 214, 10, 0.35);

  --green-wa: #25D366;
  --green-wa-hover: #1FB358;
  --green-wa-dark: #128C7E;

  --red-pulse: #EF4444;

  /* Espaçamento */
  --container: 1180px;
  --gutter: clamp(20px, 5vw, 32px);
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-1: 180ms;
  --dur-2: 320ms;
  --dur-3: 560ms;
  --dur-4: 800ms;

  /* Sombras */
  --shadow-yellow: 0 0 40px rgba(255, 214, 10, 0.18);
  --shadow-card: 0 12px 32px -12px rgba(0, 0, 0, 0.6);
}

/* =========================================================
   Reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-0);
  background: var(--bg-0);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }

/* Skip link a11y */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--yellow);
  color: var(--bg-0);
  padding: 12px 20px;
  font-weight: 600;
  z-index: 9999;
  transition: top var(--dur-1);
}
.skip-link:focus { top: 0; }

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================================================
   Layout
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--yellow);
  color: var(--bg-0);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.04em;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3) inset;
}
.brand-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--yellow);
  background: var(--yellow);
  flex-shrink: 0;
}
.footer-brand .brand-avatar { width: 44px; height: 44px; }
.brand-name { color: var(--text-0); }
.brand-accent { color: var(--yellow); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform var(--dur-1) var(--ease-out),
              background var(--dur-2) var(--ease-out),
              box-shadow var(--dur-2) var(--ease-out),
              border-color var(--dur-2) var(--ease-out);
  white-space: nowrap;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }

.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-xl { padding: 18px 36px; font-size: 17px; gap: 12px; }

.btn-primary {
  background: var(--green-wa);
  color: white;
  box-shadow: 0 8px 24px -8px rgba(37, 211, 102, 0.5);
}
.btn-primary:hover {
  background: var(--green-wa-hover);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px -10px rgba(37, 211, 102, 0.65);
}

.btn-dark {
  background: var(--bg-0);
  color: var(--yellow);
  border-color: var(--bg-0);
}
.btn-dark:hover {
  background: var(--bg-2);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-0);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.icon-wa { width: 20px; height: 20px; flex-shrink: 0; }
.btn-xl .icon-wa { width: 22px; height: 22px; }

/* =========================================================
   Badges
   ========================================================= */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.04);
}
.badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-pulse);
  position: relative;
  flex-shrink: 0;
}
.badge .dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: inherit;
  animation: pulse 1.8s ease-out infinite;
}
.badge .dot.dot-dark { background: var(--bg-0); }
.badge .dot.dot-dark::after { background: var(--bg-0); }

.badge-yellow {
  border-color: rgba(255, 214, 10, 0.3);
  background: rgba(255, 214, 10, 0.08);
  color: var(--yellow);
}
.badge-yellow-solid {
  border-color: transparent;
  background: var(--yellow);
  color: var(--bg-0);
  font-weight: 700;
}
.badge-live {
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.06);
  color: var(--text-1);
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(60px, 12vh, 110px) 0 clamp(80px, 14vh, 130px);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-bg-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 760px;
  height: 760px;
  max-width: 110vw;
  background: radial-gradient(circle, var(--yellow-glow) 0%, transparent 60%);
  filter: blur(40px);
  opacity: 0.7;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.hero-mascote {
  position: relative;
  width: 100%;
  max-width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-mascote img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.55))
          drop-shadow(0 0 28px rgba(255, 214, 10, 0.18));
  animation: floatSoft 5.6s ease-in-out infinite;
  position: relative;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 90%, transparent 100%);
          mask-image: linear-gradient(to bottom, black 0%, black 90%, transparent 100%);
}

/* Base/plataforma decorativa abaixo do mascote */
.hero-mascote-base {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 78%;
  height: 80px;
  z-index: 2;
  pointer-events: none;
}
.hero-mascote-base::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 36px;
  background: radial-gradient(ellipse at 50% 100%,
              rgba(0, 0, 0, 0.55) 0%,
              rgba(0, 0, 0, 0.28) 40%,
              transparent 75%);
  filter: blur(8px);
}
.hero-mascote-base::after {
  content: '';
  position: absolute;
  left: 12%; right: 12%; bottom: 14px;
  height: 14px;
  background: radial-gradient(ellipse at center,
              rgba(255, 214, 10, 0.6) 0%,
              transparent 65%);
  filter: blur(6px);
  animation: spotlightPulse 3.2s ease-in-out infinite;
}

@keyframes spotlightPulse {
  0%, 100% { opacity: 0.6; transform: scaleX(1); }
  50% { opacity: 1; transform: scaleX(1.08); }
}

/* Confetes brasileiros */
.confetti {
  position: absolute;
  width: 10px;
  height: 14px;
  border-radius: 2px;
  opacity: 0.9;
  animation: confettiFall 4s ease-in-out infinite;
  will-change: transform;
}
.confetti.c1 { left:  8%; top: 12px; background: #FFD60A; transform: rotate(-22deg); animation-delay: 0s;   }
.confetti.c2 { left: 22%; top: 36px; background: #25D366; transform: rotate(14deg);  animation-delay: 0.5s; }
.confetti.c3 { left: 35%; top:  6px; background: #3B82F6; transform: rotate(-8deg);  animation-delay: 1.1s; width: 8px; height: 8px; border-radius: 50%; }
.confetti.c4 { left: 52%; top: 28px; background: #FFD60A; transform: rotate(35deg);  animation-delay: 1.6s; }
.confetti.c5 { left: 68%; top:  8px; background: #25D366; transform: rotate(-18deg); animation-delay: 0.8s; }
.confetti.c6 { left: 80%; top: 32px; background: #FFD60A; transform: rotate(22deg);  animation-delay: 0.3s; width: 8px; height: 8px; border-radius: 50%; }
.confetti.c7 { left: 92%; top: 16px; background: #3B82F6; transform: rotate(-12deg); animation-delay: 1.3s; }

@keyframes confettiFall {
  0%   { transform: translateY(-8px) rotate(var(--rot, 0deg)); opacity: 0; }
  20%  { opacity: 0.9; }
  100% { transform: translateY(28px) rotate(calc(var(--rot, 0deg) + 60deg)); opacity: 0; }
}
.hero-mascote-glow {
  position: absolute;
  inset: -8% -10%;
  background: radial-gradient(ellipse at center,
              rgba(255, 214, 10, 0.45) 0%,
              rgba(255, 214, 10, 0.16) 35%,
              transparent 70%);
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
}
@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-mascote img { animation: none; }
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 7.5vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  max-width: 920px;
}
.text-yellow { color: var(--yellow); }
.text-yellow-dark { color: var(--bg-0); }
.text-whatsapp { color: var(--green-wa); }

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--text-2);
  max-width: 600px;
  line-height: 1.55;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-2);
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-trust span {
  color: var(--yellow);
  font-weight: 700;
}

/* =========================================================
   Marketplaces strip
   ========================================================= */
.marketplaces {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-1);
}
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  text-align: center;
  margin-bottom: 18px;
}
.marketplace-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 22px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  color: var(--text-2);
  letter-spacing: -0.01em;
}
.marketplace-strip [aria-hidden] { color: var(--text-3); }

/* =========================================================
   Ticker animado (Vem pra Copa do Baratão / Baratão é hexa)
   ========================================================= */
.ticker {
  background: var(--yellow);
  color: var(--bg-0);
  overflow: hidden;
  padding: 16px 0;
  position: relative;
  border-top: 1px solid rgba(10, 10, 11, 0.15);
  border-bottom: 1px solid rgba(10, 10, 11, 0.15);
}
.ticker::before,
.ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--yellow), transparent);
}
.ticker::after {
  right: 0;
  background: linear-gradient(-90deg, var(--yellow), transparent);
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: tickerSlide 28s linear infinite;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(1.1rem, 3.2vw, 1.6rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker-track span { display: inline-flex; align-items: center; }
.ticker-star {
  font-size: 0.85em;
  color: var(--bg-0);
  opacity: 0.65;
}
@keyframes tickerSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker:hover .ticker-track {
  animation-play-state: paused;
}

/* =========================================================
   Como funciona
   ========================================================= */
.how {
  padding: clamp(64px, 10vh, 100px) 0;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: var(--text-2);
  font-size: 1.05rem;
  margin-bottom: 40px;
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 32px;
}
.step {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: border-color var(--dur-2), transform var(--dur-2);
}
.step:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
}
.step-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--yellow);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.step h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.step p {
  color: var(--text-2);
  font-size: 0.97rem;
  line-height: 1.55;
}

/* =========================================================
   Ofertas
   ========================================================= */
.ofertas {
  padding: clamp(64px, 10vh, 100px) 0;
  background: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
}
.ofertas-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}
.ofertas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.oferta-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  transition: border-color var(--dur-2), transform var(--dur-2);
}
.oferta-card:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
}
.oferta-img-wrap {
  position: relative;
  flex: 0 0 130px;
  aspect-ratio: 1;
  background: var(--bg-3);
  overflow: hidden;
}
.oferta-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.oferta-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--yellow);
  color: var(--bg-0);
  padding: 4px 9px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.oferta-info {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-width: 0;
}
.oferta-nome {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text-1);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}
.oferta-precos {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}
.preco-de {
  font-size: 0.78rem;
  color: var(--text-3);
  text-decoration: line-through;
}
.preco-por {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--yellow);
  letter-spacing: -0.01em;
}
.oferta-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-0);
  align-self: flex-start;
  transition: color var(--dur-1);
}
.oferta-link:hover { color: var(--yellow); }

.ofertas-cta {
  margin-top: 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.ofertas-cta p {
  color: var(--text-2);
  font-size: 0.95rem;
}

/* =========================================================
   Copa 2026 destaque
   ========================================================= */
.copa {
  padding: clamp(64px, 10vh, 100px) 0;
  background: var(--yellow);
  color: var(--bg-0);
  overflow: hidden;
  position: relative;
}
.copa-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.copa-text { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.copa .section-title { color: var(--bg-0); text-align: left; }
.copa-text p {
  color: rgba(10, 10, 11, 0.78);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 500px;
}
.copa-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 6px 0 8px;
}
.copa-tags li {
  background: rgba(10, 10, 11, 0.08);
  border: 1px solid rgba(10, 10, 11, 0.18);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}
.copa-art {
  position: relative;
  height: 220px;
  display: none;
}
.copa-blob {
  position: absolute;
  inset: 0;
  background: var(--bg-0);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.18;
}
.copa-star {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  background: conic-gradient(from 0deg, var(--bg-0), transparent, var(--bg-0), transparent, var(--bg-0));
  border-radius: 50%;
  animation: rotate 18s linear infinite;
  opacity: 0.06;
}
@keyframes rotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* =========================================================
   Manifesto
   ========================================================= */
.manifesto { padding: clamp(64px, 10vh, 100px) 0; }
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 40px;
}
.man-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--dur-2);
}
.man-card:hover { border-color: var(--yellow); }
.man-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.man-card p {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq { padding: clamp(64px, 10vh, 100px) 0; background: var(--bg-1); }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
  margin: 40px auto 0;
}
.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--dur-2);
}
.faq-item[open] { border-color: var(--yellow); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  color: var(--yellow);
  transition: transform var(--dur-2) var(--ease-out);
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-item p {
  padding: 0 22px 20px;
  color: var(--text-2);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* =========================================================
   CTA final
   ========================================================= */
.cta-final {
  padding: clamp(80px, 14vh, 130px) 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  max-width: 130vw;
  background: radial-gradient(circle, var(--yellow-glow) 0%, transparent 60%);
  filter: blur(50px);
  opacity: 0.5;
  pointer-events: none;
}
.cta-box {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  padding: clamp(36px, 7vw, 60px) clamp(24px, 5vw, 50px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card), var(--shadow-yellow);
}
.cta-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 5.5vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.cta-box p {
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 460px;
}
.cta-mini {
  font-size: 0.85rem !important;
  color: var(--text-3) !important;
  margin-top: 4px;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 50px 0 80px;
  background: var(--bg-0);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
}
.footer-tag {
  color: var(--text-3);
  font-size: 0.88rem;
}
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--text-3);
  font-size: 0.83rem;
  line-height: 1.6;
}
.footer-disclaimer { max-width: 680px; }

/* =========================================================
   Sticky CTA mobile
   ========================================================= */
.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--green-wa);
  color: white;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 12px 32px -8px rgba(37, 211, 102, 0.55);
  transition: transform var(--dur-1), box-shadow var(--dur-2);
}
.sticky-cta svg { width: 20px; height: 20px; }
.sticky-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -10px rgba(37, 211, 102, 0.7);
}

/* =========================================================
   Reveal on scroll
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-4) var(--ease-out),
              transform var(--dur-4) var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Breakpoints
   ========================================================= */
@media (min-width: 640px) {
  .how-grid { grid-template-columns: repeat(3, 1fr); }
  .ofertas-grid { grid-template-columns: repeat(2, 1fr); }
  .oferta-card { flex-direction: column; }
  .oferta-img-wrap { flex: none; width: 100%; aspect-ratio: 1; }
  .oferta-nome { font-size: 0.95rem; }
  .manifesto-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: row; align-items: flex-start; justify-content: space-between; }
  .footer-meta { text-align: right; max-width: 480px; align-items: flex-end; }
  .footer-disclaimer { text-align: right; }
}

@media (min-width: 960px) {
  .ofertas-grid { grid-template-columns: repeat(3, 1fr); }
  .copa-inner { grid-template-columns: 1fr 0.6fr; }
  .copa-art { display: block; }
  .manifesto-grid { grid-template-columns: repeat(4, 1fr); }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 56px;
  }
  .hero-content { align-items: flex-start; flex: 1; max-width: 580px; }
  .hero-trust { justify-content: flex-start; }
  .hero-mascote { max-width: 460px; flex: 0 0 auto; }
}

@media (min-width: 1180px) {
  .hero-mascote { max-width: 500px; }
}

@media (min-width: 1024px) {
  .sticky-cta { display: none; }
}

/* =========================================================
   Acessibilidade
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* Selection */
::selection {
  background: var(--yellow);
  color: var(--bg-0);
}

/* Scrollbar (Webkit) */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb {
  background: var(--bg-3);
  border-radius: 999px;
  border: 2px solid var(--bg-0);
}
::-webkit-scrollbar-thumb:hover { background: var(--text-3); }
