/* =============================================================================
   ACADEMIA BARBERÍA PROFESIONAL v2 — Premium CSS
   Paleta: Negro #0B0B0B · Dorado #C9A34A · Blanco #FFFFFF
   Mobile-first · Bootstrap 5 override
   ============================================================================= */

/* ── VARIABLES ─────────────────────────────────────────────────────────────── */
:root {
  --black:       #0B0B0B;
  --black-soft:  #111111;
  --black-card:  #161616;
  --black-card2: #1c1c1c;
  --gold:        #C9A34A;
  --gold-light:  #DDB96A;
  --gold-dark:   #A8832A;
  --white:       #FFFFFF;
  --light:       #F8F7F4;
  --muted-light: rgba(255,255,255,.55);
  --muted-dark:  #6B6866;
  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans:  'Inter', system-ui, sans-serif;
  --ease:     cubic-bezier(.4,0,.2,1);
  --trans:    .28s var(--ease);
  --gold-glow:   0 0 40px rgba(201,163,74,.18);
  --card-shadow: 0 8px 40px rgba(0,0,0,.13);
  --dark-shadow: 0 12px 50px rgba(0,0,0,.55);
  --r:  12px;
  --rl: 20px;
}

/* ── RESET ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-sans);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
@media (max-width:991px) { body { padding-bottom: 68px; } }
img { display: block; max-width: 100%; }
a   { text-decoration: none; }

/* ── UTILIDADES ─────────────────────────────────────────────────────────────── */
.text-gold        { color: var(--gold) !important; }
.text-muted-light { color: var(--muted-light) !important; }
.bg-black         { background-color: var(--black) !important; }

.section-tag {
  display: inline-block;
  font-size: .7rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
  padding: .3rem 1rem;
  border: 1px solid rgba(201,163,74,.3);
  border-radius: 50px;
  background: rgba(201,163,74,.05);
  margin-bottom: 1rem;
}
.section-tag.dark {
  color: var(--gold-dark);
  border-color: rgba(168,131,42,.4);
  background: rgba(168,131,42,.07);
}
.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.02em;
  margin-bottom: 1.1rem;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--muted-dark);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}
.section-light .section-title { color: var(--black); }
.section-light .section-desc  { color: var(--muted-dark); }
.section-light .text-gold     { color: var(--gold-dark) !important; }

/* ── BUTTONS ────────────────────────────────────────────────────────────────── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  border: none;
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: .85rem 2rem;
  border-radius: 4px;
  transition: var(--trans);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
}
.btn-gold:hover,
.btn-gold:focus {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--gold-glow);
}
.btn-gold:active { transform: translateY(0); }

.btn-gold-solid {
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
  font-weight: 700;
  font-size: .83rem;
  letter-spacing: .8px;
  padding: .75rem 1.25rem;
  border-radius: 4px;
  transition: var(--trans);
  cursor: pointer;
  font-family: var(--ff-sans);
  width: 100%;
  display: block;
  text-align: center;
}
.btn-gold-solid:hover { background: transparent; color: var(--gold); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold) !important;
  border: 1px solid var(--gold) !important;
  font-weight: 600;
  font-size: .83rem;
  letter-spacing: .8px;
  padding: .75rem 1.5rem;
  border-radius: 4px;
  transition: var(--trans);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  cursor: pointer;
  font-family: var(--ff-sans);
}
.btn-outline-gold:hover { background: var(--gold) !important; color: var(--black) !important; }

.btn-ghost-gold {
  background: transparent;
  color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 500;
  font-size: .83rem;
  padding: .7rem 1.25rem;
  border-radius: 4px;
  transition: var(--trans);
  display: block;
  text-align: center;
  width: 100%;
  font-family: var(--ff-sans);
  cursor: pointer;
}
.btn-ghost-gold:hover { border-color: rgba(201,163,74,.4); color: var(--gold); }

.btn-ghost-dark {
  background: transparent;
  color: var(--muted-dark);
  border: 1px solid rgba(0,0,0,.12);
  font-weight: 500;
  font-size: .83rem;
  padding: .7rem 1.25rem;
  border-radius: 4px;
  transition: var(--trans);
  display: block;
  text-align: center;
  width: 100%;
  font-family: var(--ff-sans);
  cursor: pointer;
}
.btn-ghost-dark:hover { border-color: var(--gold-dark); color: var(--gold-dark); }

/* ── NAVBAR ─────────────────────────────────────────────────────────────────── */
#navbar {
  background: transparent;
  padding: 1.2rem 0;
  transition: background var(--trans), padding var(--trans), box-shadow var(--trans);
  z-index: 1050;
}
#navbar.scrolled {
  background: rgba(11,11,11,.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: .65rem 0;
  box-shadow: 0 1px 0 rgba(201,163,74,.12);
}
.navbar-brand img { transition: opacity var(--trans); height: 44px; }
.nav-link {
  color: rgba(255,255,255,.75) !important;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .4px;
  padding: .5rem .9rem !important;
  transition: color var(--trans);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: .9rem; right: .9rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--trans);
}
.nav-link:hover { color: var(--gold) !important; }
.nav-link:hover::after { transform: scaleX(1); }
.navbar-toggler { border-color: rgba(201,163,74,.4) !important; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201%2C163%2C74%2C1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ── HERO — 2 columnas ──────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 65% 20%, rgba(201,163,74,.07) 0%, transparent 70%),
    radial-gradient(ellipse 45% 45% at 10% 85%, rgba(201,163,74,.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; padding-top: 100px; padding-bottom: 70px; }

.hero-logo-inline {
  height: 52px;
  margin-bottom: 1.75rem;
  opacity: .88;
  display: block;
  animation: fadeUp .7s var(--ease) .1s both;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  padding: .32rem .95rem;
  border: 1px solid rgba(201,163,74,.35);
  border-radius: 50px;
  background: rgba(201,163,74,.06);
  margin-bottom: 1.5rem;
  animation: fadeUp .7s var(--ease) .15s both;
}
.hero-eyebrow::before { content: '\25C6'; font-size: .45rem; }

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.75rem, 4.8vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 1.25rem;
  animation: fadeUp .8s var(--ease) .28s both;
}
.hero-subtitle {
  font-size: clamp(.9rem, 1.8vw, 1.08rem);
  color: rgba(255,255,255,.65);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 1.75rem;
  animation: fadeUp .8s var(--ease) .42s both;
}
.hero-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  margin-bottom: 2.25rem;
  animation: fadeUp .8s var(--ease) .5s both;
}
.hero-kpi { display: flex; flex-direction: column; }
.hero-kpi-num {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-kpi-lbl {
  font-size: .7rem;
  color: rgba(255,255,255,.4);
  margin-top: .15rem;
  max-width: 100px;
  line-height: 1.3;
}
.hero-kpi-sep {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(to bottom, transparent, rgba(201,163,74,.3), transparent);
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 2.25rem;
  animation: fadeUp .8s var(--ease) .6s both;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.3rem;
  animation: fadeUp .8s var(--ease) .72s both;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: rgba(255,255,255,.5);
}
.trust-pill-check { color: var(--gold); font-size: .82rem; font-weight: 700; flex-shrink: 0; }

.hero-video-col {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1.2s var(--ease) .5s both;
}
.hero-video-wrap {
  /* Portrait 9:16 — treat like a phone screen */
  width: 100%;
  max-width: 300px;
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.70), 0 0 0 1px rgba(201,163,74,.28);
  background: #000;
  position: relative;
}
.hero-video-wrap::before {
  /* Decorative gold glow behind the phone */
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 36px;
  background: radial-gradient(ellipse at center, rgba(201,163,74,.18) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}
.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  border: 1.5px solid rgba(201,163,74,.35);
  pointer-events: none;
  z-index: 2;
}
.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  z-index: 3;
  animation: fadeIn 1s var(--ease) 1.2s both;
}
.scroll-bar {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero-scroll span { font-size: .58rem; letter-spacing: 3px; color: rgba(255,255,255,.25); }

/* ── PROMO BANNER ───────────────────────────────────────────────────────────── */
.promo-banner {
  background: linear-gradient(135deg, #C9A34A 0%, #A8832A 100%);
  padding: .85rem 0;
  position: relative;
  z-index: 10;
}
.promo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  flex-wrap: wrap;
}
.promo-label {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(0,0,0,.55);
  background: rgba(0,0,0,.1);
  padding: .2rem .7rem;
  border-radius: 50px;
  flex-shrink: 0;
}
.promo-items {
  display: flex;
  align-items: center;
  gap: .6rem 1.4rem;
  flex-wrap: wrap;
  justify-content: center;
}
.promo-item {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .875rem;
  font-weight: 600;
  color: rgba(0,0,0,.82);
}
.promo-sep { color: rgba(0,0,0,.2); }

/* ── WHY DAVID SOLER ────────────────────────────────────────────────────────── */
.why-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--rl);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,163,74,.38);
  box-shadow: 0 12px 36px rgba(0,0,0,.1);
}
.why-icon { font-size: 2.4rem; display: block; margin-bottom: .9rem; }
.why-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: .45rem;
  line-height: 1.3;
}
.why-card p { font-size: .84rem; color: var(--muted-dark); line-height: 1.6; margin: 0; }

