/* ===================== TOKENS ===================== */
:root {
  --amarelo: #FDC500;
  --azul: #1E7FE8;          /* azul elétrico (banner) */
  --azul-aceso: #3D9BFF;    /* highlight/glow */
  --azul-claro: #29ABE2;
  --navy: #0B1550;
  --navy-deep: #050A24;
  --navy-mid: #091038;
  --navy-card: #0D1745;

  --white: #FFFFFF;
  --text: #C9D2EC;
  --muted: #8B96C4;
  --dim: #5F6A99;

  --border: rgba(93,140,255,.22);
  --border-glow: rgba(93,155,255,.55);

  --font-heading: 'Archivo', system-ui, sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  --radius: 16px;
  --radius-lg: 22px;
  --container-w: 1180px;
  --container-narrow-w: 760px;
  --sticky-bar-h: 68px;
}

/* ===================== RESET ===================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--navy-deep);
  background-image:
    radial-gradient(900px 520px at 78% 2%, rgba(30,127,232,.28), transparent 62%),
    radial-gradient(760px 460px at 8% 26%, rgba(30,127,232,.18), transparent 60%),
    radial-gradient(700px 500px at 50% 100%, rgba(30,127,232,.16), transparent 60%),
    linear-gradient(90deg, rgba(93,140,255,.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(93,140,255,.055) 1px, transparent 1px),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-mid) 45%, var(--navy-deep) 100%);
  background-size: auto, auto, auto, 64px 64px, 64px 64px, auto;
  background-attachment: fixed;
  line-height: 1.6; font-size: 16px;
  padding-bottom: var(--sticky-bar-h);
  -webkit-font-smoothing: antialiased;
}
/* marca d'água: logo do Bráulio Brant ao fundo do site */
body::before {
  content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    url('../assets/img/logo-braulio-brant-dark.png') center 34% / min(1150px, 130%) no-repeat;
  opacity: .07;
  filter: drop-shadow(0 0 40px rgba(41,171,226,.5));
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3 {
  font-family: var(--font-heading); font-weight: 800; line-height: 1.02;
  letter-spacing: -.015em; color: var(--white); text-transform: uppercase;
}

.container { width: 100%; max-width: var(--container-w); margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: var(--container-narrow-w); }

.section { padding: 68px 0; position: relative; }
.section h2 { font-size: 2rem; margin-bottom: 30px; }

/* ===================== NEON: luz que caminha ===================== */
@property --angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }

/* luz amarela percorrendo as letras, em looping contínuo */
@keyframes luzAndante {
  0%   { background-position: 190% 0; }
  100% { background-position: -90% 0; }
}
/* luz amarela dando a volta na borda */
@keyframes bordaAndante { to { --angle: 360deg; } }
/* reflexo atravessando o card */
@keyframes neonSweep {
  0%   { transform: translateX(-120%); }
  55%  { transform: translateX(220%); }
  100% { transform: translateX(220%); }
}

/* ===================== ASSINATURA: texto com luz amarela caminhando ===================== */
.acesa {
  /* começa e termina em azul -> o padrão emenda sem costura ao repetir,
     garantindo que a palavra NUNCA fique sem preenchimento (sem sumir) */
  background-image: linear-gradient(100deg,
    var(--azul-aceso) 0%, var(--azul-aceso) 40%,
    var(--amarelo) 47%, #FFF3B0 50%, var(--amarelo) 53%,
    var(--azul-aceso) 60%, var(--azul-aceso) 100%);
  background-size: 320% 100%;
  background-repeat: repeat;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 0 12px rgba(61,155,255,.55)) drop-shadow(0 0 30px rgba(30,127,232,.3));
  animation: luzAndante 5.5s linear infinite;
}

/* borda com luz amarela dando a volta */
.borda-luz { position: relative; }
.borda-luz::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 2px;
  background: conic-gradient(from var(--angle),
    transparent 0%, transparent 62%,
    rgba(253,197,0,.35) 72%, var(--amarelo) 80%, #FFF6C4 83%, var(--amarelo) 86%,
    rgba(253,197,0,.35) 94%, transparent 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  mask-composite: exclude;
  animation: bordaAndante 5s linear infinite;
  pointer-events: none; z-index: 4;
}

