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

:root {
  --bg:            #060c0e;
  --bg-alt:        #0b1518;
  --card:          #0f1e22;
  --text:          #e8f4f8;
  --muted:         #6b8f9a;
  --accent:        #00c9a7;
  --accent-2:      #00e5b4;
  --line:          #162830;
  --radius:        14px;
  --max:           1100px;
  --shadow-accent: 0 8px 28px rgba(0,201,167,.28);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}
.narrow { max-width: 760px; }
.center { text-align: center; }

/* ===== Typography ===== */
h1, h2, h3 { line-height: 1.2; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(1.9rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.45rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.05rem, 2vw, 1.2rem); margin-bottom: .5rem; }

.muted  { color: var(--muted); }
.small  { font-size: .85rem; }
.hl     { color: var(--accent); }

.kicker {
  display: block;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: .75rem;
}

.lead { font-size: clamp(1rem, 2vw, 1.25rem); margin: 1rem 0; }
.sub  { color: var(--muted); max-width: 640px; margin: 0 auto 2rem; font-size: clamp(.95rem, 1.5vw, 1.1rem); }
.micro { font-size: .82rem; color: var(--muted); margin-top: 1rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  padding: .9rem 1.6rem;
  border-radius: 50px;
  box-shadow: var(--shadow-accent);
  transition: transform .15s ease, box-shadow .15s ease;
  text-align: center;
  line-height: 1.3;
}
.btn:hover, .btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255,90,60,.5);
  outline: none;
}
.btn:active { transform: translateY(0); }
.btn-lg   { font-size: clamp(1rem, 2vw, 1.15rem); padding: 1.15rem 2.2rem; }
.btn-sm   { padding: .5rem 1.1rem; font-size: .88rem; box-shadow: none; }

@keyframes btnPulse {
  0%, 100% { box-shadow: var(--shadow-accent); }
  50%       { box-shadow: 0 8px 40px rgba(0,201,167,.6); }
}
.btn-pulse { animation: btnPulse 2.5s ease-in-out infinite; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,18,.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 11px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .06em;
}
/* ===== Hero video ===== */
.video-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: .75rem auto .75rem;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 16px 48px rgba(0,0,0,.6);
  border: 1px solid var(--line);
  cursor: pointer;
  background: #000;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .3s;
}
.video-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 68px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
  transition: transform .15s ease, filter .15s ease;
  z-index: 2;
}
.video-wrap:hover .video-play-btn {
  transform: scale(1.12);
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.7));
}
.video-wrap:hover .video-thumb { opacity: .85; }

.hero-logo {
  width: 100px;
  height: 100px;
  margin: 0 auto .75rem;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(0,0,0,.55);
}
.brand strong { color: var(--accent); }
.brand--footer { justify-content: center; }

/* ===== Sections ===== */
.section { padding-block: clamp(3rem, 8vw, 6rem); }
.section-alt { background: var(--bg-alt); }

/* ===== Hero ===== */
.hero {
  position: relative;
  text-align: center;
  min-height: calc(100svh - 62px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: clamp(.75rem, 2vh, 1.5rem);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 60% at 50% -5%, rgba(0,201,167,.18), transparent 70%),
    url('images/bg-studio.png') center/cover no-repeat;
  opacity: .3;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero h1 { max-width: 900px; margin: 0 auto .5rem; }
.hero .lead { margin: .4rem 0; }
.hero .sub  { margin-bottom: .75rem; font-size: .92rem; }
.hero .micro { margin-top: .5rem; }

/* ===== Pain list ===== */
.pain-list {
  list-style: none;
  max-width: 580px;
  margin: 1.75rem auto 0;
  text-align: left;
}
.pain-list li {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  padding: 1rem 1.25rem;
  border-radius: 10px;
  margin-bottom: .75rem;
  font-size: clamp(.9rem, 1.5vw, 1rem);
}
.pain-icon { flex-shrink: 0; font-size: 1.1rem; margin-top: .1rem; }

.section-para-quem,
.section-para-quem .container,
.section-para-quem .img-cards,
.section-para-quem .img-card,
.section-para-quem .img-card img {
  background: #000;
}
.section-para-quem .container {
  max-width: 1500px;
  padding-inline: clamp(12px, 2vw, 32px);
}

/* ===== Image Cards (Para Quem) ===== */
.img-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(.75rem, 1.5vw, 1.5rem);
  margin-top: 2rem;
}
.img-card {
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  border: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.img-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.6);
}
.img-card img {
  width: 100%;
  height: 220px;
  display: block;
  object-fit: cover;
  object-position: top center;
}
.img-card-body {
  padding: 1rem 1.1rem 1.25rem;
  background: #0b1518;
  border-top: 2px solid var(--accent);
}
.img-card-body h3 {
  font-size: .95rem;
  margin-bottom: .4rem;
  color: var(--text);
  letter-spacing: .01em;
}
.img-card-body p {
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.55;
}