/* ── SECTION WRAPPERS ───────────────────────────────────────────────────────── */
.section-dark  { background: var(--black);      padding: 6rem 0; }
.section-dark2 { background: var(--black-soft); padding: 6rem 0; }
.section-light { background: var(--light);      padding: 6rem 0; color: var(--black); }

/* ── AUTHORITY ──────────────────────────────────────────────────────────────── */
.authority-body {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 650px;
  margin: 0 auto 1.5rem;
  line-height: 1.85;
}
.authority-body strong { color: var(--white); }
.authority-quote {
  max-width: 620px;
  margin: 1.5rem auto 0;
  border-left: 3px solid var(--gold);
  padding: 1.1rem 1.5rem;
  background: rgba(201,163,74,.05);
  border-radius: 0 8px 8px 0;
}
.authority-quote p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--white);
  margin: 0;
  line-height: 1.65;
}
.gold-divider {
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  margin: 1.75rem auto;
  border-radius: 2px;
}

/* ── STATISTICS ─────────────────────────────────────────────────────────────── */
.stats-section {
  background: var(--black-soft);
  padding: 5rem 0;
  border-top: 1px solid rgba(201,163,74,.1);
  border-bottom: 1px solid rgba(201,163,74,.1);
}
.stat-card { padding: 1.5rem 1rem; text-align: center; }
.stat-number {
  font-family: var(--ff-serif);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .3px;
  line-height: 1.45;
  max-width: 130px;
  margin: 0 auto;
}

/* ── COURSE CARDS ───────────────────────────────────────────────────────────── */
.course-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--rl);
  padding: 2.25rem 2rem;
  height: 100%;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  position: relative;
  overflow: hidden;
}
.course-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transition: transform var(--trans);
}
.course-card:hover { transform: translateY(-6px); box-shadow: 0 20px 55px rgba(0,0,0,.13); }
.course-card:hover::after { transform: scaleX(1); }
.course-card.course-featured {
  background: var(--black);
  border-color: rgba(201,163,74,.3);
  color: var(--white);
}
.course-card.course-featured::after { transform: scaleX(1); }
.course-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .22rem .8rem;
  border-radius: 50px;
  margin-bottom: 1.4rem;
}
.course-header { padding-bottom: 1.2rem; border-bottom: 1px solid rgba(201,163,74,.18); margin-bottom: 1.2rem; }
.course-title {
  font-family: var(--ff-serif);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.2;
  color: inherit;
  margin-bottom: .2rem;
}
.course-subtitle {
  font-size: .76rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0;
}
.course-details { margin-bottom: 1.2rem; }
.detail-row {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .87rem;
  margin-bottom: .6rem;
  color: inherit;
}
.course-featured .detail-row { color: rgba(255,255,255,.8); }