/* ===================== EYEBROW / BADGE ===================== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: .7rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
  background: rgba(30,127,232,.1); border: 1px solid var(--border);
  padding: 7px 14px 7px 12px; border-radius: 999px; margin-bottom: 18px;
}
.eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--amarelo);
  box-shadow: 0 0 10px var(--amarelo), 0 0 18px rgba(253,197,0,.5);
}

.badge-combo {
  display: inline-block; font-family: var(--font-heading); font-weight: 800;
  font-size: .95rem; letter-spacing: .22em; text-transform: uppercase; color: var(--white);
  background: linear-gradient(180deg, #1E7FE8, #1360BE);
  border: 1px solid var(--border-glow); border-radius: 10px;
  padding: 8px 22px; margin-bottom: 16px;
  box-shadow: 0 0 26px rgba(30,127,232,.5), inset 0 1px 0 rgba(255,255,255,.25);
}

/* ===================== HEADER ===================== */
.site-header { position: sticky; top: 14px; z-index: 50; padding: 0 16px; margin-top: 14px; }
.header-pill {
  max-width: var(--container-w); margin: 0 auto;
  display: flex; align-items: center; gap: 20px;
  background: rgba(9,16,56,.82); backdrop-filter: blur(14px);
  border: 1px solid var(--border); border-radius: 999px;
  padding: 10px 12px 10px 18px;
  box-shadow: 0 14px 44px rgba(0,0,0,.5), inset 0 1px 0 rgba(93,155,255,.14);
}
.header-nav { display: none; gap: 26px; margin-left: auto; }
.header-nav a { color: var(--muted); font-size: .92rem; font-weight: 600; transition: color .15s ease; }
.header-nav a:hover { color: var(--azul-aceso); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; text-align: center;
  border-radius: 999px; cursor: pointer; border: none;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn:active { transform: scale(.98); }
/* botão amarelo em vidro — translúcido, com borda e brilho neon */
.btn-primary {
  background: linear-gradient(180deg, rgba(253,197,0,.22), rgba(253,197,0,.10));
  color: var(--amarelo);
  border: 1px solid rgba(253,197,0,.55);
  backdrop-filter: blur(8px);
  padding: 16px 28px; font-size: 1.02rem;
  text-shadow: 0 0 14px rgba(253,197,0,.5);
  box-shadow: 0 0 26px rgba(253,197,0,.22), inset 0 1px 0 rgba(255,231,140,.35);
  position: relative; overflow: hidden;
}
/* brilho caminhando pelo botão */
.btn-primary::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255,231,140,.32), transparent);
  transform: translateX(-160%);
  animation: neonSweep 4.5s ease-in-out infinite;
  pointer-events: none;
}
.btn-primary:hover {
  background: linear-gradient(180deg, rgba(253,197,0,.36), rgba(253,197,0,.18));
  border-color: var(--amarelo); color: #FFEFA8;
  box-shadow: 0 0 44px rgba(253,197,0,.5), inset 0 1px 0 rgba(255,231,140,.5);
}
/* botão secundário (contorno) — reduz o excesso de amarelo */
.btn-ghost {
  background: rgba(30,127,232,.10); color: var(--white);
  border: 1px solid var(--border-glow);
  padding: 15px 26px; font-size: 1rem;
  box-shadow: inset 0 1px 0 rgba(93,155,255,.18);
}
.btn-ghost:hover { background: rgba(30,127,232,.22); box-shadow: 0 0 26px rgba(30,127,232,.4); }

.btn-lg { width: 100%; font-size: 1.08rem; padding: 18px 24px; }
.btn-block { width: 100%; }
.btn-header {
  margin-left: auto; padding: 11px 20px; font-size: .9rem; white-space: nowrap;
}
.header-nav + .btn-header { margin-left: 0; }

.microcopy { text-align: center; font-size: .84rem; color: var(--dim); margin-top: 12px; }
.cta-block { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }

