/* =========================================================
   Mentoria para Personais — Laércio Refundini
   Design system: Lumina (adaptado para CSS puro)
   ========================================================= */

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: #050505;
  color: #fff;
  font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-feature-settings: 'cv02','cv03','cv04','cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

::selection { background: rgba(234, 88, 12, .35); color: #fff; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ---------- Tokens ---------- */
:root {
  --bg: #050505;
  --bg-2: #0a0a0a;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --amber-400: #fbbf24;
  --white-05: rgba(255,255,255,.05);
  --white-10: rgba(255,255,255,.10);
  --white-20: rgba(255,255,255,.20);
  --white-60: rgba(255,255,255,.60);
  --neutral-300: #d4d4d4;
  --neutral-400: #a3a3a3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --max: 1280px;
  --container-px: clamp(20px, 4vw, 40px);
  --serif: 'Instrument Serif', 'Times New Roman', serif;
}

/* ---------- Background System (Lumina-inspired) ---------- */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}
.bg-layer::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(234,88,12,.18), transparent 60%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(234,88,12,.08), transparent 60%),
    linear-gradient(180deg, #050505 0%, #070707 50%, #050505 100%);
}
.bg-layer::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
  opacity: .7;
}

/* ----------------------------------------------------------------
   Falling beams (Lumina "rain") — confined to .hero-stage so they
   only appear over the hero video, never over the rest of the page.
   z-index 2: above the video (z:0) and overlay (z:1), below content (z:5).
   ----------------------------------------------------------------- */
.hero-rain {
  position: absolute;
  /* Oversize the layer so a -20° rotation still covers the entire stage —
     the rotated rectangle's bounding box is larger than the viewport. */
  top: -25%;
  bottom: -25%;
  left: 50%;
  width: 140%;
  max-width: none;
  transform: translateX(-50%) rotate(-20deg);
  transform-origin: center center;
  z-index: 2;
  pointer-events: none;
  display: flex;
  /* Hide the column borders/dashed-center on the diagonal version —
     they look broken when rotated. */
  border-right: 0;
  opacity: .55;
}
/* Diagonal mode: drop the structural lines (vertical guides made sense
   with vertical rain but read as random angled lines after rotation). */
.hero-rain .col { border-left: 0; }
.hero-rain .dashed-center { display: none; }
.hero-rain .col {
  flex: 1;
  height: 100%;
  border-left: 1px solid rgba(255,255,255,.05);
  position: relative;
  overflow: hidden;
}
.hero-rain .col-center { display: flex; justify-content: center; }
.hero-rain .dashed-center {
  position: relative;
  height: 100%;
  width: 1px;
  border-right: 1px dashed rgba(249,115,22,.20);
}
.hero-rain .beam {
  position: absolute;
  top: 0;
  left: -1px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(249,115,22,.6), transparent);
  animation: beam-fall 6s linear infinite;
}
.hero-rain .beam-1 {
  height: 256px;
  background: linear-gradient(to bottom, transparent, rgba(249,115,22,.6), transparent);
  animation: beam-fall 6s linear infinite;
}
.hero-rain .beam-2 {
  height: 384px;
  background: linear-gradient(to bottom, transparent, rgba(249,115,22,.8), transparent);
  animation: beam-fall 8s linear infinite;
  animation-delay: 2s;
}
.hero-rain .beam-3 {
  height: 192px;
  background: linear-gradient(to bottom, transparent, rgba(249,115,22,.6), transparent);
  animation: beam-fall 7s linear infinite;
  animation-delay: 4s;
}
.hero-rain .col-center .beam-1-delayed {
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, transparent, rgba(249,115,22,1), transparent);
  animation-delay: 1.5s;
}

@keyframes beam-fall {
  0%   { transform: translateY(-100%); opacity: 0; }
  5%   { opacity: .5; }
  50%  { opacity: 1; }
  95%  { opacity: .5; }
  100% { transform: translateY(120vh); opacity: 0; }
}

/* Center column delayed beam needs to keep its translateX while falling */
@keyframes beam-fall-centered {
  0%   { transform: translate(-50%, -100%); opacity: 0; }
  5%   { opacity: .5; }
  50%  { opacity: 1; }
  95%  { opacity: .5; }
  100% { transform: translate(-50%, 120vh); opacity: 0; }
}
.hero-rain .col-center .beam-1-delayed { animation-name: beam-fall-centered; }

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