/* ── COURSE CARD v2 — Turnos / Includes / Pricing / Bonus / Matrícula ──────── */
.course-turnos {
  background: rgba(201,163,74,.07);
  border: 1px solid rgba(201,163,74,.2);
  border-radius: var(--r);
  padding: .9rem 1.1rem;
  margin-bottom: 1rem;
}
.course-turnos-light { background: rgba(0,0,0,.04); border-color: rgba(0,0,0,.1); }
.course-turnos-label { font-size: .62rem; font-weight: 700; letter-spacing: .08em; color: rgba(255,255,255,.4); margin-bottom: .55rem; }
.course-turnos-light .course-turnos-label { color: rgba(0,0,0,.4); }
.course-turnos-grid { display: flex; flex-wrap: wrap; gap: .35rem; }
.ct-item { display: flex; align-items: center; gap: .4rem; font-size: .82rem; }
.ct-n { color: rgba(255,255,255,.38); font-size: .68rem; font-weight: 600; letter-spacing: .04em; min-width: 42px; }
.ct-light .ct-n { color: rgba(0,0,0,.35); }
.ct-h { color: var(--gold); font-weight: 700; font-size: .88rem; }
.ct-light .ct-h { color: var(--gold-dark); }

.course-includes { margin-bottom: 1rem; }
.ci-label { font-size: .6rem; font-weight: 700; letter-spacing: .1em; color: rgba(255,255,255,.32); text-transform: uppercase; margin-bottom: .45rem; }
.ci-items { display: flex; flex-wrap: wrap; gap: .4rem; }
.ci-items span { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 6px; font-size: .74rem; color: rgba(255,255,255,.65); padding: .2rem .55rem; }
.ci-items-light span { background: rgba(0,0,0,.04); border-color: rgba(0,0,0,.1); color: rgba(0,0,0,.55); }

.course-pricing-v2 { margin-bottom: 1rem; }
.cpv-row-main { display: flex; justify-content: space-between; align-items: center; margin-bottom: .35rem; font-size: .85rem; color: rgba(255,255,255,.55); }
.cpv-row-main strong { font-family: var(--ff-serif); font-size: 1.5rem; color: var(--gold); }
.cpv-row-fin { font-size: .8rem; color: rgba(255,255,255,.5); margin-bottom: .2rem; }
.cpv-row-fin strong { color: rgba(255,255,255,.8); }
.cpv-row-single { font-size: .74rem; color: rgba(255,255,255,.28); }

.course-bonus {
  display: flex; align-items: flex-start; gap: .75rem;
  background: rgba(201,163,74,.08);
  border: 1px solid rgba(201,163,74,.3);
  border-radius: var(--r);
  padding: .85rem 1rem;
  margin-bottom: 1rem;
}
.course-bonus-light { background: rgba(201,163,74,.06); border-color: rgba(201,163,74,.25); }
.cb-icon { font-size: 1.4rem; flex-shrink: 0; line-height: 1.2; }
.cb-tag { font-size: .58rem; font-weight: 700; letter-spacing: .1em; color: rgba(201,163,74,.7); text-transform: uppercase; margin-bottom: .1rem; }
.cb-title { font-family: var(--ff-serif); font-size: 1rem; font-weight: 700; color: var(--gold); letter-spacing: .02em; margin-bottom: .15rem; }
.cb-sub { font-size: .72rem; color: rgba(255,255,255,.38); }
.cb-sub strong { color: rgba(255,255,255,.6); }

