/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: #0e0720;
  color: #e8e0f5;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TICKER ===== */
.ticker-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #120828 0%, #1a0a40 48%, #120828 100%);
  overflow: hidden;
  padding: 10px 0;
  white-space: nowrap;
  border-bottom: 1px solid rgba(56,189,248,0.22);
}
.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: ticker-scroll 22s linear infinite;
}
.ticker-track span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 0 48px;
}
.ticker-track span::before {
  content: '\2605';
  margin-right: 12px;
  opacity: 0.8;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ===== TOKENS ===== */
:root {
  --purple-deep: #0e0720;
  --purple-dark: #180d35;
  --purple-mid: #2d1b6e;
  --purple-light: #5b38d4;
  --blue-vivid: #1e90ff;
  --cyan: #38bdf8;
  --gold: #f5c842;
  --gold-dark: #d4a017;
  --white: #ffffff;
  --text-soft: #c4b8e8;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.25s ease;
  --shadow-glow: 0 0 40px rgba(91,56,212,0.4);
  --container: 1140px;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
section { padding: 72px 0; }

/* ===== TYPOGRAPHY ===== */
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  text-align: center;
  margin-bottom: 16px;
}
.section-title--light { color: var(--white); }
.section-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-soft);
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-sub--light { color: rgba(255,255,255,0.8); }