/* ===== Movimento / Stats ===== */
.section-movimento {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 10vw, 7rem);
  text-align: center;
  background: #050810;
}
.movimento-bg {
  position: absolute;
  inset: 0;
  background: url('images/bg-alunos.webp') center/cover no-repeat;
  opacity: .42;
  z-index: 0;
}
.section-movimento::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, #050810 0%, transparent 18%, transparent 82%, #050810 100%),
    linear-gradient(to right,  #050810 0%, transparent 15%, transparent 85%, #050810 100%);
  z-index: 1;
}
.movimento-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

.movimento-title {
  font-size: clamp(1.1rem, 2.8vw, 1.75rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.3;
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
  color: #7dd3fc;
  text-shadow: 0 0 18px rgba(125,211,252,.55), 0 0 40px rgba(56,189,248,.3);
}

.movimento-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 4vw, 3.5rem);
}

.movimento-numero {
  font-size: clamp(5rem, 16vw, 11rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.02em;
  flex-shrink: 0;
}
.neon-plus {
  color: transparent;
  -webkit-text-stroke: clamp(2px, .4vw, 4px) #a855f7;
  text-shadow:
    0 0 12px #a855f7,
    0 0 28px #a855f7,
    0 0 60px #7c3aed,
    0 0 100px #6d28d9;
}
.neon-num {
  color: transparent;
  -webkit-text-stroke: clamp(2px, .4vw, 4px) #38bdf8;
  text-shadow:
    0 0 12px #38bdf8,
    0 0 28px #0ea5e9,
    0 0 65px #0284c7,
    0 0 120px #0369a1;
}

.stat-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  min-width: 100px;
}
.stat-circle {
  width: clamp(40px, 5vw, 56px);
  height: clamp(40px, 5vw, 56px);
  border: 2px solid #38bdf8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(.9rem, 1.8vw, 1.3rem);
  color: #38bdf8;
  box-shadow: 0 0 12px rgba(56,189,248,.4), inset 0 0 8px rgba(56,189,248,.1);
  margin-bottom: .2rem;
}
.stat-val {
  font-size: clamp(.85rem, 1.8vw, 1.05rem);
  font-weight: 700;
  color: #e2e8f0;
}
.stat-lbl {
  font-size: clamp(.72rem, 1.3vw, .88rem);
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.movimento-sub {
  font-size: clamp(.9rem, 2vw, 1.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.85);
  margin-top: clamp(1.5rem, 4vw, 3rem);
}

@media (max-width: 640px) {
  .movimento-row { flex-direction: column; gap: 1.5rem; }
  .movimento-numero { font-size: clamp(4.5rem, 22vw, 6rem); }
}

/* ===== Módulos ===== */
.modulos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.modulo-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease;
}
.modulo-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.modulo-img-wrap { overflow: hidden; max-height: 200px; }
.modulo-img-wrap img { width: 100%; height: 200px; object-fit: cover; }
.modulo-body { padding: 1.5rem; }
.modulo-icon { margin-bottom: .75rem; }
.modulo-icon img { width: 44px; height: 44px; }
.modulo-lista {
  list-style: none;
  margin-top: .75rem;
}
.modulo-lista li {
  color: var(--muted);
  font-size: .9rem;
  padding: .3rem 0;
  border-bottom: 1px solid var(--line);
}
.modulo-lista li::before { content: "→ "; color: var(--accent); }
.modulo-lista li:last-child { border-bottom: none; }