main { flex: 1; }

section { position: relative; }

.section { padding: clamp(64px, 9vw, 120px) 0; border-top: 1px solid rgba(255,255,255,.05); }
.section:first-of-type { border-top: 0; }
/* First section right after the hero connects naturally — no overlap. */
.hero + .section {
  border-top: 0;
  padding-top: clamp(48px, 7vw, 96px);
}

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(249,115,22,.85);
  margin-bottom: 24px;
  justify-content: center;
}
.section-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--orange-500);
  box-shadow: 0 0 12px rgba(249,115,22,.7);
}

.section-title {
  font-weight: 500;
  letter-spacing: -0.035em;
  font-size: clamp(34px, 5.6vw, 64px);
  line-height: 1.04;
  color: #fff;
  max-width: 880px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.section-title .accent {
  background: linear-gradient(90deg, #fff 0%, #e5e5e5 50%, #737373 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

#para-quem .section-title {
  font-size: clamp(24px, 3.6vw, 42px);
  max-width: 920px;
}

/* ---------- Brand mark (used in footer) ---------- */
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 32px; height: 32px; border-radius: 999px;
  background: linear-gradient(135deg, var(--orange-500), var(--amber-400));
  display: grid; place-items: center;
  position: relative;
  box-shadow: 0 0 24px rgba(249,115,22,.35);
}
.brand-mark::before {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,.5), rgba(255,255,255,0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.brand-mark .core { width: 10px; height: 10px; border-radius: 999px; background: #050505; }
.brand-name { font-size: 15px; font-weight: 600; letter-spacing: -.01em; color: #fff; }
.brand-sub { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--neutral-500); }

/* ---------- Buttons (Lumina Glass Button) ----------
   Pattern reproduced 1:1 from design-system.html:
   - outer wrapper: gradient (white/20 → 0 → white/5), full radius, isolated, overflow hidden
   - rotating ring: conic-gradient 300% size at -100%/-100%, spin 3s linear
   - inner core: rgba(10,10,10,.92) with backdrop-blur at inset:1px (covers conic, leaves rim)
   - shadow: 0 0 25px rgba(249,115,22,.3), 0 8px 40px rgba(249,115,22,.15)
   - hover: scale 1.05 + shadow 0 0 50px 10px rgba(249,115,22,.45)
*/
.btn-glass {
  position: relative; isolation: isolate;
  display: inline-flex; align-items: center;
  cursor: pointer;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.20) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,.05) 100%);
  box-shadow:
    0 0 14px rgba(249,115,22,.16),
    0 4px 18px rgba(249,115,22,.08);
  transition: transform .3s ease, box-shadow .3s ease;
  color: rgba(255,255,255,.95);
  font: inherit;
  text-decoration: none;
}
.btn-glass:hover {
  transform: scale(1.04);
  box-shadow:
    0 0 18px rgba(249,115,22,.22),
    0 0 28px 4px rgba(249,115,22,.20);
}

/* Rotating conic ring (design-system pattern: 300% size, offset -100%) */
.btn-glass .ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  overflow: hidden;
  pointer-events: none;
}
.btn-glass .ring::before {
  content: "";
  position: absolute;
  inset: -100%;
  width: 300%;
  height: 300%;
  left: -100%;
  top: -100%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 80deg,
    rgba(253, 186, 116, 0.85) 180deg,
    transparent 280deg,
    transparent 360deg
  );
  animation: glass-spin 3s linear infinite;
}

/* Inner dark core that covers the conic, leaving only a 1px glowing rim */
.btn-glass .core {
  position: absolute;
  inset: 1px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 0;
}

