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

:root {
  --bg:       #1E1E1E;
  --bg2:      #16162a;
  --purple:   #6C63FF;
  --purple2:  #9B59FF;
  --cyan:     #00D4FF;
  --pink:     #C850C0;
  --text:     #E8E8F0;
  --muted:    #9090B0;
  --card-bg:  #22223a;
  --card-border: rgba(108,99,255,.35);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* ── UTILS ── */
.gradient-text {
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s, filter .25s;
  box-shadow: 0 4px 20px rgba(108,99,255,.45);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity: 0;
  transition: opacity .25s;
}
.btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 8px 32px rgba(108,99,255,.65); filter: brightness(1.1); }
.btn-primary:hover::after { opacity: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  background: transparent;
  color: var(--purple);
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid var(--purple);
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: background .25s, color .25s, transform .25s, box-shadow .25s;
}
.btn-outline:hover { background: var(--purple); color: #fff; transform: translateY(-3px); box-shadow: 0 8px 32px rgba(108,99,255,.5); }

section { padding: 5rem 1.25rem; }
.container { max-width: 1160px; margin: 0 auto; }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .7s ease, transform .7s ease; }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right.visible { opacity: 1; transform: none; }

/* ── STARS BACKGROUND ── */
#stars-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* ══════════════════════════════
   HEADER
══════════════════════════════ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 1.25rem;
  transition: background .35s, backdrop-filter .35s, box-shadow .35s;
}
header.scrolled {
  background: rgba(22,22,42,.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.logo-text span { display: block; font-size: .65rem; font-weight: 400; color: var(--muted); letter-spacing: .05em; }

nav { display: flex; align-items: center; gap: .25rem; }
nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  padding: .45rem .85rem;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
nav a:hover { color: #fff; background: rgba(108,99,255,.15); }

.nav-actions { display: flex; align-items: center; gap: .75rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(22,22,42,.97);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  border-bottom: 1px solid var(--card-border);
  flex-direction: column;
  gap: .5rem;
  z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: .75rem 1rem;
  border-radius: 10px;
  transition: background .2s;
}
.mobile-menu a:hover { background: rgba(108,99,255,.2); }

@media(max-width:768px) {
  nav, .nav-actions .btn-primary { display: none; }
  .hamburger { display: flex; }
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.orb1 { width: 500px; height: 500px; background: var(--purple); top: -100px; right: -100px; }
.orb2 { width: 350px; height: 350px; background: var(--cyan); bottom: -80px; left: -80px; }
.orb3 { width: 250px; height: 250px; background: var(--pink); top: 40%; left: 45%; }

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}
@media(max-width:900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { order: 1; }
  .hero-visual { order: 0; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(108,99,255,.18);
  border: 1px solid rgba(108,99,255,.4);
  border-radius: 50px;
  padding: .35rem 1rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--purple2);
  margin-bottom: 1.25rem;
  letter-spacing: .04em;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--purple2); animation: pulse-dot 1.5s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }

.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  color: #fff;
}
.hero-subtitle {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
}
@media(max-width:900px) { .hero-subtitle { margin: 0 auto 2rem; } }

.hero-cta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
@media(max-width:900px) { .hero-cta { justify-content: center; } }

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
@media(max-width:900px) { .hero-stats { justify-content: center; } }
.hero-stat { text-align: left; }
.hero-stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: #fff; }
.hero-stat span { font-size: .78rem; color: var(--muted); font-weight: 400; }

/* BOOK ILLUSTRATION */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.book-scene {
  position: relative;
  width: 340px; height: 340px;
}
@media(max-width:480px) { .book-scene { width: 260px; height: 260px; } }

.book-glow {
  position: absolute;
  width: 280px; height: 280px;
  background: radial-gradient(ellipse, rgba(108,99,255,.5) 0%, rgba(0,212,255,.2) 50%, transparent 75%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse { 0%,100%{opacity:.7;transform:translate(-50%,-50%) scale(1)} 50%{opacity:1;transform:translate(-50%,-50%) scale(1.1)} }

.book-svg { position: relative; z-index: 2; width: 100%; height: 100%; animation: book-float 4s ease-in-out infinite; }
@keyframes book-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }

.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: particle-rise linear infinite;
}
@keyframes particle-rise {
  0%   { transform: translateY(0) scale(1); opacity: 1; }
  100% { transform: translateY(-120px) scale(0); opacity: 0; }
}

/* ══════════════════════════════
   COMO FUNCIONA
══════════════════════════════ */
#como-funciona {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  position: relative;
  z-index: 1;
}
.section-label {
  text-align: center;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--purple);
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}
.section-sub {
  text-align: center;
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 3.5rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.75rem;
}
.step-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.step-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(108,99,255,.25); border-color: rgba(108,99,255,.7); }
.step-number {
  position: absolute;
  top: -14px; left: 1.5rem;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .65rem;
  border-radius: 20px;
  letter-spacing: .05em;
}
.step-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(108,99,255,.2), rgba(0,212,255,.15));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: .5rem auto 1.25rem;
  border: 1px solid rgba(108,99,255,.25);
}
.step-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.step-card p { font-size: .85rem; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════
   O QUE VEM NA CAIXA
══════════════════════════════ */
#caixa {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.caixa-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(108,99,255,.1) 0%, transparent 65%);
  pointer-events: none;
}
.caixa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media(max-width:768px) { .caixa-grid { grid-template-columns: 1fr; } }