.course-matricula-block {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r);
  padding: .8rem 1rem;
  margin-bottom: 1.1rem;
}
.course-matricula-block-light { background: rgba(0,0,0,.04); border-color: rgba(0,0,0,.08); }
.cmb-left { display: flex; align-items: center; gap: .55rem; }
.cmb-original { font-size: 1rem; color: rgba(255,255,255,.3); text-decoration: line-through; }
.cmb-badge { background: var(--gold); color: #000; font-size: .65rem; font-weight: 800; letter-spacing: .06em; padding: .2rem .5rem; border-radius: 5px; }
.cmb-right { display: flex; flex-direction: column; align-items: flex-end; gap: .05rem; }
.cmb-label { font-size: .58rem; font-weight: 700; letter-spacing: .1em; color: rgba(255,255,255,.35); text-transform: uppercase; }
.cmb-price { font-family: var(--ff-serif); font-size: 1.8rem; font-weight: 800; color: var(--gold); line-height: 1; }

/* ── PAYMENT MODAL v2 ───────────────────────────────────────────────────────── */
.pm-section { padding-bottom: 1.2rem; margin-bottom: 1.2rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.pm-section:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.pm-section-label { display: flex; align-items: center; gap: .5rem; font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.38); margin-bottom: .85rem; }
.pm-num { width: 20px; height: 20px; border-radius: 50%; background: var(--gold); color: #000; font-size: .68rem; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pm-turno-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem; }
.pm-turno-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: .5rem; }
.pm-turno-btn {
  background: rgba(255,255,255,.04); border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: .7rem .6rem;
  display: flex; flex-direction: column; align-items: center; gap: .15rem;
  cursor: pointer; transition: border-color .15s, background .15s;
}
.pm-turno-btn:hover { border-color: rgba(201,163,74,.45); background: rgba(201,163,74,.07); }
.pm-turno-btn.selected { border-color: var(--gold); background: rgba(201,163,74,.12); }
.pm-turno-n { font-size: .6rem; font-weight: 700; letter-spacing: .05em; color: rgba(255,255,255,.35); text-transform: uppercase; }
.pm-turno-h { font-family: var(--ff-serif); font-size: .88rem; font-weight: 700; color: var(--white); }
.pm-turno-btn.selected .pm-turno-h { color: var(--gold); }
.pm-turno-btn.selected .pm-turno-n { color: rgba(201,163,74,.7); }
.pm-turno-note { font-size: .73rem; color: rgba(201,163,74,.65); margin: .5rem 0 0; }
.pm-pay-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.pm-pay-opt {
  background: rgba(255,255,255,.04); border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: .85rem .9rem;
  display: flex; flex-direction: column; gap: .18rem;
  cursor: pointer; text-align: left; transition: border-color .15s, background .15s;
}
.pm-pay-opt:hover { border-color: rgba(201,163,74,.4); }
.pm-pay-opt.active { border-color: var(--gold); background: rgba(201,163,74,.09); }
.pm-pay-icon { font-size: 1.1rem; }
.pm-pay-title { font-weight: 700; font-size: .9rem; color: var(--white); }
.pm-pay-sub { font-size: .72rem; color: rgba(255,255,255,.38); }
.pm-pay-opt.active .pm-pay-sub { color: rgba(201,163,74,.6); }
.pm-info-box { margin-top: .6rem; font-size: .8rem; color: rgba(255,255,255,.5); background: rgba(255,255,255,.04); border-radius: 8px; padding: .6rem .85rem; border-left: 3px solid var(--gold); }
.pm-bonus-box { margin-top: .6rem; font-size: .8rem; color: rgba(255,255,255,.65); background: rgba(201,163,74,.08); border-radius: 8px; padding: .6rem .85rem; border: 1px solid rgba(201,163,74,.25); }
.pm-bonus-box strong { color: var(--gold); }
.pm-logos { display: flex; align-items: center; justify-content: center; gap: .9rem; margin-top: .9rem; flex-wrap: wrap; }
.pm-logo-visa, .pm-logo-mc, .pm-logo-biz {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px; padding: .25rem .65rem; font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.55); letter-spacing: .04em;
}
.pm-secure { font-size: .68rem; color: rgba(255,255,255,.25); }
.pm-error { font-size: .77rem; color: #e07070; margin-top: .4rem; }
.text-gold-light { color: var(--gold) !important; }

@media (max-width: 575px) {
  .pm-turno-grid-3 { grid-template-columns: 1fr 1fr; }
  .course-matricula-block { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .cmb-right { align-items: flex-start; }
}

/* kept for legacy compatibility — old .course-pricing fields still referenced by non-featured card */
.course-pricing {
  background: rgba(201,163,74,.06);
  border: 1px solid rgba(201,163,74,.2);
  border-radius: var(--r);
  padding: 1.25rem 1.4rem;
  margin-bottom: 1.5rem;
}
.price-monthly { display: flex; align-items: baseline; gap: .25rem; margin-bottom: .65rem; }
.price-amount {
  font-family: var(--ff-serif);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.price-period { color: rgba(201,163,74,.65); font-size: .92rem; }
.price-full, .price-matricula {
  display: flex;
  justify-content: space-between;
  font-size: .84rem;
  color: inherit;
  opacity: .82;
  padding-top: .38rem;
}
.price-total, .matricula-amount { font-weight: 700; color: var(--gold); }

.course-actions { display: flex; flex-direction: column; gap: .6rem; }
.course-action-divider {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
  margin: .1rem 0;
}
.course-action-divider-light { color: rgba(0,0,0,.2); }
.course-action-divider::before,
.course-action-divider::after { content: ''; flex: 1; height: 1px; background: currentColor; }

/* ── COMPARISON TABLE ───────────────────────────────────────────────────────── */
.comparison-wrap { overflow-x: auto; border-radius: var(--r); box-shadow: var(--dark-shadow); }
.cmp-table { width: 100%; border-collapse: collapse; min-width: 540px; }
.cmp-table thead th {
  background: var(--black-card2);
  color: var(--white);
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 600;
  padding: 1.3rem 1.5rem;
  text-align: center;
  border-bottom: 2px solid rgba(201,163,74,.25);
}
.cmp-table thead th:first-child {
  text-align: left;
  font-family: var(--ff-sans);
  font-size: .68rem;
  letter-spacing: 2px;
  font-weight: 500;
  color: rgba(255,255,255,.32);
  text-transform: uppercase;
  width: 30%;
}
.cmp-table thead th.cmp-featured {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
}
.table-badge {
  display: block;
  font-family: var(--ff-sans);
  font-size: .56rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: .3rem;
  color: rgba(0,0,0,.5);
  font-weight: 700;
}
.cmp-table tbody td {
  background: var(--black-card);
  padding: .88rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: .875rem;
  color: rgba(255,255,255,.68);
  transition: background var(--trans);
}
.cmp-table tbody td:first-child { text-align: left; color: rgba(255,255,255,.42); font-size: .82rem; }
.cmp-table tbody td.cmp-featured { background: rgba(201,163,74,.05); color: var(--gold); font-weight: 600; }
.cmp-table tbody tr:hover td { background: rgba(201,163,74,.04); }

/* ── ACCORDION TEMARIO ──────────────────────────────────────────────────────── */
.premium-accordion .accordion-item {
  background: var(--white) !important;
  border: 1px solid rgba(0,0,0,.07) !important;
  border-radius: var(--r) !important;
  margin-bottom: .6rem !important;
  overflow: hidden;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.premium-accordion .accordion-item:hover {
  border-color: rgba(201,163,74,.35) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
}
.premium-accordion .accordion-button {
  background: var(--white) !important;
  color: var(--black) !important;
  font-weight: 600 !important;
  font-size: .92rem !important;
  padding: 1.15rem 1.5rem !important;
  gap: .75rem;
  box-shadow: none !important;
  border: none !important;
}
.premium-accordion .accordion-button:not(.collapsed) {
  color: var(--gold-dark) !important;
  border-bottom: 1px solid rgba(201,163,74,.18) !important;
}
.premium-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C9A34A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}
.acc-icon  { font-size: 1.1rem; flex-shrink: 0; }
.acc-count {
  margin-left: auto; margin-right: .7rem;
  font-size: .67rem; font-weight: 600;
  color: var(--gold-dark);
  background: rgba(201,163,74,.1);
  padding: .18rem .6rem;
  border-radius: 50px;
  flex-shrink: 0;
}
.premium-accordion .accordion-body { background: var(--white) !important; padding: 1.4rem !important; }
.learn-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: .55rem; }
.learn-item {
  font-size: .83rem;
  color: var(--black);
  padding: .48rem .85rem;
  background: rgba(201,163,74,.04);
  border-left: 2px solid var(--gold);
  border-radius: 0 6px 6px 0;
  line-height: 1.4;
}

/* ── TRANSFORMATION ─────────────────────────────────────────────────────────── */
.trans-card { border-radius: var(--rl); padding: 2.25rem; height: 100%; }
.trans-before { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); }
.trans-after  { background: rgba(201,163,74,.05);  border: 1px solid rgba(201,163,74,.28); }
.trans-header {
  display: flex; align-items: center; gap: .9rem;
  margin-bottom: 1.4rem; padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.trans-icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.05rem; flex-shrink: 0;
}
.before-icon { background: rgba(255,255,255,.05); color: rgba(255,255,255,.3);  border: 1px solid rgba(255,255,255,.1); }
.after-icon  { background: rgba(201,163,74,.12);  color: var(--gold); border: 1px solid rgba(201,163,74,.3); }
.trans-header h3 { font-family: var(--ff-serif); font-size: 1.35rem; letter-spacing: 2px; margin: 0; }
.trans-before .trans-header h3 { color: rgba(255,255,255,.28); }
.trans-after  .trans-header h3 { color: var(--gold); }
.trans-list { list-style: none; padding: 0; margin: 0; }
.trans-list li { display: flex; align-items: flex-start; gap: .7rem; margin-bottom: .9rem; font-size: .92rem; line-height: 1.5; }
.trans-before .trans-list li { color: rgba(255,255,255,.4); }
.trans-before .trans-list li::before { content: '\2014'; color: rgba(255,255,255,.18); flex-shrink: 0; margin-top: .1rem; }
.trans-after  .trans-list li { color: rgba(255,255,255,.88); }
.trans-after  .trans-list li::before { content: '\2713'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: .1rem; }

/* ── CAREER CARDS ───────────────────────────────────────────────────────────── */
.career-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--r);
  padding: 1.65rem 1rem 1.4rem;
  text-align: center;
  height: 100%;
  transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
}
.career-card:hover { transform: translateY(-5px); border-color: rgba(201,163,74,.4); box-shadow: 0 8px 28px rgba(0,0,0,.1); }
.career-icon { font-size: 2.1rem; margin-bottom: .85rem; display: block; }
.career-card h4 { font-size: .82rem; font-weight: 600; color: var(--black); line-height: 1.45; margin: 0; }