/* Inner content row */
.btn-glass .inner {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px 12px 14px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -.01em;
  white-space: nowrap;
  color: rgba(255,255,255,.95);
  transition: color .3s ease;
}
.btn-glass:hover .inner { color: #fff; }

/* Orange icon circle (sparkles / play / arrow). Uses gradient + ring */
.btn-glass .icon-circle {
  flex: 0 0 auto;
  position: relative;
  z-index: 3;
  width: 28px; height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange-400) 0%, var(--orange-600) 100%);
  display: grid; place-items: center;
  box-shadow:
    0 2px 8px rgba(249,115,22,.25),
    0 0 0 1px rgba(255,255,255,.18) inset;
  transition: transform .3s ease;
  color: #fff;
}
.btn-glass:hover .icon-circle { transform: scale(1.1); }

/* Trailing arrow bubble (white/10 → white/18 on hover) */
.btn-glass .arrow-bubble {
  flex: 0 0 auto;
  display: inline-grid; place-items: center;
  width: 24px; height: 24px;
  margin-left: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.80);
  transition: transform .3s ease, background .3s ease, color .3s ease;
}
.btn-glass:hover .arrow-bubble {
  transform: translateX(2px);
  background: rgba(255,255,255,.18);
  color: #fff;
}

@keyframes glass-spin { to { transform: rotate(360deg); } }

/* Primary CTA = Glass Button with warm orange ring + denser shadow.
   Used for hero / "garantir minha vaga" / nav. */
.btn-primary {
  /* Reuses .btn-glass markup. This modifier punches up the glow. */
}
.btn-primary .ring::before {
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 60deg,
    rgba(253, 186, 116, 1) 160deg,
    rgba(251, 146, 60, 0.95) 200deg,
    transparent 300deg,
    transparent 360deg
  );
}
.btn-primary {
  box-shadow:
    0 0 16px rgba(249,115,22,.30),
    0 6px 22px rgba(249,115,22,.18);
  animation: btn-primary-pulse 2.6s ease-in-out infinite;
}
.btn-primary:hover {
  animation: none;
  box-shadow:
    0 0 24px rgba(249,115,22,.45),
    0 0 36px 6px rgba(249,115,22,.32);
}
.btn-primary .inner { padding: 14px 24px 14px 16px; font-weight: 600; font-size: 15px; }
/* Solid warm orange core — opaque, no glass translucency. */
.btn-primary .core {
  background:
    radial-gradient(120% 90% at 50% 100%, rgba(251,191,36,.55) 0%, rgba(251,191,36,0) 70%),
    linear-gradient(180deg, #ea580c 0%, #9a3412 100%);
}
/* Faster, smoother ring spin on the primary button to draw attention */
.btn-primary .ring::before {
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 60deg,
    rgba(255, 220, 170, 1) 170deg,
    rgba(253, 186, 116, .9) 200deg,
    transparent 300deg,
    transparent 360deg
  );
  animation: glass-spin 2.4s linear infinite;
}

@keyframes btn-primary-pulse {
  0%, 100% {
    box-shadow:
      0 0 16px rgba(249,115,22,.30),
      0 6px 22px rgba(249,115,22,.18);
  }
  50% {
    box-shadow:
      0 0 22px rgba(249,115,22,.45),
      0 8px 30px rgba(249,115,22,.28);
  }
}

/* Legacy particle wrapper kept for backward-compat with any existing markup
   (not used by Glass Button, but harmless). */
.points-wrapper { display: none; }

/* ---------- Hero (static background image) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  border-top: 0;
}
.hero-stage {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Background image wrapper covers the entire stage */
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #050505;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Subject sits on the right side of the photo — keep them framed. */
  object-position: 70% center;
  pointer-events: none;
  background: #050505;
}
@media (max-width: 720px) {
  /* Hero shorter than viewport on mobile — leaves a sliver of the next
     section visible at the bottom as a scroll incentive. */
  .hero { min-height: 92vh; }
  /* Mobile: stage flows top→bottom, photo on top, text below */
  .hero-stage {
    align-items: flex-start;
    display: block;
    min-height: 92vh;
  }
  .hero-bg-wrap {
    /* Photo occupies the top portion of the stage; below it,
       the page bg (#050505) provides a calm canvas for the text. */
    bottom: auto;
    height: 48vh;
  }
  .hero-bg {
    /* Mobile-specific image (bgMob.webp): subject centered, anchor to top */
    object-position: center top;
  }
  /* Soft fade at the bottom of the smaller image */
  .hero-video-fade {
    top: auto;
    height: 10vh;
    bottom: calc(100vh - 48vh);
  }
  /* (padding-top for .hero-content is set in the second mobile block
     at the bottom of this file so it wins the cascade — keep this
     block focused on stage/video sizing) */
  .hero .container {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 92vw;
  }
  .hero .hero-cta-row { margin-bottom: 0; }
  /* Mobile-only typography bumps */
  .hero h1 { font-size: 28px; margin-bottom: 10px; line-height: 1.18; }
  .hero h1 .line-1 { display: block; }
  .hero h1 .line-2 { font-size: 60px; margin-top: 8px; line-height: 1.05; }
  .hero h1 .hl-vago {
    background: linear-gradient(180deg, transparent 62%, rgba(249,115,22,.32) 62%, rgba(249,115,22,.32) 92%, transparent 92%);
    padding: 0 .08em;
  }
}