/* ===================== CARD BASE (painel tech) ===================== */
.beneficio-card, .depoimento-card, .accordion-item, .dor-list li,
.urgencia-box, .curso-card, .numero-item, .recursos-bar {
  background: linear-gradient(180deg, rgba(30,127,232,.10), rgba(13,23,69,.6));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(93,155,255,.12);
}

/* ===================== PHOTO / VIDEO SLOTS ===================== */
.photo-slot { position: relative; background: rgba(30,127,232,.08); border-radius: var(--radius); overflow: hidden; }
.photo-slot .slot-label { display: none; }
.photo-slot.is-empty {
  display: flex; align-items: center; justify-content: center; min-height: 160px;
  border: 2px dashed var(--border);
}
.photo-slot.is-empty img { display: none; }
.photo-slot.is-empty .slot-label {
  display: block; text-align: center; font-size: .8rem; color: var(--dim);
  padding: 16px; line-height: 1.5;
}

.logo-slot { width: 128px; height: 46px; background: transparent; flex-shrink: 0; }
.logo-slot img { height: 46px; width: auto; object-fit: contain; }
.logo-slot.is-empty { min-height: 46px; border: 1px dashed var(--border); }
.logo-slot.is-empty .slot-label { font-size: .6rem; color: var(--dim); padding: 4px; }

.hero-photo-slot img, .solucao-photo-slot img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-slot { aspect-ratio: 4/5; }
.solucao-photo-slot { aspect-ratio: 4/3; }
.depoimento-photo-slot { width: 84px; height: 84px; border-radius: 50%; flex-shrink: 0; }
.depoimento-photo-slot img { width: 100%; height: 100%; object-fit: cover; }
.depoimento-photo-slot.is-empty { min-height: 0; }
.depoimento-photo-slot.is-empty .slot-label { font-size: .55rem; padding: 4px; }

.video-slot {
  position: relative; aspect-ratio: 16/9; background: rgba(5,10,36,.6);
  border-radius: var(--radius); overflow: hidden; margin-bottom: 24px;
  border: 1px solid var(--border);
}
.video-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.video-slot-inner {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px; text-align: center; padding: 20px;
}
.play-icon {
  width: 58px; height: 58px; border-radius: 50%; background: var(--azul); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  box-shadow: 0 0 30px rgba(30,127,232,.7);
}
.video-slot .slot-label { display: block; color: var(--muted); font-size: .8rem; line-height: 1.5; }
.video-slot-secondary { margin-top: 8px; aspect-ratio: 21/9; }

/* ===================== HERO ===================== */
.hero { padding: 52px 0 72px; }
.hero-grid { display: flex; flex-direction: column; gap: 44px; }
.hero-copy h1 { font-size: 2.7rem; margin-bottom: 22px; }
.hero .subheadline { font-size: 1.08rem; color: var(--muted); margin-bottom: 26px; max-width: 480px; }
.hero-media { display: flex; justify-content: center; padding-top: 4px; }

.poster-card { position: relative; max-width: 330px; margin: 0 auto; }
.poster-card-backdrop {
  position: absolute; inset: 16px -16px -16px 16px;
  background: linear-gradient(140deg, var(--azul), rgba(30,127,232,.2));
  border-radius: var(--radius); transform: rotate(4deg); z-index: 0;
  box-shadow: 0 0 60px rgba(30,127,232,.5);
}
.poster-card .photo-slot {
  position: relative; z-index: 1; transform: rotate(-3deg);
  box-shadow: 0 26px 60px rgba(0,0,0,.6); border: 2px solid var(--border-glow);
}
.poster-badge {
  position: absolute; z-index: 2; left: 50%; bottom: -14px; transform: translateX(-50%) rotate(-3deg);
  background: var(--navy-card); color: var(--white); border: 1px solid var(--border-glow);
  font-family: var(--font-mono); font-weight: 600; font-size: .68rem; text-align: center;
  padding: 8px 16px; border-radius: 10px; box-shadow: 0 0 28px rgba(30,127,232,.5); white-space: nowrap;
}
.poster-badge em { display: block; font-style: normal; font-weight: 500; color: var(--azul-aceso); font-size: .66rem; margin-top: 2px; }
.poster-card-sm { max-width: 300px; }