.modulo-card--destaque {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(255,90,60,.08), rgba(255,138,60,.05));
  border-color: rgba(255,90,60,.3);
}
.modulo-body--ia {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto auto;
  column-gap: 2rem;
  align-items: start;
}
.modulo-body--ia .modulo-icon { grid-column: 1; }
.modulo-body--ia h3          { grid-column: 1; }
.modulo-body--ia > p         { grid-column: 1; }
.modulo-body--ia .modulo-lista { grid-column: 1; }
.tutor-phone {
  grid-column: 2;
  grid-row: 1 / -1;
  width: clamp(120px, 18vw, 200px);
  align-self: center;
  border-radius: 24px;
}

/* ===== Bônus ===== */
.bonus-section { background: var(--bg); }
.bonus-badge   { margin: 0 auto 1.5rem; }
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  text-align: center;
}
.bonus-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  transition: border-color .2s, transform .2s;
}
.bonus-item:hover { border-color: var(--accent); transform: translateY(-4px); }
.bonus-item img { margin: 0 auto .75rem; width: 52px; height: 52px; }
.bonus-item h3  { margin-bottom: .5rem; font-size: 1.05rem; }
.bonus-item p   { color: var(--muted); font-size: .9rem; }

/* ===== Alunos / Prova social ===== */
.section-alunos {
  position: relative;
  overflow: hidden;
}
.alunos-bg {
  position: absolute;
  inset: 0;
  background: url('images/bg-alunos.webp') center/cover no-repeat;
  opacity: .08;
  z-index: 0;
}
.alunos-content {
  position: relative;
  z-index: 1;
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-top: 2.5rem;
}
.testimonials img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform .2s;
}
.testimonials img:hover { transform: scale(1.03); }

/* ===== Método neon cards ===== */
.metodo-section { background: #000; }

.metodo-title {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.metodo-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
}

.metodo-card {
  background: #050505;
  border: 2px solid var(--neon);
  border-radius: 14px;
  padding: 1.75rem 1.1rem 1.5rem;
  text-align: center;
  box-shadow:
    0 0 10px color-mix(in srgb, var(--neon) 40%, transparent),
    0 0 28px color-mix(in srgb, var(--neon) 15%, transparent),
    inset 0 0 10px color-mix(in srgb, var(--neon) 5%, transparent);
  transition: transform .2s, box-shadow .2s;
}
.metodo-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 0 18px color-mix(in srgb, var(--neon) 60%, transparent),
    0 0 48px color-mix(in srgb, var(--neon) 25%, transparent),
    inset 0 0 14px color-mix(in srgb, var(--neon) 8%, transparent);
}

.metodo-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.1rem;
  color: var(--neon);
  filter: drop-shadow(0 0 6px var(--neon)) drop-shadow(0 0 14px color-mix(in srgb, var(--neon) 50%, transparent));
}
.metodo-icon svg { width: 100%; height: 100%; }