/* Light overlay — keeps text legible without hiding the video */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,.50) 0%, rgba(5,5,5,.22) 45%, rgba(5,5,5,0) 75%, rgba(5,5,5,0) 100%),
    linear-gradient(180deg, rgba(5,5,5,.18) 0%, rgba(5,5,5,0) 35%, rgba(5,5,5,.20) 100%);
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 720px) {
  .hero-video-overlay {
    /* Mobile is centered, so use a balanced vertical wash only */
    background:
      linear-gradient(180deg, rgba(5,5,5,.30) 0%, rgba(5,5,5,.10) 38%, rgba(5,5,5,.35) 100%);
  }
}

/* Subtle bottom fade — softens the rising next-section edge.
   Lighter than before since the next section now overlays the hero. */
.hero-video-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 18vh;
  background: linear-gradient(180deg,
    rgba(5,5,5,0) 0%,
    rgba(5,5,5,.45) 60%,
    #050505 100%);
  pointer-events: none;
  z-index: 2;
}

/* Hero content sits above video + overlay + rain */
.hero-content {
  position: relative;
  z-index: 5;
  padding-top: clamp(64px, 9vh, 120px);
  padding-bottom: clamp(64px, 9vh, 120px);
  text-align: left;
}
.hero-content h1,
.hero-content .hero-lead { margin-left: 0; margin-right: 0; }
.hero-content .hero-cta-row { justify-content: flex-start; }

/* Mobile: center everything + push content well below the video */
@media (max-width: 720px) {
  .hero-content {
    text-align: center;
    /* Text starts just past the video edge (video ends at 48vh) — close
       enough to feel connected, far enough to land on solid #050505. */
    padding-top: 26vh;
    padding-bottom: 4px;
  }
  .hero-content h1 {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 14px;
  }
  .hero-content .hero-lead {
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
  }
  .hero-content .hero-cta-row {
    justify-content: center;
  }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(249,115,22,.9);
  margin-bottom: 28px;
}
.eyebrow .pulse {
  position: relative;
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--orange-500);
}
.eyebrow .pulse::after {
  content: ""; position: absolute; inset: -4px; border-radius: inherit;
  background: rgba(249,115,22,.4);
  animation: pulse-ring 2.4s cubic-bezier(.45,.05,.55,.95) infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(.6); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero h1 {
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.2;
  font-size: clamp(16px, 1.8vw, 22px);
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  max-width: 680px;
  text-wrap: balance;
}
.hero h1 .line-2 {
  display: block;
  margin-top: 12px;
  background: linear-gradient(90deg, #fff 0%, var(--orange-400) 60%, var(--orange-600) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.05;
  font-size: clamp(46px, 6.6vw, 76px);
  text-wrap: balance;
}
.hero h1 .line-2-accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.025em;
}

.hero-lead {
  max-width: 580px;
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.6;
  color: rgba(255,255,255,.78);
  margin-bottom: 36px;
  text-wrap: pretty;
}
.hero-lead .hl {
  color: #fff;
  font-weight: 600;
  background: linear-gradient(180deg, transparent 60%, rgba(249,115,22,.30) 60%, rgba(249,115,22,.30) 92%, transparent 92%);
  padding: 0 .12em;
  border-radius: 2px;
}

.hero-cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }


/* ---------- "Para quem é" cards ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 56px;
}
@media (min-width: 720px) { .audience-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (min-width: 1080px) { .audience-grid { grid-template-columns: repeat(4, 1fr); } }

.aud-card {
  position: relative;
  padding: 26px 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  transition: transform .35s ease, border-color .35s ease, background .35s ease, box-shadow .35s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}
.aud-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 70% at 0% 0%, rgba(249,115,22,.12), transparent 60%);
  opacity: 0; transition: opacity .35s ease;
  pointer-events: none;
}
.aud-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249,115,22,.35);
  box-shadow: 0 20px 40px -24px rgba(249,115,22,.35);
}
.aud-card:hover::before { opacity: 1; }

.aud-card .badge {
  display: inline-grid; place-items: center;
  width: 32px; height: 32px; border-radius: 999px;
  background: rgba(249,115,22,.14);
  color: var(--orange-400);
  border: 1px solid rgba(249,115,22,.32);
  margin-bottom: 16px;
  flex-shrink: 0;
}
.aud-card .kicker {
  font-size: 14px; font-weight: 800; letter-spacing: -.005em;
  color: var(--orange-400);
  margin-bottom: 10px;
}
.aud-card p {
  font-size: 15.5px; line-height: 1.55;
  color: rgba(255,255,255,.88);
  letter-spacing: -.005em;
  text-wrap: pretty;
  margin: 0;
}
.aud-card p strong {
  color: #fff;
  font-weight: 600;
}

/* "Não é para você se" — variante avermelhada */
.aud-card.no {
  background: linear-gradient(180deg, rgba(239,68,68,.10), rgba(239,68,68,.02));
  border-color: rgba(239,68,68,.28);
}
.aud-card.no::before {
  background: radial-gradient(70% 70% at 0% 0%, rgba(239,68,68,.20), transparent 60%);
}
.aud-card.no:hover {
  border-color: rgba(239,68,68,.55);
  box-shadow: 0 20px 40px -24px rgba(239,68,68,.45);
}
.aud-card.no .badge {
  background: rgba(239,68,68,.16);
  color: #fca5a5;
  border-color: rgba(239,68,68,.45);
}
.aud-card.no .kicker { color: #fca5a5; }

/* ---------- 8 semanas — sticky two-column layout ---------- */
.weeks-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 24px;
}
@media (min-width: 1024px) {
  .weeks-layout {
    grid-template-columns: minmax(320px, 1fr) minmax(0, 1.3fr);
    gap: 80px;
    align-items: start;
  }
}

.weeks-aside {
  position: relative;
}
@media (min-width: 1024px) {
  .weeks-aside {
    position: sticky;
    top: 96px;
    align-self: start;
  }
}
.weeks-aside-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.weeks-aside .section-eyebrow {
  align-self: flex-start;
}
.section-title.weeks-title {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  font-size: clamp(32px, 4vw, 52px);
}
.weeks-aside-lead {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,.62);
  max-width: 460px;
  text-wrap: pretty;
}

.weeks-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  .weeks-stack {
    gap: 24px;
  }
}

.week-card {
  position: relative;
  padding: 32px 32px 30px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(20,20,20,.92), rgba(12,12,12,.96));
  border: 1px solid rgba(255,255,255,.07);
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease, background .35s ease;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px);
}
@media (min-width: 1024px) {
  .week-card {
    position: sticky;
    top: 120px;
  }
  .week-card:nth-child(1) { top: 120px; }
  .week-card:nth-child(2) { top: 140px; }
  .week-card:nth-child(3) { top: 160px; }
  .week-card:nth-child(4) { top: 180px; }
  .week-card:nth-child(5) { top: 200px; }
  .week-card:nth-child(6) { top: 220px; }
  .week-card:nth-child(7) { top: 240px; }
  .week-card:nth-child(8) { top: 260px; }
}
.week-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 80% at 100% 0%, rgba(249,115,22,.10), transparent 60%);
  pointer-events: none;
  transition: opacity .35s ease; opacity: .55;
}
.week-card:hover {
  background: linear-gradient(180deg, rgba(8,8,8,.96), rgba(2,2,2,.98));
  border-color: rgba(249,115,22,.32);
  box-shadow: 0 24px 48px -28px rgba(249,115,22,.35);
}
.week-card:hover::before { opacity: 1; }