/* ── BOOKING WIZARD ─────────────────────────────────────────────────────────── */
.booking-section { background: var(--black-soft); }
.wizard-card {
  background: var(--black-card);
  border: 1px solid rgba(201,163,74,.2);
  border-radius: 24px;
  overflow: hidden;
}
.wizard-header { background: var(--black); padding: 1.75rem 2.5rem; border-bottom: 1px solid rgba(201,163,74,.12); }
.wizard-header h2 { font-family: var(--ff-serif); font-size: 1.6rem; color: var(--white); margin-bottom: .25rem; }
.wizard-header p  { font-size: .88rem; color: rgba(255,255,255,.42); margin: 0; }

.wizard-progress {
  display: flex; align-items: center;
  padding: 1.4rem 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
  overflow-x: auto; gap: 0;
}
.wz-dot {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.25);
  font-size: .78rem; font-weight: 700; font-family: var(--ff-sans);
  flex-shrink: 0; transition: var(--trans);
}
.wz-dot.active { border-color: var(--gold); color: var(--gold); background: rgba(201,163,74,.1); }
.wz-dot.done   { border-color: var(--gold); background: var(--gold); color: var(--black); }
.wz-dot.done::after { content: '\2713'; font-size: .85rem; }
.wz-dot.done > span { display: none; }
.wz-line { flex: 1; height: 1px; background: rgba(255,255,255,.07); transition: background var(--trans); min-width: 16px; }
.wz-line.done { background: rgba(201,163,74,.32); }

.wizard-body { padding: 2.25rem 2.5rem; }
.wizard-panel { display: none; animation: fadeUp .32s ease both; }
.wizard-panel.active { display: block; }

.wizard-step-title    { font-family: var(--ff-serif); font-size: 1.3rem; color: var(--white); margin-bottom: .35rem; }
.wizard-step-subtitle { font-size: .875rem; color: rgba(255,255,255,.42); margin-bottom: 1.6rem; }
.wizard-back {
  background: none; border: none;
  color: rgba(255,255,255,.38); font-size: .8rem;
  padding: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: .35rem;
  margin-bottom: 1.2rem; transition: color var(--trans);
  font-family: var(--ff-sans);
}
.wizard-back:hover { color: rgba(255,255,255,.75); }

/* Paso 1 — Tipo */
.tipo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.tipo-btn {
  display: flex; flex-direction: column; align-items: flex-start; gap: .45rem;
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 1.6rem 1.4rem;
  cursor: pointer; transition: var(--trans);
  text-align: left; font-family: var(--ff-sans);
}
.tipo-btn:hover    { border-color: rgba(201,163,74,.55); background: rgba(201,163,74,.06); }
.tipo-btn.selected { border-color: var(--gold); background: rgba(201,163,74,.1); }
.tipo-btn-icon  { font-size: 1.75rem; line-height: 1; }
.tipo-btn-title { font-size: .97rem; font-weight: 700; color: var(--white); }
.tipo-btn-desc  { font-size: .78rem; color: rgba(255,255,255,.42); line-height: 1.45; }

/* Paso 2 — Curso */
.curso-grid { display: flex; flex-direction: column; gap: .6rem; }
.curso-btn {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: 1.05rem 1.4rem;
  cursor: pointer; transition: var(--trans);
  font-family: var(--ff-sans); gap: 1rem;
}
.curso-btn:hover    { border-color: rgba(201,163,74,.55); background: rgba(201,163,74,.06); }
.curso-btn.selected { border-color: var(--gold); background: rgba(201,163,74,.1); }
.curso-btn-info  { flex: 1; }
.curso-btn-title { font-size: .92rem; font-weight: 700; color: var(--white); display: block; margin-bottom: .2rem; }
.curso-btn-sub   { font-size: .77rem; color: rgba(255,255,255,.38); }
.curso-btn-arrow { font-size: 1rem; color: rgba(201,163,74,.5); flex-shrink: 0; }