.metodo-card h3 {
  font-size: clamp(.8rem, 1.4vw, .95rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #fff;
  margin-bottom: .65rem;
  line-height: 1.3;
}
.metodo-card p {
  font-size: clamp(.75rem, 1.2vw, .85rem);
  color: rgba(255,255,255,.6);
  line-height: 1.55;
}

.metodo-separator {
  height: 4px;
  margin: clamp(2rem, 4vw, 3rem) 0;
  background: repeating-linear-gradient(
    90deg,
    #22c55e 0px, #22c55e 14px,
    transparent 14px, transparent 22px
  );
  border-radius: 2px;
  opacity: .75;
}

.metodo-cta-text {
  text-align: center;
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: rgba(255,255,255,.9);
  line-height: 1.6;
  max-width: 680px;
  margin-inline: auto;
}
.metodo-cta-text strong { color: #fff; }

.metodo-destaque {
  text-align: center;
  font-size: clamp(1.1rem, 2.6vw, 1.55rem);
  font-weight: 800;
  color: rgba(255,255,255,.92);
  line-height: 1.5;
  max-width: 760px;
  margin: 1.5rem auto 0;
}
.metodo-hl {
  color: #22c55e;
  text-shadow: 0 0 14px rgba(34,197,94,.45);
}

@media (max-width: 900px) {
  .metodo-cards { grid-template-columns: repeat(3, 1fr); }
  .metodo-cards .metodo-card:nth-child(4),
  .metodo-cards .metodo-card:nth-child(5) {
    grid-column: span 1;
  }
  .metodo-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .metodo-cards .metodo-card:last-child {
    grid-column: span 2;
    max-width: 340px;
    margin-inline: auto;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .metodo-cards { grid-template-columns: 1fr; }
  .metodo-cards .metodo-card:last-child { grid-column: span 1; max-width: 100%; }
}

/* ===== Video testimonials ===== */
.video-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: 1.5rem;
  text-align: left;
}
.vt-facade {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  cursor: pointer;
  border: 1px solid var(--line);
  transition: border-color .2s, transform .2s;
}
.vt-facade:hover { border-color: var(--accent); transform: translateY(-3px); }
.vt-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .2s;
}
.vt-facade:hover .vt-thumb { opacity: .8; }
.vt-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 52px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.6));
  transition: transform .15s;
  z-index: 2;
}
.vt-facade:hover .vt-play { transform: scale(1.15); }
.vt-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
@media (max-width: 900px) {
  .video-testimonials { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .video-testimonials { grid-template-columns: 1fr; }
}

/* ===== Mentor ===== */
.mentor {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2.5rem;
}
.mentor-photo-wrap {
  flex-shrink: 0;
  width: clamp(140px, 20vw, 200px);
}
.mentor-img {
  width: 100%;
  border-radius: 16px;
  border: 3px solid var(--accent);
}
.mentor-bio h3 { font-size: 1.4rem; margin-bottom: .75rem; }
.mentor-bio p  { margin-bottom: .75rem; color: var(--muted); }
.badge {
  display: inline-block;
  background: rgba(0,201,167,.1);
  border: 1px solid rgba(0,201,167,.25);
  color: var(--accent-2);
  font-weight: 700;
  padding: .3rem .9rem;
  border-radius: 50px;
  font-size: .88rem;
  margin-bottom: 1rem;
}

/* ===== Pricing ===== */
.pricing {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0,201,167,.1), transparent 70%),
    var(--bg);
}
.price-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  max-width: 540px;
  margin: 2rem auto 0;
}
/* Stack de valor */
.price-stack {
  list-style: none;
  text-align: left;
  margin-bottom: 0;
}
.price-stack li {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(.88rem, 1.5vw, .97rem);
}
.price-stack li:last-child { border-bottom: none; }
.ps-check { flex-shrink: 0; font-size: 1rem; }
.ps-name  { flex: 1; color: var(--text); font-weight: 500; }
.ps-val   {
  flex-shrink: 0;
  font-weight: 700;
  font-size: .88rem;
  color: var(--muted);
  background: rgba(255,255,255,.05);
  padding: .15rem .55rem;
  border-radius: 6px;
}
.ps-val--destaque { color: var(--accent-2); background: rgba(0,229,180,.08); }