.week-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 16px;
}

.week-card .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -.02em;
  background: linear-gradient(180deg, var(--orange-400), var(--orange-600));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.week-card .week-icon {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  color: var(--orange-400);
  flex-shrink: 0;
  transition: color .3s ease, border-color .3s ease, background .3s ease, transform .35s ease;
}
.week-card .week-icon svg { display: block; }
.week-card:hover .week-icon {
  color: #fff;
  border-color: rgba(249,115,22,.4);
  background: linear-gradient(180deg, rgba(249,115,22,.18), rgba(249,115,22,.04));
  transform: scale(1.04);
}
.week-card h3 {
  font-size: 24px; font-weight: 700; line-height: 1.25;
  letter-spacing: -.018em;
  color: #fff;
  margin-bottom: 12px;
  text-wrap: balance;
}
.week-card p {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255,255,255,.7);
  text-wrap: pretty;
  margin: 0;
}

.weeks-note {
  margin: 40px auto 0;
  padding: 22px 28px;
  border-top: 1px solid rgba(249,115,22,.35);
  border-bottom: 1px solid rgba(249,115,22,.18);
  background: linear-gradient(180deg, rgba(249,115,22,.06), transparent 80%);
  border-radius: 12px;
  font-size: 15px;
  color: rgba(255,255,255,.78);
  font-style: italic;
  text-align: center;
  max-width: 760px;
  text-wrap: balance;
}

/* ---------- About Laércio ---------- */
#sobre {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
#sobre::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/img/bgDesk.webp");
  background-size: 160% auto;
  background-position: 110% 20%;
  background-repeat: no-repeat;
  opacity: .08;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 720px) {
  #sobre::before {
    background-size: 320% auto;
    background-position: 82% -25%;
  }
}
#sobre::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #050505 0%, transparent 18%, transparent 82%, #050505 100%);
  z-index: -1;
  pointer-events: none;
}

/* Card-style box that wraps text + photo, mirroring the reference layout
   while staying inside our design system (orange halo, glass surface,
   thin white border — same language as `.guarantee`). */
.about-box {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
  margin-top: clamp(60px, 10vw, 140px);
  padding: clamp(20px, 4vw, 56px);
  border-radius: 28px;
  background:
    radial-gradient(60% 70% at 0% 0%, rgba(249,115,22,.10), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-sizing: border-box;
  overflow-wrap: break-word;
}
.about-box > .about-grid { position: relative; z-index: 1; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 0;
}
@media (min-width: 920px) {
  /* Text left (1.1fr), photo right (.9fr) — matches the reference */
  .about-grid { grid-template-columns: 1.1fr .9fr; gap: 56px; }
}

/* Pill-style eyebrow, replaces the dot+label used elsewhere */
.about-pill {
  /* align-self prevents flex-stretch; width:max-content hugs the text */
  align-self: flex-start;
  width: max-content;
  max-width: 100%;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(249,115,22,.12);
  border: 1px solid rgba(249,115,22,.28);
  color: var(--orange-400);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.about-text { display: flex; flex-direction: column; min-width: 0; }

.about-photo {
  position: relative;
  width: 100%;
  max-width: 320px;
  justify-self: center;
}
@media (max-width: 720px) {
  .about-photo { max-width: min(280px, 80%); }
}
@media (min-width: 920px) {
  .about-photo {
    max-width: 440px;
    /* Symmetric overflow above and below the bio box */
    margin-top: clamp(-100px, -8vw, -60px);
    margin-bottom: clamp(-100px, -8vw, -60px);
    justify-self: center;
    z-index: 2;
  }
}
.about-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
}
.about-photo .corner {
  position: absolute; top: 14px; left: 14px;
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(180deg, var(--orange-400), var(--orange-600));
  color: #fff;
  font-family: var(--serif);
  font-size: 26px; font-style: italic;
  z-index: 2;
  box-shadow: 0 14px 30px rgba(249,115,22,.45);
}

.about-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(32px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 22px;
  /* Same gradient used in the hero headline ("O personal com a agenda…") */
  background: linear-gradient(90deg, #fff 0%, var(--orange-400) 60%, var(--orange-600) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  text-align: left;
  text-wrap: balance;
  word-break: break-word;
  overflow-wrap: break-word;
}
.about-bio {
  font-size: clamp(15px, 1.55vw, 18px);
  line-height: 1.65;
  color: rgba(255,255,255,.7);
  max-width: 380px;
  margin: 0;
  text-align: left;
  text-wrap: pretty;
  overflow-wrap: break-word;
}
.about-cta {
  margin-top: 32px;
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 720px) {
  .about-cta { justify-content: center; margin-top: 24px; }
}

/* ---------- Inclusos — editorial deck layout ---------- */
.included-deck {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 56px;
}
@media (min-width: 960px) {
  .included-deck {
    grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
    gap: 48px;
    align-items: stretch;
  }
}

/* Featured panel — left column */
.included-hero {
  position: relative;
  padding: clamp(32px, 4vw, 48px);
  border-radius: 24px;
  background:
    radial-gradient(80% 90% at 100% 0%, rgba(249,115,22,.18), transparent 65%),
    linear-gradient(180deg, #161616 0%, #0a0a0a 100%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.included-hero::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(249,115,22,.4), transparent 35%, rgba(255,255,255,.04) 70%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.included-hero-logo {
  display: block;
  width: clamp(180px, 16vw, 230px);
  height: auto;
  margin-bottom: 28px;
}
.included-hero-desc {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255,255,255,.65);
  margin: 0 0 32px;
  max-width: 380px;
  text-wrap: pretty;
}
.included-hero-meta {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  gap: 24px;
}
.ih-meta-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.ih-meta-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -.02em;
  background: linear-gradient(180deg, var(--orange-400), var(--orange-600));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.ih-meta-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1.3;
  color: rgba(255,255,255,.7);
}
.ih-meta-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.14), transparent);
}

