/* =================================================
   ACADEMIA LA VITA - FUTURISTIC LANDING PAGE
   ================================================= */

:root {
  --bg-0: #05010f;
  --bg-1: #0a0420;
  --bg-2: #110630;
  --purple: #7b2ff7;
  --purple-deep: #4b0e8f;
  --pink: #ff2d95;
  --pink-soft: #ff6ec7;
  --cyan: #00e5ff;
  --blue: #2e8bff;
  --white: #f5f3ff;
  --gray: #a89fc4;
  --gray-dim: #6b6088;
  --gradient: linear-gradient(135deg, #ff2d95 0%, #7b2ff7 50%, #00e5ff 100%);
  --gradient-soft: linear-gradient(135deg, rgba(255,45,149,.15), rgba(123,47,247,.15), rgba(0,229,255,.15));
  --glow-pink: 0 0 30px rgba(255, 45, 149, .55);
  --glow-purple: 0 0 30px rgba(123, 47, 247, .55);
  --glow-cyan: 0 0 30px rgba(0, 229, 255, .55);
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ============ PRELOADER ============ */
#preloader {
  position: fixed; inset: 0;
  background: radial-gradient(circle at center, var(--bg-2), var(--bg-0));
  z-index: 99999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity .6s, visibility .6s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.loader-ring {
  display: inline-block; position: relative;
  width: 90px; height: 90px;
}
.loader-ring div {
  box-sizing: border-box; display: block; position: absolute;
  width: 72px; height: 72px; margin: 9px;
  border: 4px solid transparent;
  border-radius: 50%;
  animation: ring 1.2s cubic-bezier(.5,0,.5,1) infinite;
  border-top-color: var(--pink);
}
.loader-ring div:nth-child(1) { animation-delay: -.45s; border-top-color: var(--pink); }
.loader-ring div:nth-child(2) { animation-delay: -.30s; border-top-color: var(--purple); }
.loader-ring div:nth-child(3) { animation-delay: -.15s; border-top-color: var(--cyan); }
@keyframes ring { 0%{transform:rotate(0)} 100%{transform:rotate(360deg)} }
.loader-text {
  margin-top: 24px; font-family: var(--font-display);
  letter-spacing: 8px; font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: .4; } }

/* ============ BACKGROUND EFFECTS ============ */
#particles-canvas {
  position: fixed; inset: 0; z-index: -2;
  background: radial-gradient(ellipse at top, var(--bg-2) 0%, var(--bg-0) 70%);
}
.grid-overlay {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(123,47,247,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123,47,247,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* ============ CUSTOM CURSOR ============ */
.cursor-dot, .cursor-outline {
  position: fixed; pointer-events: none; z-index: 9999;
  border-radius: 50%; transform: translate(-50%, -50%);
  transition: transform .15s, opacity .25s;
  top: 0; left: 0;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--pink);
  box-shadow: var(--glow-pink);
}
.cursor-outline {
  width: 42px; height: 42px;
  border: 2px solid rgba(0, 229, 255, .6);
  transition: transform .25s ease, width .3s, height .3s;
}
.cursor-outline.hover {
  width: 70px; height: 70px;
  border-color: var(--pink);
  background: rgba(255, 45, 149, .1);
}
@media (max-width: 900px) {
  body { cursor: auto; }
  .cursor-dot, .cursor-outline { display: none; }
}

/* ============ NAVBAR ============ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all .35s;
}
#navbar.scrolled {
  background: rgba(10, 4, 32, .85);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  padding: 12px 0;
  border-bottom: 1px solid rgba(123, 47, 247, .25);
}
.nav-container {
  max-width: 1320px; margin: 0 auto;
  padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 900;
}
.logo-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--gradient);
  border-radius: 12px;
  font-size: 18px; color: white;
  box-shadow: var(--glow-purple);
  position: relative; overflow: hidden;
}
.logo-mark::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,.4) 50%, transparent 70%);
  animation: shine 3s infinite;
}
@keyframes shine { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.logo-text {
  display: flex; flex-direction: column;
  letter-spacing: 3px; line-height: 1;
  font-size: 18px;
}
.logo-text small { font-size: 9px; letter-spacing: 6px; color: var(--gray); margin-top: 2px; }

.nav-menu { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-weight: 600; font-size: 15px; letter-spacing: .5px;
  color: var(--white); position: relative;
  transition: color .25s;
  text-transform: uppercase;
}
.nav-link::after {
  content: ''; position: absolute;
  bottom: -8px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gradient);
  transition: width .3s;
}
.nav-link:hover, .nav-link.active { color: var(--pink-soft); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta {
  padding: 10px 22px;
  background: var(--gradient);
  border-radius: 30px;
  font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: var(--glow-pink);
  transition: transform .25s, box-shadow .25s;
}
.nav-cta:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 0 40px rgba(255,45,149,.85); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: transparent; border: 0; cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 28px; height: 2px;
  background: var(--white);
  transition: .3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: 0; right: -100%;
    width: 78%; max-width: 360px; height: 100vh;
    background: rgba(10, 4, 32, .98);
    backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center;
    gap: 24px; padding: 0 32px;
    transition: right .4s cubic-bezier(.7,0,.3,1);
    border-left: 1px solid rgba(123, 47, 247, .3);
  }
  .nav-menu.active { right: 0; }
  .nav-link { font-size: 18px; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body); font-weight: 700;
  font-size: 16px; letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: none;
  border: 0;
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.btn.full { width: 100%; justify-content: center; }
.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: var(--glow-pink);
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--cyan), var(--purple), var(--pink));
  opacity: 0; transition: opacity .35s;
}
.btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 0 50px rgba(255,45,149,.9); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary > * { position: relative; z-index: 1; }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(123, 47, 247, .5);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  border-color: var(--pink);
  background: rgba(255, 45, 149, .1);
  box-shadow: var(--glow-pink);
}

/* ============ HERO ============ */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  position: relative;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 10s ease-in-out infinite;
}
.orb-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,45,149,.45), transparent 70%);
  top: -100px; left: -100px;
}
.orb-2 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(123,47,247,.4), transparent 70%);
  bottom: -100px; right: -100px;
  animation-delay: -3s;
}
.orb-3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(0,229,255,.3), transparent 70%);
  top: 40%; left: 50%; transform: translateX(-50%);
  animation-delay: -6s;
}
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px, -40px) scale(1.1); }
  66% { transform: translate(-30px, 30px) scale(.95); }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1100px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 20px;
  background: rgba(123, 47, 247, .15);
  border: 1px solid rgba(123, 47, 247, .4);
  border-radius: 30px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 2px; color: var(--pink-soft);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--pink);
  box-shadow: var(--glow-pink);
  animation: pulse-dot 1.6s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,45,149,.6); }
  50% { box-shadow: 0 0 0 14px rgba(255,45,149,0); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: .95;
  letter-spacing: -2px;
  margin-bottom: 32px;
}
.title-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: revealUp .9s cubic-bezier(.16,1,.3,1) forwards;
  position: relative;
}
.title-line:nth-child(1) { animation-delay: .2s; }
.title-line:nth-child(2) { animation-delay: .4s; }
.title-line:nth-child(3) { animation-delay: .6s; }