.valor-total {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #f59e0b;
  text-shadow: 0 0 20px rgba(245,158,11,.4);
  margin: .25rem 0 .5rem;
}
.valor-total span { color: #fbbf24; }

.mas-calma {
  font-size: clamp(.9rem, 1.6vw, 1rem);
  color: rgba(255,255,255,.65);
  margin-bottom: .25rem;
}

.oferta-banner {
  font-size: clamp(1.1rem, 2.8vw, 1.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #fff;
  padding: .75rem 0;
}

.price-includes { font-weight: 700; color: var(--muted); margin-bottom: .75rem; }
.price-list {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
}
.price-list li {
  padding: .5rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .97rem;
}
.price-list li:last-child { border-bottom: none; }
.price-divider { height: 1px; background: var(--line); margin: 1.25rem 0; }
.strike       { color: var(--muted); text-decoration: line-through; font-size: .95rem; }
.price-label  { margin-top: .4rem; color: var(--muted); font-size: .9rem; }
.price {
  font-size: clamp(2.2rem, 8vw, 3.4rem);
  font-weight: 800;
  color: var(--accent-2);
  line-height: 1.1;
  margin: .25rem 0;
  text-shadow: 0 0 24px rgba(0,229,180,.3);
}
.price span   { font-size: .95rem; color: var(--muted); font-weight: 500; }
.price-prefix {
  font-size: .38em;
  font-weight: 500;
  color: var(--muted);
  vertical-align: middle;
  letter-spacing: .02em;
}
.installments { color: var(--muted); font-size: .9rem; margin-bottom: .5rem; }
.price-avista {
  font-size: .88rem;
  color: rgba(255,255,255,.35);
  margin-bottom: 1.5rem;
}
.price-avista strong { color: rgba(255,255,255,.5); font-weight: 600; }
.guarantee-seal { margin: 2rem auto 1rem; }
.guarantee    { color: var(--muted); font-size: .9rem; max-width: 420px; margin: 0 auto; }
.compra-segura {
  width: clamp(160px, 40%, 240px);
  height: auto;
  margin: 1.25rem auto 0;
  opacity: .75;
  filter: brightness(1.1);
  transition: opacity .2s;
}
.compra-segura:hover { opacity: 1; }

@keyframes pulse {
  0%,100% { opacity: 1; }
  50%      { opacity: .6; }
}
.pulse { animation: pulse 2s ease-in-out infinite; }

/* ===== Garantia ===== */
.garantia-section {
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(0,201,167,.07) 0%, transparent 60%),
    linear-gradient(135deg, #0a1a20 0%, #060e12 50%, #091418 100%);
  padding-block: clamp(4rem, 9vw, 7rem);
  border-top: 1px solid rgba(0,201,167,.12);
  border-bottom: 1px solid rgba(0,201,167,.12);
}
.garantia-inner {
  max-width: 960px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

/* Selo */
.garantia-seal-wrap {
  position: relative;
  width: clamp(180px, 22vw, 260px);
  flex-shrink: 0;
}
.garantia-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(245,158,11,.2), transparent 70%);
  filter: blur(18px);
  z-index: 0;
  animation: garantiaGlow 3s ease-in-out infinite alternate;
}
@keyframes garantiaGlow {
  from { opacity: .6; transform: scale(.9); }
  to   { opacity: 1;  transform: scale(1.1); }
}
.garantia-seal-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(245,158,11,.3));
}

/* Texto */
.garantia-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-2);
  border: 1.5px solid rgba(0,229,180,.3);
  background: rgba(0,229,180,.06);
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.garantia-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.garantia-body {
  font-size: clamp(.9rem, 1.6vw, 1.05rem);
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 1.5rem;
}
.garantia-body strong { color: rgba(255,255,255,.9); }

.garantia-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.garantia-lista li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: clamp(.88rem, 1.5vw, 1rem);
  color: #e2e8f0;
  font-weight: 500;
}
.garantia-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #000;
  font-size: .78rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0,201,167,.4);
}

@media (max-width: 700px) {
  .garantia-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .garantia-seal-wrap { width: clamp(160px, 50vw, 220px); margin-inline: auto; }
  .garantia-body { max-width: 100%; }
  .garantia-lista { align-items: flex-start; text-align: left; max-width: 300px; margin-inline: auto; }
}