/* Paso 3 — Calendario */
.cal-header { display: flex; align-items: center; margin-bottom: .9rem; }
.cal-month  { font-size: .7rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.38); }
.cal-days   { display: grid; grid-template-columns: repeat(7, 1fr); gap: .45rem; }
.cal-day {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .15rem; background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: .8rem .3rem;
  cursor: pointer; transition: var(--trans); font-family: var(--ff-sans);
}
.cal-day:hover    { border-color: rgba(201,163,74,.55); background: rgba(201,163,74,.06); }
.cal-day.active   { border-color: var(--gold); background: rgba(201,163,74,.12); }
.cal-day-name { font-size: .58rem; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; color: rgba(255,255,255,.38); }
.cal-day.active .cal-day-name { color: var(--gold); }
.cal-day-num  { font-family: var(--ff-serif); font-size: 1.25rem; font-weight: 700; color: var(--white); line-height: 1; }
.cal-day.active .cal-day-num  { color: var(--gold); }
.cal-day-mon  { font-size: .56rem; color: rgba(255,255,255,.3); text-transform: uppercase; }

/* Paso 4 — Horas */
.time-loading {
  display: flex; align-items: center; justify-content: center;
  gap: .7rem; padding: 2.5rem 1rem;
  color: rgba(255,255,255,.38); font-size: .88rem;
}
.time-spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(201,163,74,.2); border-top-color: var(--gold);
  animation: spin .8s linear infinite; flex-shrink: 0;
}
.time-empty { text-align: center; padding: 2rem 1rem; color: rgba(255,255,255,.4); font-size: .9rem; line-height: 1.6; }
.time-section-label {
  font-size: .67rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.28); margin-bottom: .6rem; margin-top: 1.1rem;
}
.time-section-label:first-child { margin-top: 0; }
.time-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(68px, 1fr)); gap: .4rem; margin-bottom: .35rem; }
.time-btn {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; padding: .58rem .35rem;
  text-align: center; font-size: .84rem; font-weight: 600;
  color: rgba(255,255,255,.68); cursor: pointer; transition: var(--trans);
  font-family: var(--ff-sans);
}
.time-btn:hover  { border-color: rgba(201,163,74,.55); color: var(--gold); background: rgba(201,163,74,.08); }
.time-btn.active { background: var(--gold); border-color: var(--gold); color: var(--black); font-weight: 700; }

/* Paso 5 — Datos */
.booking-summary {
  background: rgba(201,163,74,.06);
  border: 1px solid rgba(201,163,74,.18);
  border-radius: 10px; padding: .9rem 1.25rem;
  margin-bottom: 1.4rem;
  display: flex; flex-wrap: wrap; gap: .5rem 1.8rem;
}
.booking-summary-item { font-size: .82rem; color: rgba(255,255,255,.62); }
.booking-summary-item strong {
  color: var(--gold); display: block;
  font-size: .65rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: .1rem;
}

/* Paso 6 — Confirmación */
.wizard-success { text-align: center; padding: .5rem 0 1rem; }
.wizard-success-icon {
  width: 86px; height: 86px;
  background: rgba(201,163,74,.08); border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem; color: var(--gold);
  margin: 0 auto 1.6rem;
  animation: scaleIn .5s var(--ease) both;
}
.wizard-success h3 { font-family: var(--ff-serif); font-size: 1.9rem; color: var(--white); margin-bottom: .6rem; }
.wizard-success p  { color: rgba(255,255,255,.5); max-width: 380px; margin: 0 auto 1.5rem; font-size: .93rem; }
.wizard-success-detail {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; padding: 1rem 1.5rem;
  display: inline-flex; flex-direction: column; gap: .3rem;
  text-align: left; margin-bottom: 2rem; min-width: 240px;
}
.wizard-success-detail span { font-size: .87rem; color: rgba(255,255,255,.52); }
.wizard-success-detail span strong { color: var(--gold); }

/* ── CONTACT SECTION ────────────────────────────────────────────────────────── */
.contact-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--rl);
  padding: 2.5rem;
  box-shadow: var(--card-shadow);
}
.cinfo-item { display: flex; gap: .9rem; align-items: flex-start; margin-bottom: 1.6rem; }
.cinfo-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(201,163,74,.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
}
.cinfo-item strong { display: block; color: var(--black); font-weight: 700; margin-bottom: .18rem; font-size: .93rem; }
.cinfo-item p      { font-size: .82rem; color: var(--muted-dark); margin: 0; line-height: 1.5; }

/* ── FORM ELEMENTS ──────────────────────────────────────────────────────────── */
.fg { display: flex; flex-direction: column; gap: .3rem; }
.fg label { font-size: .7rem; font-weight: 600; letter-spacing: .7px; text-transform: uppercase; color: rgba(255,255,255,.48); }
.section-light .fg label { color: rgba(0,0,0,.42); }

.input-field {
  width: 100%; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1); border-radius: 6px;
  padding: .78rem 1rem; color: var(--white); font-size: .9rem;
  transition: border-color var(--trans), background var(--trans), box-shadow var(--trans);
  font-family: var(--ff-sans);
}
.input-field::placeholder { color: rgba(255,255,255,.26); }
.input-field option        { background: var(--black); color: var(--white); }
.input-field:focus { outline: none; border-color: var(--gold); background: rgba(201,163,74,.05); box-shadow: 0 0 0 3px rgba(201,163,74,.12); }
.input-field.input-light { background: var(--white); border-color: rgba(0,0,0,.1); color: var(--black); }
.input-field.input-light::placeholder { color: rgba(0,0,0,.3); }
.input-field.input-light:focus { border-color: var(--gold-dark); box-shadow: 0 0 0 3px rgba(168,131,42,.13); background: var(--white); }