@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: gradientShift 4s ease-in-out infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--gray);
  max-width: 640px;
  margin: 0 auto 44px;
  font-weight: 400;
}

.hero-actions {
  display: flex; gap: 18px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 80px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  max-width: 880px; margin: 0 auto;
  padding: 30px;
  background: rgba(17, 6, 48, .5);
  border: 1px solid rgba(123, 47, 247, .25);
  border-radius: 20px;
  backdrop-filter: blur(20px);
}
.stat h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.stat p { font-size: 13px; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; }

.scroll-indicator {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; cursor: none;
}
.scroll-indicator span {
  width: 22px; height: 38px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 30px;
  position: relative;
}
.scroll-indicator span::before {
  content: ''; position: absolute;
  top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--pink);
  border-radius: 2px;
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 18px); }
}
.scroll-indicator p { font-size: 10px; letter-spacing: 4px; color: var(--gray); }

/* ============ SECTIONS ============ */
.section { padding: 120px 0; position: relative; }
.section-dark { background: rgba(10, 4, 32, .5); }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px; letter-spacing: 4px;
  color: var(--cyan);
  margin-bottom: 16px;
  font-weight: 700;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 18px;
}
.section-sub {
  color: var(--gray); font-size: 1.1rem;
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
}

.visual-frame {
  position: relative;
  border-radius: 24px;
  overflow: visible;
  aspect-ratio: 4 / 5;
  max-width: 460px;
  margin: 0 auto;
}
.visual-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(123, 47, 247, .3);
}
.frame-glow {
  position: absolute; inset: -2px;
  background: var(--gradient);
  border-radius: 26px;
  filter: blur(20px); opacity: .5;
  z-index: -1;
  animation: pulse 4s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  background: rgba(17, 6, 48, .9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(123, 47, 247, .4);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
  animation: floatCard 4s ease-in-out infinite;
}
.floating-card i {
  font-size: 22px;
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.floating-card strong { display: block; font-size: 14px; }
.floating-card small { color: var(--gray); font-size: 12px; }
.card-1 { top: 30px; left: -40px; }
.card-2 { bottom: 40px; right: -40px; animation-delay: -2s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.about-text .section-title { text-align: left; }
.about-text > p {
  color: var(--gray);
  font-size: 1.05rem;
  margin: 18px 0;
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin: 28px 0 36px;
}
.feature {
  display: flex; align-items: center; gap: 10px;
  font-weight: 500;
}
.feature i {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  background: var(--gradient);
  border-radius: 50%;
  font-size: 11px;
  flex-shrink: 0;
}

/* ============ MODALITIES ============ */
.modalities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.modality-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  height: 420px;
  cursor: none;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
  border: 1px solid rgba(123, 47, 247, .25);
}
.modality-card:hover { transform: translateY(-12px); }
.card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .8s;
  filter: brightness(.55);
}
.modality-card:hover .card-bg { transform: scale(1.15); filter: brightness(.7); }
.modality-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(5,1,15,.95) 100%);
  pointer-events: none;
}
.card-content {
  position: absolute; inset: 0;
  z-index: 2;
  padding: 30px;
  display: flex; flex-direction: column;
  justify-content: flex-end;
}
.card-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--gradient);
  border-radius: 14px;
  font-size: 22px;
  margin-bottom: 16px;
  box-shadow: var(--glow-purple);
  transition: transform .4s;
}
.modality-card:hover .card-icon { transform: rotate(-8deg) scale(1.1); }
.card-content h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin-bottom: 10px;
}
.card-content p {
  color: var(--gray);
  font-size: .95rem;
  margin-bottom: 16px;
}
.card-link {
  color: var(--pink-soft);
  font-weight: 700; font-size: 14px;
  letter-spacing: 1px; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap .25s;
}
.modality-card:hover .card-link { gap: 16px; }