/* ===== FAQ ===== */
.faq { max-width: 720px; margin: 2rem auto 0; }
.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: .85rem;
  overflow: hidden;
  transition: border-color .2s;
}
.faq details[open] { border-color: rgba(0,201,167,.35); }
.faq summary {
  cursor: pointer;
  padding: 1.1rem 3rem 1.1rem 1.25rem;
  font-weight: 700;
  font-size: clamp(.9rem, 1.5vw, 1rem);
  list-style: none;
  position: relative;
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p {
  padding: 0 1.25rem 1.25rem;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.7;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== Formação Completa ===== */
.formacao-section {
  background:
    radial-gradient(ellipse 60% 40% at 20% 50%, rgba(109,40,217,.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(67,56,202,.15) 0%, transparent 60%),
    linear-gradient(180deg, #090615 0%, #0b0818 50%, #090615 100%);
  padding-block: clamp(4rem, 9vw, 7rem);
}
.formacao-inner {
  width: 100%;
  max-width: 860px;
  margin-inline: auto;
  padding-inline: clamp(16px, 5vw, 40px);
  text-align: center;
}

/* Header */
.formacao-header { margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.formacao-title {
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  font-weight: 900;
  color: #f1f5f9;
  line-height: 1.4;
  margin-bottom: 1rem;
  letter-spacing: -.01em;
}
.formacao-hl {
  background: linear-gradient(90deg, #a78bfa, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.formacao-sub {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 800;
  color: #fb923c;
  letter-spacing: .01em;
}

/* ── Curso Principal ── */
.curso-principal {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  background: linear-gradient(135deg, rgba(109,40,217,.12), rgba(67,56,202,.08));
  border: 1.5px solid rgba(139,92,246,.5);
  border-radius: 20px;
  padding: clamp(1.1rem, 3vw, 1.75rem);
  margin-bottom: 1.25rem;
  box-shadow:
    0 0 0 1px rgba(139,92,246,.15),
    0 4px 32px rgba(109,40,217,.2),
    0 0 80px rgba(109,40,217,.08);
  text-align: left;
  backdrop-filter: blur(4px);
  transition: border-color .25s, box-shadow .25s;
}
.curso-principal:hover {
  border-color: rgba(139,92,246,.8);
  box-shadow: 0 0 0 1px rgba(139,92,246,.25), 0 8px 48px rgba(109,40,217,.35);
}
.curso-img {
  width: clamp(130px, 36%, 240px);
  flex-shrink: 0;
  border-radius: 12px;
  object-fit: contain;
  background: transparent;
}
.curso-tag {
  font-size: .78rem;
  font-weight: 700;
  color: #a78bfa;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: .5rem;
}
.curso-nome {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: .5rem;
  letter-spacing: -.02em;
}
.curso-desc {
  color: rgba(255,255,255,.45);
  font-size: clamp(.85rem, 1.6vw, 1rem);
  font-style: italic;
}

/* ── Bonus Grid ── */
.bonus-neon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
  margin-bottom: 2.25rem;
}
.bonus-neon-card {
  background: linear-gradient(145deg, rgba(30,17,60,.95), rgba(15,10,35,.95));
  border: 1.5px solid rgba(99,102,241,.35);
  border-radius: 18px;
  padding: 1.5rem 1.25rem 1.35rem;
  text-align: center;
  position: relative;
  overflow: visible;
  box-shadow: 0 2px 16px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.04);
  transition: transform .25s cubic-bezier(.22,.68,0,1.2), border-color .25s, box-shadow .25s;
}
.bonus-neon-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99,102,241,.7);
  box-shadow: 0 8px 32px rgba(99,102,241,.2), inset 0 1px 0 rgba(255,255,255,.06);
}
.bonus-neon-card--ouro {
  border-color: rgba(234,179,8,.45);
  background: linear-gradient(145deg, rgba(40,28,8,.95), rgba(20,14,4,.95));
  box-shadow: 0 2px 16px rgba(0,0,0,.4), 0 0 28px rgba(234,179,8,.08);
}
.bonus-neon-card--ouro:hover {
  border-color: rgba(234,179,8,.8);
  box-shadow: 0 8px 32px rgba(234,179,8,.2);
}

/* Imagem do card de bônus */
.bonus-card-img-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 180px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #000;
}
.bonus-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .35s ease;
}
.bonus-neon-card:hover .bonus-card-img {
  transform: scale(1.04);
}
.bonus-card-body { text-align: left; }