/* ===== BUTTONS ===== */
.btn {
  display: block;
  margin: 0 auto;
  width: fit-content;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 50px;
  padding: 16px 36px;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-align: center;
}
.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #1a0d00;
  box-shadow: 0 4px 24px rgba(245,200,66,0.35);
}
.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(245,200,66,0.5);
}
.btn--hero { font-size: 1.15rem; padding: 20px 44px; width: 100%; max-width: 440px; }
.btn--grande { font-size: 1.2rem; padding: 22px 48px; width: 100%; }
.btn--checkout { background: linear-gradient(135deg, #f5c842 0%, #e89f00 100%); }

/* ===== STICKY CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(14,7,32,0.97);
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-top: 2px solid rgba(91,56,212,0.5);
  display: none;
  cursor: pointer;
}
.sticky-cta.visible { display: block; }
.btn-sticky {
  display: block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a0d00;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  padding: 14px 20px;
  border-radius: 50px;
  transition: transform var(--transition);
}
.btn-sticky:hover { transform: scale(1.02); }

/* ===== HERO ===== */
.hero {
  position: relative;
  background:
    linear-gradient(160deg, rgba(14,7,32,0.82) 0%, rgba(26,10,64,0.75) 40%, rgba(14,7,32,0.88) 100%),
    url('assets/img/hero-bg.jpg') center 20% / auto 60% no-repeat;
  padding: 80px 0 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__bg-glow {
  position: absolute;
  top: -100px; right: -100px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,56,212,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: flex-start;
  max-width: 820px;
  margin: 0 auto;
}
.hero__content { z-index: 2; }
.hero__bordao {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0.9;
}
.hero__logo-wrap { margin-bottom: 4px; }
.hero__logo {
  width: 100%;
  max-width: 840px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ===== HERO EVENT BAR ===== */
.hero__event-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(245,200,66,0.5);
  border-radius: 50px;
  padding: 12px 28px;
  box-shadow: 0 0 24px rgba(245,200,66,0.15), inset 0 0 20px rgba(245,200,66,0.04);
}
.hero__event-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.3px;
}
.hero__event-badge strong {
  color: var(--gold);
  font-weight: 800;
  font-size: 0.85rem;
}
.hero__event-sep {
  color: rgba(245,200,66,0.4);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;
}

.hero__headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero__headline-accent {
  display: block;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1.18;
  margin-top: 4px;
}
.hero__subheadline {
  font-size: clamp(1rem, 1.9vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
  line-height: 1.75;
  max-width: 560px;
}
.hero__subheadline strong { color: var(--white); font-weight: 700; }
.hero__subheadline--h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 560px;
}
.hero__deliverables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 18px;
  max-width: 500px;
}
.hero__deliverables span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--white);
  background: rgba(56,189,248,0.10);
  border: 1px solid rgba(56,189,248,0.32);
  border-radius: 999px;
  padding: 7px 12px;
  text-align: center;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.hero__badge {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(91,56,212,0.25);
  border: 1px solid rgba(91,56,212,0.5);
  color: var(--cyan);
  border-radius: 50px;
  padding: 6px 16px;
}
.hero__badge--gold {
  background: rgba(245,200,66,0.15);
  border-color: rgba(245,200,66,0.5);
  color: var(--gold);
}
.hero__price-block {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.price-old {
  font-size: 1rem;
  color: var(--text-soft);
  text-decoration: line-through;
}
.price-new {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
}
.hero__microcopy {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-top: 12px;
  text-align: center;
  max-width: 440px;
}
.hero__seals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.seal {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 5px 14px;
}
.hero__image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 4px;
}
.hero__photo {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 0 50px rgba(91,56,212,0.45));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ===== MISSÃO / ENTREGÁVEIS ===== */
.missao {
  background: linear-gradient(180deg, #0c0620 0%, #130930 100%);
  border-top: 1px solid rgba(245,200,66,0.2);
  border-bottom: 1px solid rgba(245,200,66,0.2);
}
.missao__intro {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: rgba(255,255,255,0.75);
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
  line-height: 1.85;
}
.missao__intro strong {
  color: var(--white);
  font-weight: 800;
}
.missao__table-wrap {
  overflow-x: auto;
  margin-bottom: 44px;
  border-radius: 18px;
  box-shadow:
    0 0 0 1px rgba(245,200,66,0.35),
    0 0 32px rgba(245,200,66,0.12),
    0 8px 40px rgba(0,0,0,0.45);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.missao__table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 18px;
  overflow: hidden;
}
.missao__table td {
  padding: 15px 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  border-bottom: 1px solid rgba(245,200,66,0.1);
  border-right: 1px solid rgba(245,200,66,0.1);
  vertical-align: middle;
  line-height: 1.5;
  background: rgba(14,7,32,0.7);
  transition: background 0.2s ease;
  display: table-cell;
}
.missao__table td:last-child { border-right: none; }
.missao__table tr:hover td { background: rgba(245,200,66,0.06); }
.missao__table tr:nth-child(even) td { background: rgba(255,255,255,0.03); }
.missao__table tr:nth-child(even):hover td { background: rgba(245,200,66,0.06); }

/* checkmark alinhado */
.chk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  line-height: 1;
  box-shadow: 0 0 8px rgba(34,197,94,0.4);
}

.missao__table-footer td {
  background: linear-gradient(90deg, rgba(245,200,66,0.18) 0%, rgba(91,56,212,0.22) 100%) !important;
  color: var(--gold);
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 0.92rem;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  border-top: 2px solid rgba(245,200,66,0.45) !important;
  border-bottom: none;
  padding: 18px 24px;
  text-shadow: 0 0 16px rgba(245,200,66,0.5);
}
.missao__table-footer tr:hover td { background: rgba(245,200,66,0.06); }

.missao__closing {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  color: rgba(255,255,255,0.8);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.75;
  font-weight: 500;
  padding: 28px 24px;
  background: rgba(91,56,212,0.1);
  border: 1px solid rgba(91,56,212,0.25);
  border-radius: var(--radius);
}
.missao__closing strong { color: var(--white); font-weight: 800; }