/* Itinerary list — right column */
.included-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.inc-row {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 22px 4px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: padding-left .35s ease;
}
.inc-row:first-child {
  border-top: 1px solid rgba(255,255,255,.07);
}
.inc-row::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: linear-gradient(180deg, var(--orange-400), var(--orange-600));
  transition: width .35s ease;
}
.inc-row:hover {
  padding-left: 16px;
}
.inc-row:hover::before {
  width: 2px;
}
.inc-row-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1;
  color: rgba(255,255,255,.28);
  letter-spacing: -.01em;
  transition: color .35s ease;
  min-width: 28px;
}
.inc-row:hover .inc-row-num {
  color: var(--orange-400);
}
.inc-row-body h4 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: #fff;
  margin: 0 0 4px;
  text-wrap: balance;
}
.inc-row-body p {
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(255,255,255,.6);
  margin: 0;
  text-wrap: pretty;
}
.inc-row-mark {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 999px;
  background: rgba(249,115,22,.10);
  border: 1px solid rgba(249,115,22,.28);
  color: var(--orange-400);
  flex-shrink: 0;
  transition: background .35s ease, color .35s ease, transform .35s ease;
}
.inc-row:hover .inc-row-mark {
  background: linear-gradient(180deg, var(--orange-400), var(--orange-600));
  color: #fff;
  transform: scale(1.06);
  border-color: transparent;
}

@media (max-width: 600px) {
  .inc-row {
    grid-template-columns: auto 1fr;
    gap: 16px;
  }
  .inc-row-mark {
    grid-row: 1;
    grid-column: 2;
    justify-self: end;
    align-self: start;
    margin-top: 2px;
  }
  .inc-row-body {
    grid-column: 2;
  }
}

.included-cta { margin-top: 48px; display: flex; justify-content: center; }

/* ---------- Garantia — editorial, no box ---------- */
#garantia {
  padding-top: 0;
  border-top: 0;
}
.guarantee {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  max-width: 720px;
  margin-inline: auto;
  padding: 0;
  background: none;
  border: 0;
}

.guarantee-seal {
  position: relative;
  display: block;
  width: clamp(360px, 56vw, 640px);
  height: auto;
}
.guarantee-seal::after {
  content: "";
  position: absolute;
  inset: -8%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(249,115,22,.18), transparent 70%);
  filter: blur(24px);
  z-index: -1;
  pointer-events: none;
}