.bonus-neon-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: .5rem;
}

.bonus-ouro-badge {
  position: absolute;
  top: -1.1rem;
  right: -1.1rem;
  z-index: 2;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.5));
}
.bonus-ouro-badge img { width: 70px; height: 70px; }

.bonus-icon-ouro {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 0 8px rgba(234,179,8,.5));
}

.bonus-riscado {
  display: inline-flex;
  align-items: center;
  color: #fca5a5;
  font-weight: 700;
  font-size: .8rem;
  text-decoration: line-through;
  background: rgba(239,68,68,.12);
  border: 1px solid rgba(239,68,68,.2);
  padding: .2rem .55rem;
  border-radius: 6px;
  flex-shrink: 0;
}

.bonus-label {
  display: block;
  font-size: .75rem;
  font-weight: 800;
  color: #818cf8;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .2rem;
}
.bonus-label--ouro { color: #fbbf24; }

.bonus-neon-card h4 {
  font-size: clamp(.9rem, 1.8vw, 1.05rem);
  font-weight: 800;
  color: #f1f5f9;
  line-height: 1.35;
  margin-bottom: .55rem;
  letter-spacing: -.01em;
}
.bonus-neon-card p {
  font-size: clamp(.75rem, 1.3vw, .85rem);
  color: rgba(255,255,255,.45);
  line-height: 1.6;
  margin-bottom: .5rem;
}

/* ── CTA ── */
.formacao-cta {
  display: inline-block;
  background: linear-gradient(135deg, #15803d, #16a34a, #22c55e);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: clamp(1rem, 2vw, 1.15rem);
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 1.15rem 2.75rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(34,197,94,.35), 0 0 0 0 rgba(34,197,94,.4);
  transition: transform .2s, box-shadow .2s;
  margin-bottom: .9rem;
  animation: btnPulse 2.5s ease-in-out infinite;
}
.formacao-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px rgba(34,197,94,.55);
  animation: none;
}
.formacao-micro {
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .02em;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .curso-principal { flex-direction: column; text-align: center; }
  .curso-img { width: 100%; max-height: 200px; }
  .bonus-neon-grid { grid-template-columns: 1fr; }
  .bonus-neon-top { justify-content: space-between; }
  .bonus-ouro-badge { top: -.8rem; right: -.8rem; }
}

/* ===== Tutor IA ===== */
.tutor-section {
  position: relative;
  background: #060c0e;
  padding-block: clamp(4rem, 9vw, 7rem);
  overflow: hidden;
  border-top: 1px solid rgba(0,229,180,.12);
  border-bottom: 1px solid rgba(0,229,180,.12);
}
.tutor-section::before,
.tutor-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, transparent, #00e5b4 30%, #00ff88 70%, transparent);
  opacity: .7;
}
.tutor-section::before { left: 0; }
.tutor-section::after  { right: 0; }

.tutor-inner {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

/* Text side */
.tutor-tag {
  display: inline-block;
  border: 1.5px solid rgba(0,229,180,.5);
  color: #00e5b4;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  background: rgba(0,229,180,.06);
}

.tutor-title {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 900;
  color: #f1f5f9;
  line-height: 1.25;
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
}
.tutor-hl {
  background: linear-gradient(90deg, #00e5b4, #00ff88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tutor-body {
  font-size: clamp(.9rem, 1.6vw, 1.05rem);
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 2rem;
}

.tutor-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.tutor-lista li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: clamp(.95rem, 1.6vw, 1.1rem);
  font-weight: 700;
  color: #e2e8f0;
}
.tutor-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00e5b4, #00ff88);
  color: #000;
  font-weight: 900;
  font-size: .9rem;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(0,229,180,.5);
}