.caixa-items { display: flex; flex-direction: column; gap: 1.25rem; }
.caixa-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  cursor: default;
}
.caixa-item:hover { transform: translateX(6px); box-shadow: 0 8px 30px rgba(108,99,255,.2); border-color: rgba(108,99,255,.6); }
.caixa-item-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.icon-purple { background: linear-gradient(135deg, rgba(108,99,255,.3), rgba(155,89,255,.2)); border: 1px solid rgba(108,99,255,.3); }
.icon-cyan   { background: linear-gradient(135deg, rgba(0,212,255,.2), rgba(0,212,255,.1)); border: 1px solid rgba(0,212,255,.25); }
.icon-pink   { background: linear-gradient(135deg, rgba(200,80,192,.25), rgba(200,80,192,.1)); border: 1px solid rgba(200,80,192,.3); }
.icon-gold   { background: linear-gradient(135deg, rgba(255,200,50,.2), rgba(255,150,50,.1)); border: 1px solid rgba(255,200,50,.25); }

.caixa-item-info h3 { font-size: .98rem; font-weight: 700; color: #fff; margin-bottom: .35rem; }
.caixa-item-info p { font-size: .84rem; color: var(--muted); line-height: 1.6; }

/* box visual */
.box-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.box-wrapper {
  position: relative;
  width: 300px; height: 300px;
}
.box-glow2 {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse, rgba(108,99,255,.35) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 3.5s ease-in-out infinite;
}
.box-svg-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  animation: book-float 5s ease-in-out infinite;
}

/* ══════════════════════════════
   LIVRO DO MÊS
══════════════════════════════ */
#livro-mes {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  position: relative;
  z-index: 1;
}
.livro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media(max-width:768px) { .livro-inner { grid-template-columns: 1fr; text-align: center; } }

.book-cover-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.book-cover-3d {
  width: 180px;
  height: 260px;
  background: linear-gradient(145deg, #4a1580, #6C63FF 40%, #1a0a4a);
  border-radius: 4px 14px 14px 4px;
  box-shadow:
    -6px 0 0 #2a0a60,
    -12px 0 0 #1a0640,
    0 20px 60px rgba(108,99,255,.5),
    0 0 40px rgba(108,99,255,.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  position: relative;
  animation: book-float 4s ease-in-out infinite;
  cursor: default;
  transition: transform .3s;
}
.book-cover-3d:hover { transform: rotateY(-12deg) scale(1.05); }
.book-cover-3d .cover-stars { font-size: 1.4rem; margin-bottom: .75rem; }
.book-cover-3d .cover-title {
  font-size: .95rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  margin-bottom: .35rem;
}
.book-cover-3d .cover-author { font-size: .68rem; color: rgba(255,255,255,.6); text-align: center; }
.book-cover-3d::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 4px 14px 14px 4px;
  background: linear-gradient(145deg, rgba(255,255,255,.12) 0%, transparent 60%);
  pointer-events: none;
}
.book-cover-bg-glow {
  position: absolute;
  width: 250px; height: 250px;
  background: radial-gradient(ellipse, rgba(108,99,255,.4) 0%, transparent 70%);
  border-radius: 50%;
}
.badge-mes {
  position: absolute;
  top: -12px; right: -12px;
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  padding: .4rem .75rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255,107,107,.4);
}

.livro-info .section-label { text-align: left; }
@media(max-width:768px) { .livro-info .section-label { text-align: center; } }
.livro-info h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); font-weight: 800; color: #fff; margin-bottom: 1rem; line-height: 1.3; }
.livro-info p { font-size: .92rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.5rem; }

.livro-tags { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
@media(max-width:768px) { .livro-tags { justify-content: center; } }
.tag {
  background: rgba(108,99,255,.15);
  border: 1px solid rgba(108,99,255,.3);
  color: var(--purple2);
  font-size: .75rem;
  font-weight: 600;
  padding: .3rem .8rem;
  border-radius: 50px;
}

/* ══════════════════════════════
   PLANOS
══════════════════════════════ */
#planos {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.planos-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(108,99,255,.12) 0%, transparent 60%);
  pointer-events: none;
}
.planos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
@media(max-width:900px) { .planos-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } }

.plan-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.plan-card:hover { transform: translateY(-8px); box-shadow: 0 16px 50px rgba(108,99,255,.3); }