/* ============ PLANS ============ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1100px; margin: 0 auto;
}
.plans-grid-2 {
  grid-template-columns: repeat(2, minmax(280px, 460px));
  justify-content: center;
}
@media (max-width: 760px) {
  .plans-grid-2 { grid-template-columns: 1fr; }
}
.plans-note {
  margin-top: 40px;
  text-align: center;
  color: var(--gray);
  font-size: 14px;
  letter-spacing: .5px;
}
.plans-note i { color: var(--pink); margin-right: 6px; }
.plan-features li small { color: var(--gray-dim); font-size: 12px; margin-left: 4px; }
.plan-price small { white-space: nowrap; }

/* ============ CLASSES TABLE ============ */
.classes-wrapper {
  max-width: 1100px; margin: 0 auto;
  background: rgba(17, 6, 48, .6);
  border: 1px solid rgba(123, 47, 247, .3);
  border-radius: 22px;
  padding: 28px;
  backdrop-filter: blur(20px);
  overflow-x: auto;
}
.turno-banner {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 14px;
  text-align: center;
  padding: 12px;
  background: var(--gradient-soft);
  border: 1px solid rgba(0, 229, 255, .35);
  border-radius: 10px;
  margin: 14px 0 12px;
  color: var(--cyan);
}
.turno-banner:first-child { margin-top: 0; }
.classes-table {
  display: grid;
  grid-template-columns: 110px repeat(6, minmax(120px, 1fr));
  gap: 8px;
  min-width: 820px;
}
.ct-head {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  text-align: center;
  padding: 12px 6px;
  background: rgba(123, 47, 247, .35);
  border-radius: 8px;
  color: var(--white);
}
.ct-time {
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 13px;
  background: rgba(0, 229, 255, .12);
  border: 1px solid rgba(0, 229, 255, .3);
  border-radius: 10px;
  padding: 14px 6px;
  letter-spacing: .5px;
  text-align: center;
}
.ct-cell {
  min-height: 78px;
  border-radius: 10px;
  padding: 10px 8px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  font-size: 13px;
  transition: transform .25s, box-shadow .25s;
}
.ct-cell strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.2;
}
.ct-cell small {
  font-size: 10px;
  color: rgba(255,255,255,.85);
  margin-top: 4px;
  letter-spacing: .5px;
}
.ct-cell.solo {
  background: linear-gradient(135deg, #ff2d95, #ff1463);
  color: white;
  box-shadow: 0 4px 14px rgba(255, 45, 149, .25);
  cursor: none;
}
.ct-cell.solo:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px rgba(255, 45, 149, .55);
}
.ct-cell.individual {
  background: linear-gradient(135deg, #2e8bff, #1463ff);
  color: white;
}
.ct-cell.empty {
  background: rgba(255,255,255,.04);
  border: 1px dashed rgba(123, 47, 247, .2);
}
.classes-legend {
  display: flex; flex-wrap: wrap;
  gap: 24px; justify-content: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(123, 47, 247, .25);
  font-size: 14px;
}
.legend-item { display: inline-flex; align-items: center; gap: 10px; }
.legend-item .dot {
  width: 16px; height: 16px;
  border-radius: 50%;
}
.legend-item .dot.solo { background: linear-gradient(135deg, #ff2d95, #ff1463); box-shadow: 0 0 12px rgba(255,45,149,.6); }
.legend-item .dot.individual { background: linear-gradient(135deg, #2e8bff, #1463ff); box-shadow: 0 0 12px rgba(46,139,255,.6); }

@media (max-width: 700px) {
  .classes-wrapper { padding: 18px; }
  .classes-table { grid-template-columns: 90px repeat(6, minmax(110px, 1fr)); }
  .ct-head { font-size: 10px; letter-spacing: 1px; padding: 10px 4px; }
}
.plan-card {
  position: relative;
  padding: 44px 32px;
  background: rgba(17, 6, 48, .6);
  border: 1px solid rgba(123, 47, 247, .3);
  border-radius: 22px;
  backdrop-filter: blur(20px);
  transition: transform .35s, border-color .35s, box-shadow .35s;
  text-align: center;
}
.plan-card:hover {
  transform: translateY(-10px);
  border-color: var(--pink);
  box-shadow: 0 20px 60px rgba(255,45,149,.25);
}
.plan-card.featured {
  background: linear-gradient(180deg, rgba(123,47,247,.35), rgba(255,45,149,.15));
  border-color: var(--pink);
  transform: scale(1.05);
  box-shadow: var(--glow-pink);
}
.plan-card.featured:hover { transform: scale(1.05) translateY(-10px); }
.badge-featured {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 11px; letter-spacing: 2px; font-weight: 700;
  box-shadow: var(--glow-pink);
}
.plan-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 3px;
  margin-bottom: 6px;
}
.plan-desc { color: var(--gray); font-size: 14px; margin-bottom: 22px; }
.plan-price {
  display: flex; align-items: baseline; justify-content: center; gap: 4px;
  margin-bottom: 30px;
  font-family: var(--font-display);
}
.plan-price sup { font-size: 1rem; color: var(--gray); margin-right: 4px; }
.plan-price span {
  font-size: 4rem; font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.plan-price small { font-size: 14px; color: var(--gray); }
.plan-features {
  text-align: left;
  margin-bottom: 30px;
}
.plan-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(123,47,247,.15);
  display: flex; align-items: center; gap: 10px;
  font-size: 15px;
}
.plan-features li i { color: var(--cyan); font-size: 12px; }
.plan-features li.off { color: var(--gray-dim); text-decoration: line-through; }
.plan-features li.off i { color: var(--gray-dim); }

/* ============ SCHEDULE ============ */
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .schedule-grid { grid-template-columns: 1fr; }
}
.schedule-list {
  margin-top: 32px;
  background: rgba(17, 6, 48, .5);
  border: 1px solid rgba(123, 47, 247, .25);
  border-radius: 20px;
  padding: 14px 28px;
  backdrop-filter: blur(20px);
}
.schedule-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(123,47,247,.15);
  font-size: 15px;
}
.schedule-list li:last-child { border-bottom: 0; }
.schedule-list li span { color: var(--gray); font-weight: 500; }
.schedule-list li b { font-weight: 700; letter-spacing: .5px; }
.schedule-list li.today {
  background: rgba(255, 45, 149, .1);
  margin: 0 -16px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,45,149,.4);
}
.schedule-list li.today span { color: var(--pink-soft); font-weight: 700; }
.schedule-list li.closed b { color: #ff5555; }

.map-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(123, 47, 247, .4);
}
.map-frame iframe {
  width: 100%; height: 100%; border: 0;
  filter: invert(.92) hue-rotate(180deg) saturate(1.2);
}

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial {
  padding: 36px 30px;
  background: rgba(17, 6, 48, .6);
  border: 1px solid rgba(123, 47, 247, .25);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  position: relative;
  transition: transform .35s, border-color .35s;
}
.testimonial:hover { transform: translateY(-8px); border-color: var(--pink); }
.testimonial > i {
  font-size: 30px;
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.testimonial p { color: var(--white); font-size: 1.02rem; margin-bottom: 26px; }
.author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 900;
  box-shadow: var(--glow-purple);
}
.author strong { display: block; font-size: 15px; }
.author small { color: var(--gray); font-size: 12px; }

/* ============ CTA ============ */
.cta-section { padding: 80px 0 120px; }
.cta-box {
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, rgba(123,47,247,.25), rgba(255,45,149,.2), rgba(0,229,255,.2));
  border: 1px solid rgba(255,45,149,.4);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(123,47,247,.35);
}
.cta-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}
.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 18px;
  position: relative;
}
.cta-box p {
  color: var(--gray); font-size: 1.15rem;
  margin-bottom: 36px;
  position: relative;
}
.cta-actions {
  display: flex; gap: 18px; justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ============ FOOTER ============ */
footer {
  padding: 80px 0 0;
  background: rgba(5, 1, 15, .8);
  border-top: 1px solid rgba(123, 47, 247, .25);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 50px;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}
.footer-about {
  margin: 16px 0 20px;
  color: var(--gray); font-size: 14px;
  max-width: 320px;
}
footer h4 {
  font-family: var(--font-display);
  font-size: 14px; letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--cyan);
}
footer ul li {
  padding: 8px 0;
  color: var(--gray);
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px;
}
footer ul li i { color: var(--pink); margin-top: 4px; }
footer ul li a { transition: color .25s; }
footer ul li a:hover { color: var(--pink-soft); }