/* Phone side */
.tutor-phone-wrap {
  position: relative;
  width: clamp(220px, 28vw, 360px);
  flex-shrink: 0;
}
.tutor-glow {
  position: absolute;
  inset: -15%;
  background: radial-gradient(ellipse 70% 80% at 50% 60%, rgba(0,229,180,.25) 0%, rgba(0,255,136,.1) 40%, transparent 70%);
  z-index: 0;
  filter: blur(20px);
  animation: tutorGlow 3s ease-in-out infinite alternate;
}
@keyframes tutorGlow {
  from { opacity: .7; transform: scale(.95); }
  to   { opacity: 1;  transform: scale(1.05); }
}
.tutor-phone-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 60px rgba(0,229,180,.25));
}

@media (max-width: 768px) {
  .tutor-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .tutor-body { max-width: 100%; }
  .tutor-lista { align-items: flex-start; text-align: left; max-width: 320px; margin-inline: auto; }
  .tutor-phone-wrap { width: clamp(200px, 60vw, 300px); margin-inline: auto; }
}

/* ===== Lightbox ===== */
.lightbox-trigger {
  cursor: zoom-in;
  transition: transform .2s, box-shadow .2s, opacity .2s;
}
.lightbox-trigger:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  opacity: .9;
}
.lightbox-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  cursor: zoom-out;
  animation: lbFadeIn .2s ease;
}
.lightbox[hidden] { display: none; }

@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox-img {
  max-width: min(90vw, 860px);
  max-height: 90dvh;
  width: auto;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,.8);
  animation: lbZoomIn .2s ease;
  cursor: default;
}
@keyframes lbZoomIn {
  from { transform: scale(.92); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.lightbox-close:hover { background: rgba(255,255,255,.22); }

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 2.5rem;
  background: var(--bg-alt);
}
.site-footer p { margin-bottom: .4rem; }

/* ===== Sticky mobile CTA ===== */
.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 200;
  background: linear-gradient(135deg, #009e85, var(--accent), var(--accent-2));
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-weight: 800;
  font-size: .95rem;
  padding: 1rem 1.25rem;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0,0,0,.55);
  transform: translateY(120%);
  transition: transform .3s cubic-bezier(.22,.68,0,1.2);
  pointer-events: none;
}
.sticky-cta--visible {
  transform: translateY(0);
  pointer-events: auto;
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .sticky-cta { transition: none; }
}

/* ===== Responsive: tablet (≤900px) ===== */
@media (max-width: 900px) {
  .img-cards { grid-template-columns: repeat(2, 1fr); }
  .section-para-quem .container { max-width: 100%; }

  .testimonials { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .modulos-grid { grid-template-columns: 1fr; }
  .modulo-card--destaque { grid-column: span 1; }
  .modulo-body--ia {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .tutor-phone {
    grid-column: 1;
    grid-row: auto;
    margin: 1.25rem auto 0;
    width: clamp(140px, 45vw, 200px);
  }
  .mentor {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .mentor-photo-wrap {
    margin: 0 auto;
    width: clamp(140px, 40vw, 180px);
  }
  .badge { display: inline-block; }
}

/* ===== Responsive: mobile (≤640px) ===== */
@media (max-width: 640px) {
  .img-cards { grid-template-columns: 1fr; }

  .testimonials { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .header-cta { display: none; }
  main { padding-bottom: 80px; }
  .price-card { padding: 1.5rem 1.1rem; }

  /* Sticky CTA only on mobile */
  .sticky-cta { display: flex; align-items: center; justify-content: center; }
}

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