.plan-card.popular {
  border-color: var(--purple);
  background: linear-gradient(160deg, #26244a 0%, #1e1e3a 100%);
  box-shadow: 0 0 0 1px var(--purple), 0 12px 50px rgba(108,99,255,.35);
}
.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--purple), var(--purple2));
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .35rem 1.25rem;
  border-radius: 50px;
  letter-spacing: .05em;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(108,99,255,.5);
}
.plan-header { text-align: center; }
.plan-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto .75rem;
}
.plan-icon-mensal  { background: linear-gradient(135deg, rgba(0,212,255,.2), rgba(0,212,255,.1)); border: 1px solid rgba(0,212,255,.3); }
.plan-icon-semes   { background: linear-gradient(135deg, rgba(108,99,255,.3), rgba(155,89,255,.2)); border: 1px solid rgba(108,99,255,.4); }
.plan-icon-anual   { background: linear-gradient(135deg, rgba(255,200,50,.2), rgba(255,150,50,.1)); border: 1px solid rgba(255,200,50,.3); }

.plan-name { font-size: 1.1rem; font-weight: 700; color: #fff; }
.plan-period { font-size: .78rem; color: var(--muted); }

.plan-price { text-align: center; border-top: 1px solid rgba(255,255,255,.06); padding-top: 1.25rem; }
.plan-price .from { font-size: .75rem; color: var(--muted); margin-bottom: .15rem; }
.plan-price .amount { display: flex; align-items: baseline; justify-content: center; gap: .2rem; }
.plan-price .currency { font-size: 1.1rem; font-weight: 700; color: #fff; }
.plan-price .value { font-size: 2.8rem; font-weight: 900; color: #fff; line-height: 1; }
.plan-price .cents { font-size: 1.1rem; font-weight: 700; color: #fff; align-self: flex-start; margin-top: .4rem; }
.plan-price .per { font-size: .78rem; color: var(--muted); margin-top: .2rem; }
.plan-savings {
  display: inline-block;
  background: rgba(0,212,255,.12);
  border: 1px solid rgba(0,212,255,.25);
  color: var(--cyan);
  font-size: .72rem;
  font-weight: 600;
  padding: .25rem .7rem;
  border-radius: 50px;
  margin-top: .5rem;
}

.plan-features { list-style: none; display: flex; flex-direction: column; gap: .65rem; flex: 1; }
.plan-features li { display: flex; align-items: center; gap: .65rem; font-size: .88rem; color: var(--muted); }
.plan-features li .check { color: var(--purple2); font-size: 1rem; flex-shrink: 0; }
.plan-features li .x { color: #555; font-size: 1rem; flex-shrink: 0; }
.plan-features li.active { color: var(--text); }

.plan-cta { margin-top: auto; }
.plan-cta .btn-primary { width: 100%; justify-content: center; }
.plan-cta .btn-outline  { width: 100%; justify-content: center; }

/* ══════════════════════════════
   DEPOIMENTOS
══════════════════════════════ */
#depoimentos {
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
  position: relative;
  z-index: 1;
}
.dep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.dep-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 1.75rem;
  transition: transform .3s, box-shadow .3s;
}
.dep-card:hover { transform: translateY(-5px); box-shadow: 0 10px 35px rgba(108,99,255,.2); }
.dep-stars { color: #FFD700; font-size: .9rem; margin-bottom: .85rem; letter-spacing: .1em; }
.dep-text { font-size: .9rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.dep-author { display: flex; align-items: center; gap: .85rem; }
.dep-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.dep-name { font-size: .9rem; font-weight: 700; color: #fff; }
.dep-loc  { font-size: .75rem; color: var(--muted); }

/* ══════════════════════════════
   CTA FINAL
══════════════════════════════ */
#cta-final {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 5rem 1.25rem;
}
.cta-box {
  background: linear-gradient(135deg, rgba(108,99,255,.25) 0%, rgba(0,212,255,.1) 100%);
  border: 1px solid rgba(108,99,255,.4);
  border-radius: 28px;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(108,99,255,.3) 0%, transparent 60%);
  pointer-events: none;
}
.cta-box h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; color: #fff; margin-bottom: 1rem; position: relative; }
.cta-box p { font-size: .95rem; color: var(--muted); line-height: 1.7; max-width: 500px; margin: 0 auto 2rem; position: relative; }
.cta-box .cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; position: relative; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: var(--bg2);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 3.5rem 1.25rem 2rem;
  position: relative;
  z-index: 1;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
@media(max-width:900px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media(max-width:540px) { .footer-inner { grid-template-columns: 1fr; } }

.footer-brand p { font-size: .85rem; color: var(--muted); line-height: 1.7; margin: 1rem 0 1.25rem; max-width: 260px; }
.social-links { display: flex; gap: .75rem; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(108,99,255,.15);
  border: 1px solid rgba(108,99,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background .2s, transform .2s, box-shadow .2s;
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
}
.social-link:hover { background: var(--purple); transform: translateY(-3px); box-shadow: 0 6px 18px rgba(108,99,255,.4); }

.footer-col h4 { font-size: .88rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul li a { font-size: .83rem; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: var(--purple2); }

.footer-bottom {
  max-width: 1160px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .78rem;
  color: var(--muted);
}
.footer-bottom a { color: var(--muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--purple2); }