/* ===== DOR ===== */
.dor {
  background: linear-gradient(180deg, #0e0720 0%, #120828 100%);
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.card--dor {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(91,56,212,0.25);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--transition), transform var(--transition);
}
.card--dor:hover {
  border-color: rgba(91,56,212,0.6);
  transform: translateY(-4px);
}
.card__icon { font-size: 1.8rem; }
.card--dor p { font-size: 0.95rem; color: var(--text-soft); line-height: 1.6; }
.dor__cta-wrap { text-align: center; }


.implementation-box {
  max-width: 860px;
  margin: 10px auto 32px;
  text-align: center;
  background: linear-gradient(135deg, rgba(56,189,248,0.08) 0%, rgba(91,56,212,0.16) 100%);
  border: 1px solid rgba(56,189,248,0.28);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.implementation-box__label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.implementation-box h3 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 14px;
}
.implementation-box p {
  color: var(--text-soft);
  max-width: 690px;
  margin: 0 auto 20px;
}
.not-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.not-list span {
  font-family: 'Outfit', sans-serif;
  color: var(--cyan);
  background: rgba(14,7,32,0.56);
  border: 1px solid rgba(56,189,248,0.22);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 0.82rem;
  font-weight: 700;
}

/* ===== EVENTO ===== */
.evento {
  background: linear-gradient(135deg, #1a0a40 0%, #0e0720 100%);
}
.evento__tag {
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.evento__destaques {
  text-align: center;
  margin: 16px auto 48px;
  max-width: 600px;
}
.evento__frase {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}
.evento__frase strong { color: var(--cyan); }
.pilares-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.pilar {
  background: linear-gradient(135deg, rgba(45,27,110,0.5) 0%, rgba(14,7,32,0.5) 100%);
  border: 1px solid rgba(91,56,212,0.3);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.pilar:hover { border-color: var(--cyan); transform: translateY(-5px); }
.pilar__icon { font-size: 2.2rem; margin-bottom: 16px; }
.pilar h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.pilar p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.6; }

/* ===== PARA QUEM ===== */
.para-quem { background: #0e0720; }
.pq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.pq-card {
  background: linear-gradient(135deg, rgba(30,144,255,0.08) 0%, rgba(91,56,212,0.1) 100%);
  border: 1px solid rgba(30,144,255,0.2);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: border-color var(--transition), transform var(--transition);
}
.pq-card:hover { border-color: var(--blue-vivid); transform: translateY(-5px); }
.pq-card__icon { font-size: 2rem; margin-bottom: 14px; }
.pq-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.pq-card p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.6; }
.para-quem__cta { text-align: center; }

/* ===== APRENDER ===== */
.aprender {
  background: linear-gradient(160deg, #120828 0%, #1a0a40 100%);
}
.aprender__inner {
  display: block;
  max-width: 720px;
  margin: 0 auto;
}
.aprender__lista {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.aprender__lista li {
  display: flex;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.6;
}
.aprender__lista li span {
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1.1rem;
  margin-top: 2px;
}



/* ===== MODOS / ESTRATÉGIAS ===== */
.modos { background: #0e0720; border-top: 1px solid rgba(91,56,212,0.2); }
.modos__inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; margin-bottom: 56px; }
.modo-bloco { border-radius: var(--radius); padding: 32px; border: 1px solid rgba(255,255,255,0.1); }
.modo-bloco--offline { background: rgba(255,255,255,0.035); }
.modo-bloco--digital { background: rgba(56,189,248,0.08); border-color: rgba(56,189,248,0.25); }
.modo-bloco .section-title { font-size: 1.55rem; text-align: left; margin-bottom: 14px; }
.modo-bloco .section-sub { text-align: left; margin-bottom: 22px; }
.modo-bloco h3 { font-family: 'Outfit', sans-serif; color: var(--gold); margin-bottom: 14px; font-size: 1.02rem; }
.modo-bloco ul { color: var(--text-soft); line-height: 1.8; }
.emocional-bloco { text-align: center; max-width: 860px; margin: 0 auto; padding: 38px 24px; background: linear-gradient(135deg, rgba(45,27,110,0.45), rgba(14,7,32,0.7)); border: 1px solid rgba(91,56,212,0.28); border-radius: var(--radius); }
.emocional-bloco .section-title { font-size: clamp(1.45rem, 3vw, 2rem); }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 24px 0 22px; }
.tag-list span { color: var(--gold); background: rgba(245,200,66,0.12); border: 1px solid rgba(245,200,66,0.28); border-radius: 999px; padding: 8px 14px; font-size: 0.85rem; font-weight: 700; }
.emocional-bloco__forte { color: var(--white); font-family: 'Outfit', sans-serif; font-size: 1.15rem; font-weight: 800; }

/* ===== AUTORIDADE ===== */
.autoridade { background: #0e0720; }
.autoridade__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 40px;
}
.autoridade__bio p {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 28px;
}
.autoridade__bio strong { color: var(--white); }
.autoridade__selos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.auto-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-soft);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(91,56,212,0.2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}
.auto-item span { font-size: 1.1rem; }

/* YouTube Facade */
.yt-facade {
  position: relative;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.yt-facade__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.yt-facade:hover .yt-facade__thumb { transform: scale(1.03); }
.yt-facade__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}
.yt-facade:hover .yt-facade__play { transform: translate(-50%, -50%) scale(1.15); }
.yt-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== COMUNIDADE ===== */
.comunidade {
  background: linear-gradient(135deg, #1a0a40 0%, #0e0720 100%);
}
.comunidade__slider-wrapper {
  position: relative;
  margin-bottom: 48px;
}
.comunidade__fotos {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
}
.comunidade__fotos::-webkit-scrollbar { display: none; }
.foto-card {
  flex: 0 0 calc(50% - 10px);
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(91,56,212,0.2);
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(14, 7, 32, 0.9);
  color: var(--white);
  border: 1px solid rgba(91,56,212,0.5);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.slider-arrow:hover { background: var(--purple-light); transform: translateY(-50%) scale(1.1); }
.slider-arrow--prev { left: -22px; }
.slider-arrow--next { right: -22px; }
.foto-card img { width: 100%; height: 300px; object-fit: cover; object-position: top; }
.comunidade__numeros {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}
.num-item {
  text-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(91,56,212,0.2);
  border-radius: var(--radius);
  padding: 24px 16px;
}
.num-item__n {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 4px;
}
.num-item__l { font-size: 0.85rem; color: var(--text-soft); }
.comunidade__aviso {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== OFERTA ===== */
.oferta { background: #0e0720; }
.oferta__box {
  max-width: 640px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(45,27,110,0.6) 0%, rgba(14,7,32,0.8) 100%);
  border: 2px solid rgba(91,56,212,0.5);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-glow);
}
.oferta__tag {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,200,66,0.12);
  border: 1px solid rgba(245,200,66,0.3);
  border-radius: 50px;
  padding: 6px 18px;
  margin-bottom: 20px;
}
.oferta__titulo {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}
.oferta__com { font-size: 1rem; color: var(--text-soft); margin-bottom: 8px; }
.oferta__com strong { color: var(--white); }
.oferta__data { font-size: 0.92rem; color: var(--cyan); margin-bottom: 32px; }
.oferta__preco {
  margin-bottom: 32px;
}
.preco-ancora {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 8px;
}
.preco-ancora__de {
  font-size: 1.1rem;
  color: var(--text-soft);
  text-decoration: none;
}
.preco-ancora__de s {
  text-decoration: line-through;
  opacity: 0.7;
}
.preco-ancora__seta {
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
}
.preco-ancora__por {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 24px rgba(245,200,66,0.4);
}
.preco-ancora__economia {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #4ade80;
  background: rgba(74,222,128,0.12);
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: 50px;
  padding: 4px 16px;
  display: inline-block;
  margin-top: 4px;
}
.oferta__microcopy {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-top: 16px;
}
.oferta__include {
  margin-top: 32px;
  text-align: left;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
}
.oferta__include h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.oferta__include li { font-size: 0.9rem; color: var(--text-soft); padding: 4px 0; }

/* ===== URGÊNCIA ===== */
.urgencia {
  background: linear-gradient(135deg, #1e0a50 0%, #0e0720 100%);
  border-top: 1px solid rgba(91,56,212,0.3);
  border-bottom: 1px solid rgba(91,56,212,0.3);
}
.urgencia__inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  max-width: 780px;
  margin: 0 auto;
}
.urgencia__icon { font-size: 3rem; flex-shrink: 0; }
.urgencia__text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.urgencia__text p { font-size: 0.98rem; color: var(--text-soft); margin-bottom: 24px; }
.urgencia__text strong { color: var(--gold); }
.countdown-wrap { margin-bottom: 28px; }
.countdown-label { font-size: 0.85rem; color: var(--text-soft); margin-bottom: 12px; }
.countdown {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(91,56,212,0.3);
  border-radius: 10px;
  padding: 12px 18px;
  min-width: 64px;
}
.cd-block span {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.cd-block small { font-size: 0.7rem; color: var(--text-soft); margin-top: 4px; }
.cd-sep { font-size: 1.5rem; font-weight: 700; color: var(--purple-light); }

/* ===== FAQ ===== */
.faq { background: #0e0720; }
.faq-list { max-width: 720px; margin: 0 auto 48px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(91,56,212,0.2);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: rgba(91,56,212,0.5); }
.faq-item summary {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--cyan); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { font-size: 0.93rem; color: var(--text-soft); padding: 0 20px 18px; line-height: 1.7; }
.faq__cta { text-align: center; }

/* ===== FOOTER ===== */
.footer {
  background: #080416;
  border-top: 1px solid rgba(91,56,212,0.2);
  padding: 48px 0 32px;
  text-align: center;
}
.footer__logo { margin: 0 auto 20px; width: fit-content; }
.footer__logo img { width: 200px; }
.footer__evento { font-size: 0.95rem; color: var(--text-soft); margin-bottom: 16px; }
.footer__aviso { font-size: 0.78rem; color: rgba(255,255,255,0.3); max-width: 640px; margin: 0 auto 20px; line-height: 1.7; }
.footer__links { font-size: 0.78rem; color: rgba(255,255,255,0.25); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 0; max-width: 820px; margin: 0 auto; }
  .hero__content { order: 1; margin-bottom: 0; }
  .hero { padding-bottom: 40px; }
  .hero__logo { max-width: 100%; }

  .autoridade__inner { grid-template-columns: 1fr; }
  .autoridade__selos { grid-template-columns: 1fr; }
  .foto-card { flex: 0 0 100%; }
  .comunidade__numeros { grid-template-columns: 1fr; }
  .urgencia__inner { flex-direction: column; }
  .sticky-cta.visible { display: block; }
  .slider-arrow { width: 36px; height: 36px; font-size: 1rem; }
  .slider-arrow--prev { left: -5px; }
  .slider-arrow--next { right: -5px; }
}
@media (max-width: 600px) {
  section { padding: 44px 0; }
  .hero { padding: 14px 0 32px; background-position: center top; }
  .hero__logo-wrap { margin-bottom: 0; }
  .hero__logo { max-width: 100%; }
  .hero__headline { margin-bottom: 12px; }
  .hero__subheadline { margin-bottom: 14px; }
  .hero__meta { margin-bottom: 14px; }
  .hero__microcopy { margin-top: 8px; }
  .hero__seals { margin-top: 12px; gap: 6px; margin-bottom: 0; }
  .hero__deliverables { grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 14px; }
  .hero__deliverables span { font-size: 0.76rem; padding: 6px 8px; }
  .dor { padding-top: 18px; }
  .btn--hero { font-size: 1rem; padding: 18px 28px; }
  .oferta__box { padding: 32px 20px; }
  .countdown { gap: 4px; }
  .cd-block { min-width: 52px; padding: 10px 12px; }
  .cd-block span { font-size: 1.5rem; }
}