.input-field-dark {
  width: 100%; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12); border-radius: 6px;
  padding: .78rem 1rem; color: var(--white); font-size: .9rem;
  font-family: var(--ff-sans); transition: var(--trans);
}
.input-field-dark::placeholder { color: rgba(255,255,255,.26); }
.input-field-dark:focus { outline: none; border-color: var(--gold); background: rgba(201,163,74,.06); box-shadow: 0 0 0 3px rgba(201,163,74,.1); }

.privacy-note { font-size: .72rem; color: var(--muted-dark); text-align: center; margin-top: .85rem; line-height: 1.5; }
.success-circle {
  width: 68px; height: 68px;
  background: rgba(201,163,74,.08); border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--gold);
  margin: 0 auto 1.25rem;
  animation: scaleIn .45s var(--ease) both;
}

/* ── PAYMENT MODAL ──────────────────────────────────────────────────────────── */
.modal-content.modal-premium { background: #141414; border: 1px solid rgba(201,163,74,.2); border-radius: var(--rl); }
.modal-premium .modal-header { border-bottom: 1px solid rgba(201,163,74,.15); padding: 1.2rem 1.6rem; }
.modal-premium .modal-body   { padding: 1.6rem; }
.modal-premium .modal-title  { font-family: var(--ff-serif); color: var(--gold); font-size: 1.2rem; }
.pago-resumen { background: rgba(201,163,74,.06); border: 1px solid rgba(201,163,74,.18); border-radius: 8px; padding: 1rem 1.25rem; }
.pago-row { display: flex; justify-content: space-between; padding: .28rem 0; font-size: .875rem; color: rgba(255,255,255,.58); border-bottom: 1px solid rgba(255,255,255,.05); }
.pago-row:last-child { border: none; }
.pago-total { display: flex; justify-content: space-between; padding: .55rem 0 0; margin-top: .35rem; border-top: 1px solid rgba(201,163,74,.2); font-size: 1rem; font-weight: 700; color: var(--gold); }

/* ── TURNO SELECTOR (modal pago) ─────────────────────────────────────────── */
.turno-label { display: block; font-size: .8rem; font-weight: 600; letter-spacing: .04em; color: rgba(255,255,255,.55); text-transform: uppercase; margin-bottom: .7rem; }
.turno-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.turno-btn {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: .75rem .9rem;
  text-align: left;
  cursor: pointer;
  transition: border-color .18s, background .18s, transform .12s;
  display: flex;
  flex-direction: column;
  gap: .18rem;
}
.turno-btn:hover {
  border-color: rgba(201,163,74,.5);
  background: rgba(201,163,74,.06);
}
.turno-btn.selected {
  border-color: var(--gold);
  background: rgba(201,163,74,.12);
  transform: scale(1.02);
}
.turno-hour {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .01em;
}
.turno-btn.selected .turno-hour { color: var(--gold); }
.turno-desc { font-size: .72rem; color: rgba(255,255,255,.42); font-weight: 400; }
.turno-error { font-size: .78rem; color: #e07070; margin-top: .4rem; }

/* ── BOOKING CARD (simplified) ───────────────────────────────────────────────── */
.bk-card {
  background: #111;
  border: 1px solid rgba(201,163,74,.2);
  border-radius: 20px;
  overflow: hidden;
}
.bk-section {
  padding: 1.75rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,.055);
}
.bk-section:last-child { border-bottom: none; }

/* Label with numbered badge */
.bk-label {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: 1.1rem;
  flex-wrap: wrap;
}
.bk-num {
  width: 22px; height: 22px;
  background: var(--gold);
  color: #000;
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Tipo toggle */
.bk-tipo-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.bk-tipo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  border: 2px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  border-radius: 14px;
  padding: 1.15rem 1rem;
  color: rgba(255,255,255,.55);
  cursor: pointer;
  transition: border-color .18s, background .18s, color .18s;
  text-align: center;
}
.bk-tipo:hover { border-color: rgba(201,163,74,.5); color: var(--white); }
.bk-tipo.active { border-color: var(--gold); background: rgba(201,163,74,.1); color: var(--gold); }
.bk-tipo-icon { font-size: 1.6rem; line-height: 1; }
.bk-tipo-txt { font-weight: 700; font-size: .95rem; color: inherit; }
.bk-tipo.active .bk-tipo-txt { color: var(--gold); }
.bk-tipo-sub { font-size: .72rem; color: rgba(255,255,255,.32); }
.bk-tipo.active .bk-tipo-sub { color: rgba(201,163,74,.6); }

/* Day pills */
.bk-days { display: flex; gap: .55rem; flex-wrap: wrap; }
.bk-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .08rem;
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: .65rem .85rem;
  min-width: 62px;
  cursor: pointer;
  transition: border-color .15s, background .15s, transform .12s;
}
.bk-day:hover { border-color: rgba(201,163,74,.45); background: rgba(201,163,74,.07); transform: translateY(-2px); }
.bk-day.active { border-color: var(--gold); background: rgba(201,163,74,.14); transform: translateY(-2px); }
.bk-day-name { font-size: .6rem; font-weight: 700; letter-spacing: .06em; color: rgba(255,255,255,.4); text-transform: uppercase; }
.bk-day.active .bk-day-name { color: var(--gold); }
.bk-day-num { font-family: var(--ff-serif); font-size: 1.5rem; line-height: 1.1; font-weight: 700; color: var(--white); }
.bk-day.active .bk-day-num { color: var(--gold); }
.bk-day-mon { font-size: .62rem; color: rgba(255,255,255,.28); }

/* Time slots */
.bk-slots-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.bk-slot {
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 9px;
  padding: .55rem 1.1rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  transition: border-color .14s, background .14s, color .14s, transform .1s;
  min-width: 72px;
  text-align: center;
}
.bk-slot:hover { border-color: var(--gold); background: rgba(201,163,74,.1); color: var(--gold); transform: scale(1.04); }
.bk-slot.active { border-color: var(--gold); background: rgba(201,163,74,.2); color: var(--gold); transform: scale(1.04); }
.bk-slot-group { margin-bottom: 1rem; }
.bk-slot-label { font-size: .67rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: .45rem; display: block; }