/* ===================== ABERTURA ===================== */
.section-abertura { padding-top: 8px; }
.section-abertura .lead { font-size: 1.22rem; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.section-abertura .highlight {
  font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; text-transform: uppercase;
  color: var(--azul-aceso); text-shadow: 0 0 20px rgba(61,155,255,.55);
  margin-bottom: 18px; display: inline-block;
}
.section-abertura p { margin-bottom: 16px; color: var(--muted); }
.section-abertura .strong-line { font-weight: 700; color: var(--white); }

/* ===================== CTA PRIMARY ===================== */
.section-cta-primary { padding: 20px 0 40px; }

/* ===================== DOR ===================== */
.dor-list { display: flex; flex-direction: column; gap: 12px; max-width: var(--container-narrow-w); margin: 0 auto; }
.dor-list li { display: flex; align-items: center; gap: 14px; padding: 18px 20px; font-size: .98rem; color: var(--text); }

/* mark bubble (gabarito) */
.mark-bubble { display: inline-block; flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; position: relative; box-sizing: border-box; }
.mark-bubble--empty { border: 2px solid var(--dim); background: transparent; }
.mark-bubble--filled { border: 2px solid var(--azul-aceso); background: var(--azul); box-shadow: 0 0 14px rgba(30,127,232,.6); }
.mark-bubble--filled::after {
  content: ''; position: absolute; left: 50%; top: 46%;
  width: 11px; height: 6px; margin-left: -6px; margin-top: -4px;
  border-left: 2px solid var(--white); border-bottom: 2px solid var(--white); transform: rotate(-45deg);
}
.mark-bubble--sm { width: 20px; height: 20px; }
.mark-bubble--sm::after { width: 8px; height: 5px; margin-left: -4.5px; margin-top: -3px; }
.mark-bubble--lg { width: 44px; height: 44px; border-width: 3px; margin-bottom: 14px; }
.mark-bubble--lg::after { width: 16px; height: 9px; margin-left: -9px; margin-top: -6px; border-width: 3px; }

/* ===================== MARCA DO PROFESSOR ===================== */
.brand-mark {
  max-width: 230px; margin: 0 0 22px;
  filter: drop-shadow(0 0 14px rgba(41,171,226,.6)) drop-shadow(0 0 34px rgba(30,127,232,.35));
}
.footer-brand {
  max-width: 200px; margin: 22px auto 0; opacity: .9;
  filter: drop-shadow(0 0 14px rgba(41,171,226,.55));
}

/* ===================== SOLUÇÃO ===================== */
.solucao-grid { display: flex; flex-direction: column; gap: 28px; margin-top: 8px; }
.solucao-copy p { color: var(--muted); margin-bottom: 14px; }
.solucao-copy .strong-line { color: var(--white); font-weight: 700; }

/* ===================== BENEFÍCIOS ===================== */
.beneficios-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.beneficio-card { padding: 22px; transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease; }
.beneficio-card:hover { transform: translateY(-4px); border-color: var(--border-glow); box-shadow: 0 0 34px rgba(30,127,232,.28); }
.beneficio-card .mark-bubble { margin-bottom: 14px; }
.beneficio-card h3 { font-size: .98rem; font-weight: 700; margin-bottom: 6px; color: var(--white); }
.beneficio-card p { font-size: .92rem; color: var(--muted); text-transform: none; }

/* ===================== CURSOS (combo) ===================== */
.section-cursos .container { text-align: center; }
.titulo-combo { font-size: 2.2rem; margin-bottom: 14px; }
.combo-sub { color: var(--muted); max-width: 560px; margin: 0 auto 36px; }
.combo-sub strong { color: var(--white); }

.cursos-grid { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.curso-plus {
  font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; color: var(--white);
  width: 42px; height: 42px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, #1E7FE8, #1360BE); border-radius: 50%;
  border: 1px solid var(--border-glow);
  box-shadow: 0 0 22px rgba(30,127,232,.6);
}
.curso-card {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  display: flex; flex-direction: column; width: 100%; max-width: 380px; text-align: left;
  transition: transform .18s ease, box-shadow .18s ease;
}
.curso-card:hover { transform: translateY(-6px); box-shadow: 0 0 46px rgba(30,127,232,.32); }
/* luz amarela percorrendo a borda de cada card, em tempos diferentes */
.curso-card::before { animation: bordaAndante 5.5s linear infinite; }
.curso-card:nth-of-type(2)::before { animation-delay: -1.8s; }
.curso-card:nth-of-type(3)::before { animation-delay: -3.6s; }
.curso-media { border-radius: 0; aspect-ratio: 3/4; }
.curso-media img { width: 100%; height: 100%; object-fit: cover; }
.curso-media.is-empty { min-height: 240px; border: none; border-bottom: 1px solid var(--border); }
.curso-body { padding: 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.curso-body h3 { font-size: 1.15rem; font-weight: 800; color: var(--white); }
.curso-lead { font-size: .96rem; color: var(--text); font-weight: 500; }
.curso-lista { display: flex; flex-direction: column; gap: 9px; }
.curso-lista li { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--muted); }
.curso-lista .mark-bubble { margin-top: 1px; }
.curso-spec {
  background: linear-gradient(180deg, #1E7FE8, #1360BE); color: var(--white);
  font-family: var(--font-heading); font-weight: 700; font-size: .78rem;
  letter-spacing: .04em; text-transform: uppercase; text-align: center;
  padding: 14px 16px; line-height: 1.4;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22);
}

/* faixa de recursos */
.recursos-bar {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  padding: 22px; margin: 36px auto 0; max-width: 900px; border-radius: 999px;
  border-radius: var(--radius-lg);
}
.recurso { display: flex; align-items: center; gap: 12px; text-align: left; }
.recurso span:last-child {
  font-family: var(--font-heading); font-weight: 700; font-size: .76rem;
  text-transform: uppercase; letter-spacing: .05em; color: var(--white); line-height: 1.3;
}
.recurso-ic {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  background: linear-gradient(180deg, #1E7FE8, #1360BE); color: var(--white);
  border: 1px solid var(--border-glow);
  box-shadow: 0 0 18px rgba(30,127,232,.55);
}

.combo-fecho {
  margin-top: 30px; font-family: var(--font-heading); font-weight: 800;
  font-size: 1.15rem; text-transform: uppercase; color: var(--white); letter-spacing: -.01em;
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
}
.trofeu { font-size: 1.4rem; }

/* ===================== PROVA SOCIAL ===================== */
.numeros-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: var(--container-narrow-w); margin: 0 auto 32px; }
.numero-item { text-align: center; padding: 30px 12px; }
.numero {
  display: block; font-family: var(--font-heading); font-size: 2.6rem; font-weight: 900;
  letter-spacing: -.03em; color: var(--azul-aceso); text-shadow: 0 0 24px rgba(61,155,255,.6);
}
.numero-label { font-size: .74rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.numero-label em { font-style: normal; opacity: .6; text-transform: none; letter-spacing: 0; }

.depoimentos-carousel-wrap { position: relative; }
.depoimentos-carousel {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px 4px 14px; margin: 0 -4px; scrollbar-width: none;
}
.depoimentos-carousel::-webkit-scrollbar { display: none; }
.depoimento-card {
  scroll-snap-align: center; flex: 0 0 85%; max-width: 340px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px;
  padding: 26px 22px;
}
.depoimento-estrelas { color: var(--amarelo); font-size: .9rem; letter-spacing: 2px; }
.depoimento-quote { display: block; font-family: var(--font-heading); font-size: 2.2rem; font-weight: 900; color: var(--azul-aceso); line-height: 1; margin-bottom: -6px; }
.depoimento-texto { font-size: .92rem; color: var(--text); margin-bottom: 4px; font-style: italic; }
.depoimento-nome { font-family: var(--font-heading); font-weight: 800; color: var(--white); font-size: .95rem; text-transform: uppercase; letter-spacing: .02em; }
.depoimento-resultado { font-size: .8rem; color: var(--azul-aceso); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.depoimento-placeholder { opacity: .5; }
.placeholder-text { font-style: normal; color: var(--dim); }

.carousel-dots { display: flex; justify-content: center; gap: 8px; }
.carousel-dots button { width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0; background: rgba(93,155,255,.28); cursor: pointer; transition: background .2s ease, transform .2s ease; }
.carousel-dots button.is-active { background: var(--azul-aceso); transform: scale(1.3); box-shadow: 0 0 12px var(--azul-aceso); }

/* ===================== OFERTA ===================== */
.oferta-grid { display: flex; flex-direction: column; gap: 34px; align-items: center; }
.oferta-convite { max-width: 420px; width: 100%; text-align: center; }
.oferta-photo-slot { aspect-ratio: 4/5; }
.oferta-photo-slot img { width: 100%; height: 100%; object-fit: cover; }
.oferta-convite .poster-card { margin-bottom: 34px; }
.oferta-fala {
  background: linear-gradient(180deg, rgba(30,127,232,.10), rgba(13,23,69,.6));
  border: 1px solid var(--border); border-left: 3px solid var(--azul-aceso);
  border-radius: var(--radius); padding: 24px 22px;
  box-shadow: inset 0 1px 0 rgba(93,155,255,.12);
  text-align: left;
}
.oferta-fala p { color: var(--white); font-size: 1.05rem; line-height: 1.5; margin-bottom: 12px; }
.oferta-fala .oferta-fala-cta {
  color: var(--muted); font-size: .95rem; font-weight: 500;
  border-top: 1px solid var(--border); padding-top: 12px; margin-bottom: 10px;
}
.oferta-fala footer {
  font-family: var(--font-heading); font-weight: 800; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .06em; color: var(--azul-aceso);
}

.oferta-box {
  background: linear-gradient(180deg, rgba(30,127,232,.14), rgba(13,23,69,.85));
  border: 1px solid var(--border-glow); border-radius: var(--radius-lg);
  padding: 34px 26px; position: relative; overflow: hidden;
  box-shadow: 0 0 50px rgba(30,127,232,.25), inset 0 1px 0 rgba(93,155,255,.2);
}
.oferta-box::before { animation: bordaAndante 4s linear infinite; }
.oferta-badge {
  display: inline-block; background: linear-gradient(180deg, #1E7FE8, #1360BE); color: var(--white);
  font-family: var(--font-heading); font-weight: 800; font-size: .72rem; letter-spacing: .16em;
  padding: 7px 16px; border-radius: 8px; margin-bottom: 16px;
  border: 1px solid var(--border-glow); box-shadow: 0 0 20px rgba(30,127,232,.5);
}
.oferta-titulo { font-size: 1.7rem; margin-bottom: 22px; color: var(--white); }
.oferta-lista { display: flex; flex-direction: column; gap: 14px; margin-bottom: 22px; }
.oferta-lista li { display: flex; align-items: center; gap: 10px; font-size: .95rem; color: var(--text); flex-wrap: wrap; }
.preco-item { margin-left: auto; font-family: var(--font-mono); font-weight: 600; color: var(--muted); }
.oferta-total {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px dashed var(--border); padding-top: 18px; margin-bottom: 8px;
  font-family: var(--font-heading); font-weight: 800; font-size: 1rem; text-transform: uppercase;
  letter-spacing: .06em; color: var(--white);
}
.oferta-total-valor {
  font-family: var(--font-heading); font-size: 1.9rem; font-weight: 900; letter-spacing: -.02em;
  color: var(--azul-aceso); text-shadow: 0 0 22px rgba(61,155,255,.6);
}
.oferta-pagamento { font-size: .82rem; color: var(--dim); margin-bottom: 18px; }
.oferta-pagamento em { color: var(--azul-aceso); font-style: normal; }

/* ===================== ACCORDION ===================== */
.accordion { display: flex; flex-direction: column; gap: 10px; }
.accordion-item { overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.accordion-item.is-open { border-color: var(--border-glow); box-shadow: 0 0 30px rgba(30,127,232,.25); }
.accordion-trigger {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 18px 20px; font-family: var(--font-body); font-weight: 600; font-size: .96rem;
  color: var(--white); display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.accordion-trigger::after {
  content: '+'; font-size: 1.25rem; color: var(--white); flex-shrink: 0; transition: transform .2s ease;
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(180deg, #1E7FE8, #1360BE); border: 1px solid var(--border-glow);
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.accordion-item.is-open .accordion-trigger::after { transform: rotate(45deg); box-shadow: 0 0 16px rgba(30,127,232,.7); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.accordion-item.is-open .accordion-panel { max-height: 400px; }
.accordion-panel p { padding: 0 20px 20px; color: var(--muted); font-size: .92rem; }
.accordion-panel em { color: var(--azul-aceso); font-style: normal; font-weight: 600; }

/* ===================== URGÊNCIA ===================== */
.section-urgencia { padding: 32px 0; }
.urgencia-box { display: flex; align-items: center; gap: 16px; padding: 22px 24px; border-left: 3px solid var(--azul-aceso); }
.urgencia-icon { font-size: 1.6rem; flex-shrink: 0; }
.urgencia-texto { color: var(--white); font-weight: 500; font-size: .98rem; }

/* ===================== CTA FINAL / PS ===================== */
.cta-final-texto { color: var(--muted); font-size: 1.15rem; }
.section-ps .ps-texto { color: var(--muted); font-size: 1.02rem; }
.section-ps strong { color: var(--azul-aceso); }

/* ===================== FOOTER ===================== */
.site-footer { border-top: 1px solid var(--border); padding: 40px 0 32px; text-align: center; color: var(--dim); }
.site-footer .logo-slot { margin: 0 auto 14px; }
.footer-small { font-size: .78rem; margin-top: 6px; opacity: .7; }

/* ===================== STICKY MOBILE CTA BAR ===================== */
.sticky-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  background: rgba(5,10,36,.92); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border); padding: 11px 16px;
  height: var(--sticky-bar-h); display: flex; align-items: center;
}
.sticky-cta-bar .btn { padding: 13px 20px; font-size: .96rem; }

/* ===================== WHATSAPP FLUTUANTE ===================== */
.whatsapp-fab {
  position: fixed; right: 18px; bottom: calc(var(--sticky-bar-h) + 16px); z-index: 70;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #25D366; color: #fff;
  box-shadow: 0 8px 26px rgba(0,0,0,.45), 0 0 0 0 rgba(37,211,102,.55);
  transition: transform .18s ease, box-shadow .18s ease;
  animation: waPing 2.8s ease-out infinite;
}
.whatsapp-fab svg { width: 30px; height: 30px; fill: currentColor; }
.whatsapp-fab:hover { transform: scale(1.08); animation-play-state: paused; box-shadow: 0 10px 30px rgba(0,0,0,.5), 0 0 0 10px rgba(37,211,102,.18); }
@keyframes waPing {
  0%   { box-shadow: 0 8px 26px rgba(0,0,0,.45), 0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow: 0 8px 26px rgba(0,0,0,.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 26px rgba(0,0,0,.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ===================== VÍDEOS (player próprio, sem marca de terceiros) ===================== */
.video-player {
  position: relative; width: 100%; overflow: hidden;
  background: rgba(5,10,36,.7); border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.video-player:hover { border-color: var(--border-glow); box-shadow: 0 0 40px rgba(30,127,232,.35); }
.video-player--vertical { aspect-ratio: 9/16; max-width: 300px; margin: 0 auto 22px; }
.video-player video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain;           /* nunca corta/deforma o vídeo */
  background: #050A24; z-index: 1;
}
/* em tela cheia, mantém a proporção original do vídeo */
.video-player video:fullscreen,
.video-player video:-webkit-full-screen {
  position: fixed; inset: 0; width: 100vw; height: 100vh;
  object-fit: contain; background: #000;
}
/* aviso visível só enquanto o arquivo de vídeo não estiver na pasta */
.video-falta {
  position: absolute; inset: 0; z-index: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; text-align: center; padding: 20px;
  color: var(--muted); font-size: .78rem; line-height: 1.5;
}
.video-falta code {
  display: inline-block; margin-top: 4px; font-family: var(--font-mono); font-size: .7rem;
  color: var(--azul-aceso); background: rgba(30,127,232,.12);
  border: 1px solid var(--border); border-radius: 6px; padding: 3px 6px;
}
.video-falta-ic {
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  background: linear-gradient(180deg, #1E7FE8, #1360BE); color: #fff;
  border: 1px solid var(--border-glow); box-shadow: 0 0 26px rgba(30,127,232,.6);
}
.video-cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 10px 12px;
  font-family: var(--font-heading); font-weight: 700; font-size: .78rem;
  text-transform: uppercase; letter-spacing: .05em; color: #fff;
  background: linear-gradient(180deg, transparent, rgba(5,10,36,.92));
  pointer-events: none;
}

.video-depo-titulo { font-size: 1.4rem; text-align: center; margin: 40px 0 24px; }
.video-depo-grid { display: grid; grid-template-columns: 1fr; gap: 26px; justify-items: center; }
.video-depo { width: 100%; max-width: 300px; text-align: center; }
.video-depo figcaption strong {
  display: block; font-family: var(--font-heading); font-weight: 800; font-size: .92rem;
  text-transform: uppercase; color: var(--white); letter-spacing: .02em;
}
.video-depo figcaption span { font-size: .8rem; color: var(--azul-aceso); font-weight: 600; }

/* ===================== SCROLL REVEAL ===================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s cubic-bezier(.22,.61,.36,1); }
.reveal.in { opacity: 1; transform: none; }

/* ===================== FOCUS / MOTION ===================== */
:focus-visible { outline: 2px solid var(--azul-aceso); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .acesa {
    background: none; -webkit-text-fill-color: var(--azul-aceso); color: var(--azul-aceso);
    text-shadow: 0 0 18px rgba(61,155,255,.55), 0 0 42px rgba(30,127,232,.35);
  }
  .btn-primary::after { display: none; }
}

/* ===================== RESPONSIVE ===================== */
@media (min-width: 720px) {
  .hero-copy h1 { font-size: 3.6rem; }
  .hero .subheadline { font-size: 1.18rem; }
  .beneficios-grid { grid-template-columns: 1fr 1fr; }
  .section h2 { font-size: 2.5rem; }
  .titulo-combo { font-size: 3rem; }
  .recursos-bar { grid-template-columns: repeat(4, 1fr); }
  .combo-fecho { font-size: 1.4rem; }
}

@media (min-width: 720px) {
  .video-depo-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 960px) {
  body { padding-bottom: 0; }
  .sticky-cta-bar { display: none; }
  .whatsapp-fab { bottom: 24px; right: 24px; }
  .header-nav { display: flex; }
  .header-nav + .btn-header { margin-left: 0; }
  .hero { padding: 76px 0 100px; }
  .hero-grid { flex-direction: row; align-items: center; }
  .hero-copy { flex: 1.1; }
  .hero-media { flex: 1; }
  .hero-copy h1 { font-size: 4.2rem; }
  .solucao-grid { flex-direction: row; align-items: flex-start; }
  .solucao-photo-slot { flex: 0 0 340px; }
  .solucao-copy { flex: 1; }
  .beneficios-grid { grid-template-columns: repeat(4, 1fr); }
  .oferta-grid { flex-direction: row; align-items: center; justify-content: center; gap: 48px; }
  .oferta-convite { flex: 0 0 400px; text-align: left; }
  .oferta-foto { margin: 0 0 -14px; }
  .oferta-box { flex: 1; max-width: 560px; }
  .cursos-grid { flex-direction: row; align-items: stretch; justify-content: center; }
  .curso-card { max-width: none; flex: 1; }
  .curso-plus { align-self: center; }
  .section { padding: 100px 0; }
  .section h2 { font-size: 2.9rem; }
  .titulo-combo { font-size: 3.6rem; }
}