.social-links {
  display: flex; gap: 12px;
}
.social-links a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid rgba(123, 47, 247, .4);
  border-radius: 12px;
  transition: all .3s;
}
.social-links a:hover {
  background: var(--gradient);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--glow-pink);
}

.footer-bottom {
  border-top: 1px solid rgba(123, 47, 247, .2);
  padding: 24px 0;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
  max-width: 1240px; margin: 0 auto;
  padding-left: 24px; padding-right: 24px;
  font-size: 13px;
  color: var(--gray);
}
.footer-bottom i { color: var(--pink); }

/* ============ FLOATING WHATSAPP ============ */
.float-whatsapp {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  color: white; font-size: 28px;
  box-shadow: 0 8px 24px rgba(37,211,102,.5);
  z-index: 999;
  transition: transform .3s;
}
.float-whatsapp:hover { transform: scale(1.1) rotate(8deg); }
.float-pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 3px solid #25D366;
  animation: pulseRing 2s infinite;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ============ BACK TO TOP ============ */
.back-top {
  position: fixed;
  bottom: 24px; left: 24px;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--gradient);
  border: 0; color: white;
  cursor: none;
  opacity: 0; visibility: hidden;
  transform: translateY(20px);
  transition: all .3s;
  z-index: 999;
  box-shadow: var(--glow-purple);
}
.back-top.show {
  opacity: 1; visibility: visible;
  transform: translateY(0);
}
.back-top:hover { transform: translateY(-4px); }

/* ============ RESPONSIVE TUNING ============ */
@media (max-width: 600px) {
  .section { padding: 80px 0; }
  .cta-box { padding: 56px 24px; }
  .floating-card { display: none; }
  .nav-logo .logo-text { display: none; }
}