/* Loading / empty states */
.bk-loading { display: flex; align-items: center; gap: .75rem; color: rgba(255,255,255,.38); font-size: .85rem; padding: .25rem 0 .5rem; }
@keyframes bk-spin { to { transform: rotate(360deg); } }
.bk-spinner { width: 18px; height: 18px; border: 2px solid rgba(201,163,74,.25); border-top-color: var(--gold); border-radius: 50%; animation: bk-spin .75s linear infinite; flex-shrink: 0; }
.bk-empty { color: rgba(255,255,255,.32); font-size: .88rem; padding: .25rem 0 .5rem; margin: 0; }

/* Modal booking — summary header */
.bk-modal-summary { padding: .15rem 0 .2rem; }
.bk-modal-tipo { font-family: var(--ff-serif); font-size: 1rem; font-weight: 700; color: var(--gold); margin-bottom: .18rem; }
.bk-modal-datetime { font-size: .82rem; color: rgba(255,255,255,.45); }

/* Mobile adjustments */
@media (max-width: 575px) {
  .bk-section { padding: 1.2rem 1rem; }
  .bk-tipo-row { gap: .5rem; }
  .bk-tipo { padding: .9rem .7rem; }
  .bk-tipo-icon { font-size: 1.3rem; }
  .bk-tipo-txt { font-size: .82rem; }
  .bk-day { min-width: 52px; padding: .55rem .6rem; }
  .bk-day-num { font-size: 1.25rem; }
}

.footer-main { background: #070707; border-top: 1px solid rgba(201,163,74,.12); padding: 5rem 0 0; }
.footer-logo { display: block; height: 50px; margin-bottom: 1.2rem; }
.footer-desc { font-size: .84rem; color: rgba(255,255,255,.36); line-height: 1.75; max-width: 270px; margin-bottom: 1.2rem; }
.footer-trust-row { display: flex; flex-wrap: wrap; gap: .4rem; }
.trust-chip { font-size: .66rem; font-weight: 700; letter-spacing: 1px; color: var(--gold); background: rgba(201,163,74,.08); border: 1px solid rgba(201,163,74,.2); padding: .18rem .62rem; border-radius: 50px; }
.footer-heading { font-size: .67rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: rgba(255,255,255,.36); font-size: .85rem; transition: color var(--trans); }
.footer-links a:hover { color: var(--gold); }
.footer-cta-desc { font-size: .84rem; color: rgba(255,255,255,.36); margin-bottom: 1.2rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.05); padding: 1.3rem 0; margin-top: 3rem; }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.24); margin: 0; }
.footer-legal-link { font-size: .78rem; color: rgba(255,255,255,.24); transition: color var(--trans); }
.footer-legal-link:hover { color: var(--gold); }
.footer-sep { color: rgba(255,255,255,.14); margin: 0 .38rem; font-size: .78rem; }

/* ── STICKY CTA MÓVIL ───────────────────────────────────────────────────────── */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; display: flex; z-index: 1040; box-shadow: 0 -4px 24px rgba(0,0,0,.35); }
.sticky-cta .btn { flex: 1; border-radius: 0; padding: 1rem .5rem; font-size: .82rem; font-weight: 700; letter-spacing: .5px; text-align: center; justify-content: center; }

/* ── REVEAL ANIMATIONS ──────────────────────────────────────────────────────── */
.reveal   { opacity: 0; transform: translateY(32px);  transition: opacity .72s var(--ease), transform .72s var(--ease); }
.reveal-l { opacity: 0; transform: translateX(-32px); transition: opacity .72s var(--ease), transform .72s var(--ease); }
.reveal-r { opacity: 0; transform: translateX(32px);  transition: opacity .72s var(--ease), transform .72s var(--ease); }
.reveal.visible, .reveal-l.visible, .reveal-r.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ── TOAST ALERT ────────────────────────────────────────────────────────────── */
.toast-alert { position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%); z-index: 9999; min-width: 300px; max-width: 460px; border-radius: 8px; font-size: .875rem; animation: fadeUp .3s var(--ease) both; }

/* ── KEYFRAMES ──────────────────────────────────────────────────────────────── */
@keyframes fadeUp      { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn      { from { opacity: 0; } to { opacity: 1; } }
@keyframes scrollPulse { 0%, 100% { opacity: .35; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.15); } }
@keyframes scaleIn     { from { transform: scale(.3); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes spin        { to { transform: rotate(360deg); } }

/* ── RESPONSIVE ─────────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .hero-kpis { gap: .9rem 1.6rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; justify-content: center; }
  .hero-video-col { margin-top: 2.5rem; }
  .hero-video-wrap { max-width: 260px; } /* keep portrait capped on tablet */
}
@media (max-width: 767px) {
  .section-dark, .section-dark2, .section-light { padding: 4rem 0; }
  .stats-section { padding: 3rem 0; }
  .hero-content  { padding-top: 90px; }
  .hero-trust    { flex-direction: column; gap: .38rem; }
  .hero-kpi-sep  { display: none; }
  .tipo-grid     { grid-template-columns: 1fr; }
  .cal-days      { grid-template-columns: repeat(4, 1fr); }
  .wizard-header    { padding: 1.25rem 1.5rem; }
  .wizard-body      { padding: 1.5rem; }
  .wizard-progress  { padding: 1.2rem 1.5rem; }
  .learn-grid       { grid-template-columns: 1fr; }
  .contact-card     { padding: 1.75rem 1.5rem; }
  .trans-card       { padding: 1.75rem 1.4rem; }
  .footer-main      { padding: 3.5rem 0 0; }
  .promo-inner      { flex-direction: column; gap: .6rem; }
  .promo-items      { gap: .5rem 1rem; }
}
@media (max-width: 575px) {
  .hero-title   { font-size: 1.85rem; }
  .section-title { font-size: 1.65rem; }
  .stat-number  { font-size: 2.6rem; }
  .price-amount { font-size: 2rem; }
  .cal-days     { grid-template-columns: repeat(3, 1fr); }
  .wizard-body  { padding: 1.2rem 1rem; }
  .time-grid    { grid-template-columns: repeat(auto-fill, minmax(60px, 1fr)); }
}