.guarantee h3 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: #fff;
  margin: 0;
  text-wrap: balance;
}
.guarantee p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,.72);
  margin: 0;
  max-width: 560px;
  text-wrap: pretty;
}

/* ---------- FAQ ---------- */
.faq-list { margin: 48px auto 0; max-width: 880px; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-size: clamp(16px, 1.7vw, 19px);
  font-weight: 500;
  letter-spacing: -.01em;
  color: #fff;
  transition: color .25s ease;
  text-wrap: balance;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--orange-400); }
.faq-item summary .ico {
  flex: 0 0 auto;
  width: 32px; height: 32px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  display: grid; place-items: center;
  transition: transform .3s ease, background .25s ease, border-color .25s ease;
}
.faq-item[open] summary .ico {
  transform: rotate(45deg);
  background: rgba(249,115,22,.15);
  border-color: rgba(249,115,22,.5);
  color: var(--orange-400);
}
.faq-item .answer {
  padding: 0 0 26px 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255,255,255,.62);
  max-width: 760px;
  animation: answer-in .35s cubic-bezier(.2,.8,.2,1) both;
  text-wrap: pretty;
}
@keyframes answer-in {
  0%   { opacity: 0; transform: translateY(-6px); filter: blur(6px); }
  100% { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

/* ---------- Form ---------- */
.form-wrap {
  margin-top: 56px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 24px;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(249,115,22,.10), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.10);
  position: relative; overflow: hidden;
}
.form-wrap::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249,115,22,.6), transparent);
}
/* Typebot embed container */
typebot-standard {
  display: block;
  width: 100%;
  height: clamp(560px, 70vh, 760px) !important;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

/* ---------- Footer ---------- */
.footer {
  margin-top: clamp(48px, 6vw, 80px);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 36px 0;
  text-align: center;
}
.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-logo {
  display: inline-flex;
  opacity: .9;
  transition: opacity .2s ease;
}
.footer-logo:hover { opacity: 1; }
.footer-logo img {
  height: 56px;
  width: auto;
  display: block;
}
.footer .meta {
  font-size: 13px;
  color: rgba(255,255,255,.45);
}

/* Hero logo — sits above the headline */
.hero-logo {
  display: inline-flex;
  margin-bottom: 56px;
  opacity: .95;
}
.hero-logo img {
  height: 88px;
  width: auto;
  display: block;
}
@media (max-width: 720px) {
  .hero-logo {
    margin-bottom: 36px;
    display: flex;
    justify-content: center;
  }
  .hero-logo img { height: 84px; }
}

/* ---------- Animations on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(10px);
  transition:
    opacity .9s cubic-bezier(.2,.8,.2,1),
    transform .9s cubic-bezier(.2,.8,.2,1),
    filter .9s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform, filter;
}
.reveal.is-visible {
  opacity: 1; transform: none; filter: blur(0);
}
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }
.reveal.delay-4 { transition-delay: .32s; }
.reveal.delay-5 { transition-delay: .40s; }
.reveal.delay-6 { transition-delay: .48s; }

/* Initial above-the-fold animations (no JS) */
.fade-in {
  animation: fadeSlideIn 1s cubic-bezier(.2,.8,.2,1) both;
}
.fade-in.d1 { animation-delay: .05s; }
.fade-in.d2 { animation-delay: .15s; }
.fade-in.d3 { animation-delay: .28s; }
.fade-in.d4 { animation-delay: .42s; }
.fade-in.d5 { animation-delay: .55s; }

@keyframes fadeSlideIn {
  0%   { opacity: 0; transform: translateY(24px); filter: blur(8px); }
  100% { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; filter: none; }
}

/* ---------- Utilities ---------- */
.center { text-align: center; }
.muted { color: rgba(255,255,255,.6); }
.divider {
  height: 1px; width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  margin: 0 auto;
}

/* Section headers — centered from second fold onward */
.section-head {
  max-width: 880px;
  margin: 0 auto 8px;
  text-align: center;
}
.section-head .lead {
  margin: 18px auto 0;
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  max-width: 720px;
  text-align: center;
  text-wrap: pretty;
}
