/* ==========================================================================
   BELADIÉ — LUXURY EDITORIAL REDESIGN (V7)
   Inspired by: Charlotte Tilbury, Dior Beauty, La Mer
   Palette: Warm ebony · Champagne gold · Ivory cream · Rose taupe
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@200;300;400;500&display=swap');

/* ─── DESIGN TOKENS ──────────────────────────────────────────────────────── */
:root {
  --bg:           #0e0d0b;
  --bg-warm:      #141210;
  --bg-card:      rgba(255,252,245,0.04);
  --border:       rgba(201,169,110,0.18);
  --border-light: rgba(255,255,255,0.06);

  --gold:         #C9A96E;
  --gold-light:   #E8C98A;
  --gold-dark:    #8A6A35;
  --ivory:        #F5F0E8;
  --taupe:        #9E8E7E;
  --cream-muted:  #6B6260;
  --white:        #FDFCFA;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 18px;
  --radius-lg: 32px;
  --radius-pill: 100px;

  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── RESET ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto !important; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ─── UTILITIES ─────────────────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 2.5rem; }
.text-center { text-align: center; }
.gold { color: var(--gold); }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 4rem; }

/* ─── GLASS / CARD ──────────────────────────────────────────────────────── */
.glass {
  background: var(--bg-card);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid var(--border);
}

/* ─── DIVIDER ────────────────────────────────────────────────────────────── */
.divider {
  display: flex; align-items: center; gap: 1.5rem;
  color: var(--gold); font-family: var(--sans); font-size: .7rem;
  letter-spacing: .25em; text-transform: uppercase; margin: 1.5rem 0;
}
.divider::before, .divider::after {
  content: ''; flex: 1;
  height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────────────────── */
.headline-xl {
  font-family: var(--serif); font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 300; line-height: 1.0; letter-spacing: -.02em;
  color: var(--white);
}
.headline-xl em { font-style: italic; color: var(--gold-light); }

.headline-lg {
  font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300; line-height: 1.1; letter-spacing: -.01em;
  color: var(--white);
}
.headline-lg em { font-style: italic; color: var(--gold); }

.headline-md {
  font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400; line-height: 1.2; color: var(--white);
}
.subhead {
  font-family: var(--sans); font-size: .7rem; font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem; display: block;
}
.body-lg {
  font-family: var(--sans); font-size: 1.1rem; font-weight: 300;
  line-height: 1.8; color: var(--taupe);
}
.body-md {
  font-family: var(--sans); font-size: .95rem; font-weight: 300;
  line-height: 1.75; color: var(--cream-muted);
}

/* ─── BUTTONS ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-size: .8rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 1rem 2.5rem; border-radius: var(--radius-pill);
  cursor: pointer; border: none; transition: all .4s var(--ease-smooth);
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.06); opacity: 0;
  transition: opacity .3s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--bg);
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(201,169,110,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,169,110,.5);
}

.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 998;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(201,169,110,.45), 0 2px 8px rgba(0,0,0,.3);
  transition: transform .35s var(--ease-spring), box-shadow .35s;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 16px 48px rgba(201,169,110,.65), 0 4px 12px rgba(0,0,0,.4);
}

.btn-ghost {
  background: transparent; color: var(--ivory);
  border: 1px solid rgba(255,255,255,.2);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-text {
  background: none; border: none; color: var(--gold);
  font-family: var(--sans); font-size: .8rem; letter-spacing: .18em;
  text-transform: uppercase; cursor: pointer; padding: 0;
  display: inline-flex; align-items: center; gap: .5rem; transition: gap .3s;
}
.btn-text:hover { gap: 1rem; }

/* ─── HEADER / NAV ──────────────────────────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  transition: background .5s, backdrop-filter .5s;
  padding: 1.5rem 0;
}
.header.scrolled {
  background: rgba(14,13,11,.85);
  backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
}
.nav {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1280px; margin: 0 auto; padding: 0 2.5rem;
}
.nav-center {
  display: flex; gap: 2.5rem; justify-content: center; align-items: center;
}
.nav-right {
  display: flex; align-items: center; gap: 1.5rem;
}
.nav a {
  font-family: var(--sans); font-size: .75rem; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(245,240,232,.6); transition: color .3s;
}
.nav a:hover { color: var(--gold); }
.logo {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 500;
  letter-spacing: .25em; text-align: left;
  background: linear-gradient(135deg, #FFF3D6 0%, #E2C275 40%, #CF9E46 80%, #E8CA83 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}
/* Custom lang dropdown */
.lang-dropdown { position: relative; }
.lang-current {
  display: flex; align-items: center; gap: .45rem;
  background: transparent; border: 1px solid var(--border-light);
  border-radius: var(--radius-pill); padding: .38rem 1rem;
  color: rgba(245,240,232,.65); font-family: var(--sans);
  font-size: .72rem; letter-spacing: .1em; cursor: pointer;
  transition: border-color .3s, color .3s; white-space: nowrap;
}
.lang-current:hover, .lang-dropdown.open .lang-current {
  border-color: var(--gold); color: var(--gold);
}
.lang-dropdown.open .lang-current svg { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + .6rem); right: 0;
  background: rgba(20,18,16,.95); backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: var(--radius-md);
  list-style: none; padding: .5rem; min-width: 130px;
  opacity: 0; transform: translateY(-8px) scale(.97);
  pointer-events: none; transition: all .25s var(--ease-smooth);
  z-index: 9000;
}
.lang-dropdown.open .lang-menu {
  opacity: 1; transform: translateY(0) scale(1); pointer-events: all;
}
.lang-option {
  padding: .65rem 1rem; border-radius: var(--radius-sm);
  font-family: var(--sans); font-size: .8rem; color: var(--taupe);
  cursor: pointer; transition: background .2s, color .2s;
  letter-spacing: .05em;
}
.lang-option:hover { background: rgba(201,169,110,.12); color: var(--ivory); }
.lang-option.active { color: var(--gold); }

/* ─── HERO ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative; height: 100svh; min-height: 700px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../assets/images/local.jpeg') center/cover no-repeat;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.hero-gradient {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(14,13,11,.65) 0%, rgba(14,13,11,.1) 60%, transparent 100%),
    linear-gradient(to bottom, rgba(14,13,11,.0) 0%, rgba(14,13,11,.35) 60%, rgba(14,13,11,.85) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; padding: 6rem 2.5rem 4rem;
  max-width: 1280px; margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .8rem;
  font-size: .65rem; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2rem;
}
.hero-badge::before {
  content: ''; width: 24px; height: 1px; background: var(--gold);
}
.hero-title { max-width: 800px; }
.hero-bottom {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-top: 3rem;
}
.hero-cta { display: flex; gap: 1rem; }
.hero-scroll {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .65rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--cream-muted);
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: .4; transform: scaleY(.5); }
}

/* ─── MARQUEE ───────────────────────────────────────────────────────────── */
.marquee-section {
  padding: 2rem 0;
  background: linear-gradient(90deg, transparent, var(--bg-warm), transparent);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 4rem; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 1rem;
  font-size: .7rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--taupe); white-space: nowrap;
}
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ─── PRESTIGE / STATS ──────────────────────────────────────────────────── */
.prestige {
  padding: 4.5rem 0;
  background: var(--bg);
}
.prestige-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8rem; align-items: center;
}
.prestige-text { max-width: 540px; }
.prestige-text .headline-lg { margin: 1.5rem 0 2rem; }
.stats-column { display: flex; flex-direction: column; gap: 0; }
.stat-row {
  display: flex; align-items: center; gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-light);
}
.stat-row:first-child { border-top: 1px solid var(--border-light); }
.stat-number {
  font-family: var(--serif); font-size: 4.5rem; font-weight: 300;
  color: var(--white); line-height: 1; min-width: 140px;
}
.stat-number span, .counter-num span { font-size: 2rem; color: var(--gold); }
.counter-num, #roiCourseVal, #roiClientsVal {
  will-change: filter;
  display: inline-block;
}
.stat-info h4 {
  font-family: var(--sans); font-size: .75rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .4rem;
}
.stat-info p { font-size: .9rem; color: var(--taupe); line-height: 1.5; }

/* ─── TREATMENTS ────────────────────────────────────────────────────────── */
.treatments { padding: 4.5rem 0; background: var(--bg-warm); }
.treatments-intro { text-align: center; max-width: 620px; margin: 0 auto 2.5rem; }
.tabs-nav {
  display: flex; justify-content: center; gap: .5rem;
  margin-bottom: 2rem;
}
.tab-pill {
  font-family: var(--sans); font-size: .7rem; letter-spacing: .18em;
  text-transform: uppercase; padding: .75rem 2rem; border-radius: var(--radius-pill);
  background: transparent; border: 1px solid var(--border-light);
  color: var(--cream-muted); cursor: pointer; transition: all .35s var(--ease-smooth);
}
.tab-pill.active, .tab-pill:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}

.tab-panel { display: none; }
.tab-panel.active {
  display: grid; grid-template-columns: 55% 1fr;
  gap: 5rem; align-items: center;
  animation: panel-in .6s var(--ease-smooth);
}
@keyframes panel-in { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }

.panel-image {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  /* changed to 1/1 so images don't crop sides too much */
  aspect-ratio: 1/1;
}
.panel-image img { width: 100%; height: 100%; object-fit: cover; }
.panel-image-badge {
  position: absolute; bottom: 2rem; left: 2rem;
  padding: .8rem 1.5rem; border-radius: var(--radius-sm);
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold);
}
.panel-body { }
.panel-body .headline-md { margin: 1rem 0 1.5rem; }
.services-list { margin: 2.5rem 0; }
.service-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: padding-left .3s;
}
.service-item:hover { padding-left: .5rem; }
.service-item:last-child { border-bottom: none; }
.service-name {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 400;
  color: var(--white);
}
.service-detail {
  font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--taupe);
}

/* ─── BEFORE / AFTER ────────────────────────────────────────────────────── */
.ba-section {
  padding: 4rem 0; background: var(--bg);
}
.ba-intro { text-align: center; max-width: 540px; margin: 0 auto 2.5rem; }
/* Main BA slider styles at end of file */

/* ─── PROCESS STEPS ─────────────────────────────────────────────────────── */
.process { padding: 4rem 0; background: var(--bg-warm); }
.process-intro { text-align: center; max-width: 540px; margin: 0 auto 3rem; }
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; border-radius: var(--radius-md); overflow: hidden;
}
.step-card {
  background: var(--bg-card); border: 1px solid var(--border-light);
  padding: 3rem 2.5rem;
  transition: background .4s;
  position: relative; overflow: hidden;
}
.step-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform .4s;
}
.step-card:hover::before { transform: scaleX(1); }
.step-card:hover { background: rgba(201,169,110,.05); }
.step-num {
  font-family: var(--serif); font-size: 4rem; font-weight: 300;
  color: rgba(201,169,110,.15); line-height: 1; margin-bottom: 2rem;
}
.step-title {
  font-family: var(--serif); font-size: 1.4rem; margin-bottom: 1rem;
  color: var(--white);
}
.step-desc { font-size: .9rem; color: var(--taupe); line-height: 1.7; }

/* ─── GALLERY ────────────────────────────────────────────────────────────── */
.gallery { padding: 4rem 0; background: var(--bg); }
.gallery-intro { text-align: center; max-width: 540px; margin: 0 auto 3rem; }
.masonry {
  columns: 4; column-gap: .85rem;
  padding: 0 2.5rem;
}
.masonry-item {
  break-inside: avoid; margin-bottom: .85rem;
  border-radius: var(--radius-sm); overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.masonry-item img {
  width: 100%; display: block; transition: transform .6s var(--ease-smooth);
}
.masonry-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,13,11,.4), transparent);
  opacity: 0; transition: opacity .4s;
  pointer-events: none;
}
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item:hover::after { opacity: 1; }
.load-more-wrap { text-align: center; margin-top: 4rem; }



/* ─── ACADEMIA (REDISEÑO: NEGRO & ROJO TERCIOPELO ELEGANTE) ──────────── */
.academia {
  padding: 4rem 0;
  background: radial-gradient(circle at 50% 15%, rgba(201, 169, 110, 0.08) 0%, #090807 55%, #050404 100%);
  position: relative;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.academia::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-dark), transparent);
  box-shadow: 0 0 25px rgba(201, 169, 110, 0.4);
}

/* Resplandores ambientales dorados */
.academia-ambient-spotlight {
  position: absolute;
  width: 750px;
  height: 750px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, rgba(201, 169, 110, 0.02) 40%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.spotlight-top { top: 2%; left: 50%; transform: translateX(-50%); }
.spotlight-mid { top: 40%; left: 5%; }
.spotlight-bottom { bottom: 5%; right: 5%; }

/* Canvas de estrellas titilantes */
.academia-stars-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

.academia .container { position: relative; z-index: 1; }

.academia-portal-header {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 5rem;
  position: relative;
}

.academia-portal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.6rem;
  border-radius: 100px;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.15);
  backdrop-filter: blur(12px);
}

.academia-portal-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  font-weight: 400;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9);
}

.academia-portal-title em {
  font-style: italic;
  color: var(--gold);
  text-shadow: 0 0 35px rgba(201, 169, 110, 0.35);
}

.academia-portal-desc {
  font-size: 1.15rem;
  color: rgba(245, 235, 235, 0.85);
  line-height: 1.85;
  max-width: 740px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

/* Pills de Autoridad Doradas */
.academia-authority-pills {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.auth-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.45rem;
  border-radius: 100px;
  background: rgba(14, 13, 11, 0.85);
  border: 1px solid var(--border);
  font-size: 0.84rem;
  color: #F5EBEB;
  font-weight: 600;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  transition: all .3s var(--ease-smooth);
}

.auth-pill:hover {
  border-color: var(--gold);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.25);
}

.auth-pill .auth-icon { font-size: 1.05rem; }

/* ─── 2. DUAL CONVOCATORIAS OFICIALES (GOLD OBSIDIAN GLASS) ─────── */
.academia-convocatorias-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 6rem;
}

.convocatoria-card {
  padding: 2.8rem 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 40px rgba(201, 169, 110, 0.1);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s ease, border-color 0.3s ease;
}

.convocatoria-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9), 0 0 45px rgba(201, 169, 110, 0.2);
}

.conv-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.conv-title {
  font-family: var(--serif);
  font-size: 1.95rem;
  color: #FFFFFF;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.conv-desc {
  font-size: 0.96rem;
  color: rgba(245, 235, 235, 0.85);
  line-height: 1.65;
  margin-bottom: 1.8rem;
  flex-grow: 1;
  font-weight: 300;
}

.conv-desc strong { color: #FFFFFF; font-weight: 700; }

.conv-dates-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}

.conv-date-box {
  background: rgba(14, 13, 11, 0.8);
  border: 1px solid var(--border);
  padding: 1rem 0.85rem;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.conv-date-box.highlight-date {
  border-color: var(--gold);
  background: rgba(26, 20, 12, 0.95);
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.25);
}

.date-lbl {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.conv-date-box strong {
  display: block;
  font-size: 0.92rem;
  color: #FFFFFF;
  font-weight: 700;
  white-space: nowrap;
}

/* ─── 3. GRID DE LOS 4 CURSOS (GOLD GLASS & OBSIDIANA) ──────────── */
.academia-catalog-section { margin-bottom: 6rem; }
.section-title-wrap { margin-bottom: 3.5rem; position: relative; }

.academia-divider {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.academia-divider::after {
  content: '';
  display: inline-block;
  width: 45px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.courses-grid-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Tarjeta de Curso Gold Glass */
.course-card-v2 {
  padding: 2.8rem 2.6rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(201, 169, 110, 0.1);
}

.course-card-v2:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.85), 0 0 40px rgba(201, 169, 110, 0.2);
}

.course-card-v2.highlight-program {
  border: 1.5px solid var(--gold);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 45px rgba(201, 169, 110, 0.25);
}

.course-card-v2.vip-exclusive-card {
  border: 1.5px solid #DFCA9B;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 45px rgba(201, 169, 110, 0.35);
}

.course-card-v2 .btn {
  margin-top: auto;
}

.card-badge-top {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-pill);
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid var(--border);
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.card-badge-top.crimson-badge {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  color: #0E0D0B;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 3px 12px rgba(201, 169, 110, 0.3);
}

.card-badge-top.gold-badge {
  background: linear-gradient(135deg, #C5A059 0%, #8E6D30 100%);
  color: #0d0c0a;
  font-weight: 700;
  border: none;
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.3);
}

.card-course-name {
  font-family: var(--serif);
  font-size: 2rem;
  color: #FFFFFF;
  margin-bottom: 0.4rem;
}

.card-course-sub {
  font-size: 0.96rem;
  color: rgba(245, 235, 235, 0.8);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.card-course-sub em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 600;
}

.card-price-wrap {
  display: flex;
  flex-direction: column;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.price-val {
  font-family: var(--serif);
  font-size: 2.7rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
}

.price-sub {
  font-size: 0.84rem;
  color: var(--taupe);
  margin-top: 0.4rem;
  font-weight: 500;
}

.course-perks-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex-grow: 1;
}

.course-perks-list li {
  font-size: 0.92rem;
  color: rgba(245, 235, 235, 0.85);
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-weight: 300;
}

.course-perks-list .check {
  color: var(--gold);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.course-perks-list li strong { color: #FFFFFF; font-weight: 700; }

/* ─── CESTAS DE BONUS GOLD ──────────────────────────────── */
.bonus-basket-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.45rem;
  border-radius: var(--radius-md);
  background: rgba(14, 13, 11, 0.85);
  border: 1px solid var(--border);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.2rem;
}

.bonus-basket-card.gold-basket {
  background: rgba(26, 20, 12, 0.9);
  border: 1px solid rgba(201, 169, 110, 0.4);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.basket-icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
}

.bonus-basket-card strong {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
  font-weight: 800;
}

.bonus-basket-card.gold-basket strong { color: #DFCA9B; }

.bonus-basket-card p {
  font-size: 0.88rem;
  color: rgba(245, 235, 235, 0.85);
  line-height: 1.45;
  margin: 0;
  font-weight: 400;
}

/* BOTONES DE ALTA GAMA DORADOS */
.btn-crimson {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2rem;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  color: #0E0D0B !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 25px rgba(201, 169, 110, 0.35);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .3s var(--ease-smooth);
  margin-top: auto;
}

.btn-crimson:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.5);
  transform: translateY(-2px);
}

.btn-ghost-crimson {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2rem;
  border-radius: 100px;
  background: rgba(14, 13, 11, 0.8);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .3s var(--ease-smooth);
  margin-top: auto;
}

.btn-ghost-crimson:hover {
  background: rgba(201, 169, 110, 0.1);
  border-color: var(--gold);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.25);
}

.w-100 { width: 100%; text-align: center; }

/* ─── 4. CALCULADORA ROI ULTRA SIMPLE & INTUITIVA ──────────────────── */
.academia-roi-card {
  padding: 3.5rem 4rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 40px rgba(201, 169, 110, 0.1);
  margin-bottom: 6rem;
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s ease, border-color 0.3s ease;
}

.academia-roi-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85), 0 0 45px rgba(201, 169, 110, 0.2);
}

.roi-interactive-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 3.5rem;
  align-items: center;
}

.roi-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.roi-btn-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.roi-btn {
  background: rgba(14, 13, 11, 0.85);
  border: 1px solid var(--border);
  color: #F5EBEB;
  padding: 0.95rem 1rem;
  border-radius: 100px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s var(--ease-smooth);
}

.roi-btn:hover {
  border-color: var(--gold);
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(201, 169, 110, 0.25);
}

.roi-btn.active {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  color: #0E0D0B;
  border-color: var(--gold-light);
  font-weight: 700;
  box-shadow: 0 0 25px rgba(201, 169, 110, 0.4);
}

.roi-price-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.3rem;
  border-radius: 100px;
  background: rgba(14, 13, 11, 0.85);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 1.5rem;
}

.roi-simple-results-box {
  background: rgba(14, 13, 11, 0.95);
  border: 1px solid var(--border);
  padding: 2.5rem 2.2rem;
  border-radius: var(--radius-md);
  text-align: left;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.roi-row-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.8rem;
}

.roi-row-item:last-child { border-bottom: none; padding-bottom: 0; }

.roi-row-lbl {
  font-size: 0.92rem;
  color: rgba(245, 235, 235, 0.7);
  font-weight: 500;
}

.roi-row-val {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: #FFFFFF;
}

.roi-highlight-banner {
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid var(--border);
  padding: 1.3rem 1.5rem;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: 0 0 25px rgba(201, 169, 110, 0.15);
}

.roi-highlight-banner strong {
  display: block;
  font-size: 1.25rem;
  color: #FFFFFF;
  font-family: var(--serif);
  margin-bottom: 0.35rem;
}

.roi-highlight-banner p {
  font-size: 0.86rem;
  color: rgba(245, 235, 235, 0.85);
  margin: 0;
  line-height: 1.45;
}

/* ─── 5. GRADUADAS CON VERIFICADO AZUL INSTAGRAM ─────────────────── */
.academia-graduates-section { margin-bottom: 6rem; }

.graduates-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.graduate-card {
  padding: 2.2rem 1.8rem;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 15px 35px rgba(0,0,0,0.7);
}

.graduate-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.9), 0 0 25px rgba(201, 169, 110, 0.2);
}

.grad-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.2rem;
}

.grad-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.25);
  background: #141210;
}

.grad-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.grad-avatar img.logo-avatar {
  object-fit: contain;
  background: #FFFFFF;
  padding: 4px;
}

.grad-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.grad-name {
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.ig-verified-badge {
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
  transform-origin: center center;
  animation: igVerifiedPulse 2.8s ease-in-out infinite;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.graduate-card:hover .ig-verified-badge,
.ig-verified-badge:hover {
  transform: scale(1.3) rotate(360deg);
  animation: none;
}

@keyframes igVerifiedPulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  20% {
    transform: scale(1.18) rotate(-8deg);
  }
  40% {
    transform: scale(1.05) rotate(6deg);
  }
  60% {
    transform: scale(1.14) rotate(-4deg);
  }
  80% {
    transform: scale(1) rotate(0deg);
  }
}

.grad-ig-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
  margin-top: 0.15rem;
}

.grad-ig-link:hover { color: #FFFFFF; }

.grad-quote {
  font-size: 0.88rem;
  color: rgba(245, 235, 235, 0.85);
  line-height: 1.6;
  font-style: italic;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
  font-weight: 300;
}

.grad-course-tag {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
}

/* ─── 6. DUAL PERKS: CLUB VIP & CABINAS ────────────────────────────── */
.academia-perks-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.dual-perk-card {
  padding: 3rem 2.8rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px rgba(0,0,0,0.85);
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s ease, border-color 0.3s ease;
}

.dual-perk-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 30px rgba(201, 169, 110, 0.25);
}

.dual-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.dual-tag {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.dual-title {
  font-family: var(--serif);
  font-size: 1.75rem;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.dual-desc {
  font-size: 0.95rem;
  color: rgba(245, 235, 235, 0.85);
  line-height: 1.75;
  margin: 0 0 2rem 0;
  flex-grow: 1;
  font-weight: 300;
}

/* Responsive queries */
@media (max-width: 1024px) {
  .courses-grid-cards { grid-template-columns: 1fr; }
  .graduates-cards-grid { grid-template-columns: 1fr 1fr; }
  .academia-convocatorias-grid { grid-template-columns: 1fr; }
  .roi-interactive-grid { grid-template-columns: 1fr; }
  .academia-perks-dual-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .graduates-cards-grid { grid-template-columns: 1fr; }
  .roi-btn-group { grid-template-columns: 1fr; }
  .conv-dates-row { grid-template-columns: 1fr; }
  .convocatoria-card { padding: 2rem 1.5rem; }
  .academia-roi-card { padding: 2rem 1.5rem; }
  .course-card-v2 { padding: 2rem 1.5rem; }
}








/* ─── TIENDA & LEAD MAGNET ──────────────────────────────────────────────── */
.shop-section {
  padding: 15rem 0;
  background: #090807;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
}
.shop-badge-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 400px;
  max-width: 90%;
  padding: 1.35rem 3.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(201, 169, 110, 0.45);
  background: rgba(201, 169, 110, 0.04);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.shop-badge-pill:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
  transform: translateY(-2px);
}
.lead-magnet-section {
  padding: 6rem 0; background: linear-gradient(180deg, var(--bg-warm), var(--bg));
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.lead-form-wrap {
  display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem;
}
.lead-input {
  padding: 0.9rem 1.4rem; border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.04);
  color: var(--white); font-family: var(--sans); font-size: 0.95rem; min-width: 290px;
  outline: none; transition: border-color .3s;
}
.lead-input:focus { border-color: var(--gold); background: rgba(255,255,255,0.08); }

/* ─── TESTIMONIALS ──────────────────────────────────────────────────────── */
.testimonials { padding: 10rem 0; background: var(--bg); }
.testi-intro { text-align: center; margin-bottom: 5rem; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testi-card {
  padding: 3rem; border-radius: var(--radius-md);
  display: flex; flex-direction: column; gap: 1.5rem;
}
.testi-stars { color: var(--gold); letter-spacing: .15em; font-size: .8rem; }
.testi-quote {
  font-family: var(--serif); font-style: italic;
  font-size: 1.25rem; color: var(--white); line-height: 1.6; flex: 1;
}
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.1rem; color: var(--bg);
}
.testi-name { font-size: .85rem; color: var(--taupe); }

/* ─── CONTACT / FOOTER ─────────────────────────────────────────────────── */
.footer { padding: 8rem 0 4rem; background: var(--bg-warm); border-top: 1px solid var(--border-light); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4rem; margin-bottom: 6rem; }
.footer-brand .logo { text-align: left; margin-bottom: 1.5rem; }
.footer-col h5 {
  font-size: .65rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.footer-col a {
  display: block; font-size: .9rem; color: var(--taupe);
  margin-bottom: .75rem; transition: color .3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-socials { display: flex; gap: 1rem; margin-top: 2rem; }
.social-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--border-light); background: transparent;
  display: flex; align-items: center; justify-content: center;
  color: var(--taupe); cursor: pointer; transition: all .3s;
}
.social-btn:hover {
  border-color: var(--gold); color: var(--gold); transform: translateY(-3px);
}
.social-btn svg { width: 18px; height: 18px; fill: currentColor; }
.footer-bottom {
  padding-top: 2rem; border-top: 1px solid var(--border-light);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: .75rem; color: var(--cream-muted); letter-spacing: .05em; }

/* ─── MODAL ─────────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(14,13,11,.9); backdrop-filter: blur(20px);
  display: flex; justify-content: center; align-items: center;
  opacity: 0; pointer-events: none; transition: opacity .4s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  width: 90%; max-width: 540px; max-height: 90svh; overflow-y: auto;
  border-radius: var(--radius-lg); padding: 3.5rem;
  transform: translateY(30px) scale(.97);
  transition: transform .5s var(--ease-spring);
  scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
.modal-close-btn {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,.07); border: 1px solid var(--border-light);
  color: var(--taupe); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color .3s, background .3s;
}
.modal-close-btn:hover { background: rgba(255,255,255,.12); color: var(--ivory); }
.modal-header {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 1.5rem; margin-bottom: 2.5rem;
}
.modal-top h2 { font-family: var(--serif); font-size: 2rem; color: var(--white); margin-bottom: .5rem; }
.modal-top p { font-size: .9rem; color: var(--taupe); }
.form-field { margin-bottom: 1.5rem; }
.form-field label { display: block; font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--taupe); margin-bottom: .6rem; }
.form-field input {
  width: 100%; background: rgba(255,255,255,.05);
  border: 1px solid var(--border-light); border-radius: var(--radius-sm);
  padding: .9rem 1.2rem; color: var(--white);
  font-family: var(--sans); font-size: .95rem; outline: none;
  transition: border-color .3s;
}
.form-field input:focus { border-color: var(--gold); }
.form-divider { height: 1px; background: var(--border-light); margin: 2rem 0; }
.diseases-title { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.search-input-wrap { position: relative; margin-bottom: 1rem; }
.search-input-wrap input { padding-left: 2.8rem; }
.search-icon {
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  color: var(--taupe); pointer-events: none;
  display: flex; align-items: center;
}
.diseases-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .5rem;
  max-height: 180px; overflow-y: auto;
  scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}
.disease-item { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--taupe); }
.disease-item input[type=checkbox] { accent-color: var(--gold); }

/* Academy option cards */
.acad-options { display: flex; flex-direction: column; gap: .75rem; }
.acad-option-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.2rem 1.4rem; border-radius: var(--radius-md);
  border: 1px solid var(--border-light); cursor: pointer;
  transition: border-color .3s, background .3s;
}
.acad-option-card:hover { border-color: var(--gold); background: rgba(201,169,110,.05); }
.acad-option-card input[type=radio] { accent-color: var(--gold); flex-shrink: 0; width: 16px; height: 16px; }
.acad-option-card:has(input:checked) { border-color: var(--gold); background: rgba(201,169,110,.08); }
.acad-option-body { display: flex; flex-direction: column; gap: .25rem; }
.acad-option-title { font-family: var(--serif); font-size: 1.1rem; color: var(--white); }
.acad-option-desc { font-size: .8rem; color: var(--taupe); }

/* ─── INPUT FOCUS — GOLD BORDER ─────────────────────────────────────────── */
.form-field input:focus,
.form-field select:focus,
.search-input-wrap input:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(201,169,110,.12);
  outline: none;
}

/* ─── HERO TEXT SHADOW ───────────────────────────────────────────────────── */
.headline-xl {
  text-shadow: 0 2px 40px rgba(0,0,0,.6), 0 1px 8px rgba(0,0,0,.4);
}

/* ─── FAQ SECTION ────────────────────────────────────────────────────────── */
.faq-section {
  padding: 10rem 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--border-light);
}
.faq-intro { margin-bottom: 4rem; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border-light);
}
.faq-item:first-child { border-top: 1px solid var(--border-light); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; padding: 1.8rem 0;
  background: none; border: none; cursor: pointer;
  font-family: var(--serif); font-size: 1.3rem; font-weight: 300;
  color: var(--ivory); text-align: left;
  transition: color .3s;
}
.faq-q:hover { color: var(--gold); }
.faq-q[aria-expanded="true"] { color: var(--gold); }
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--gold);
  transition: transform .4s var(--ease-smooth), border-color .3s;
}
.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg); border-color: var(--gold);
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .5s var(--ease-smooth), padding .4s;
}
.faq-a.open { max-height: 300px; padding-bottom: 1.8rem; }
.faq-a p { font-size: .95rem; line-height: 1.85; color: var(--taupe); }

/* ─── LOCATION / MAP ─────────────────────────────────────────────────────── */
.location-section {
  position: relative;
  border-top: 1px solid var(--border-light);
}
.location-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; min-height: 520px;
}
.location-info {
  padding: 6rem 4rem 6rem 2.5rem;
  max-width: 520px; margin: 0 auto;
  display: flex; flex-direction: column; justify-content: center;
}
.location-info .headline-md em { font-style: italic; color: var(--gold); }
.location-info .body-md { margin: 1.5rem 0 2rem; }
.location-details { display: flex; flex-direction: column; gap: 1rem; }
.location-detail-item {
  display: flex; align-items: flex-start; gap: .9rem;
  font-size: .9rem; color: var(--taupe);
}
.location-detail-item svg { flex-shrink: 0; color: var(--gold); margin-top: .1rem; }
.location-cta-link {
  color: var(--gold); font-size: .9rem;
  transition: opacity .3s;
}
.location-cta-link:hover { opacity: .7; }
.location-map {
  position: relative; background: var(--bg-card);
}
.location-map iframe {
  width: 100%; height: 100%; min-height: 520px;
  border: 0; filter: grayscale(30%) contrast(1.05);
  transition: filter .4s;
}
.location-map:hover iframe { filter: grayscale(0%) contrast(1); }

@media (max-width: 768px) {
  .wa-float { bottom: 1.2rem; right: 1.2rem; width: 52px; height: 52px; }
}

/* ─── SCROLL REVEAL ─────────────────────────────────────────────────────── */
[data-reveal] { opacity: 1; transform: none; }
[data-reveal].reveal  { opacity: 1; transform: none; }
[data-reveal].is-revealed { opacity: 1; transform: none; }


/* ─── PREMIUM UI ANIMATIONS ───────────────────────────────────────────────── */
/* 1. Preloader */
.preloader {
  position: fixed; inset: 0; background: var(--bg); z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), visibility 1s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-text {
  font-family: var(--serif); font-size: 2rem; color: var(--gold);
  letter-spacing: 0.2em; animation: pulseGold 2s infinite ease-in-out;
}
@keyframes pulseGold {
  0%, 100% { opacity: 0.5; filter: drop-shadow(0 0 0px var(--gold)); }
  50% { opacity: 1; filter: drop-shadow(0 0 15px var(--gold)); }
}

/* 2. Custom Cursor (Removed) */

[data-reveal].is-revealed { opacity: 1; transform: none; }





/* 3D Perspective settings for Tilt effect */
.panel-image, .academia-hero-img, .academia-thumb, .testi-card, .step-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
/* Shine overlay inside tilt elements */
.tilt-shine {
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 50%), rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none; z-index: 5;
  mix-blend-mode: overlay;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .prestige-grid { grid-template-columns: 1fr; gap: 4rem; }
  .tab-panel.active { grid-template-columns: 1fr; }
  .panel-image { aspect-ratio: 16/9; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .academia-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-center { display: none; }
  .nav { display: flex; justify-content: space-between; align-items: center; width: 100%; }
  .steps-grid { grid-template-columns: 1fr; }
  .masonry { columns: 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .headline-xl { font-size: clamp(2.5rem, 10vw, 4.5rem); }
  .tabs-nav { flex-wrap: wrap; }
  
  /* Fix treatment image crop and text clutter on mobile */
  .panel-image {
    aspect-ratio: 1/1 !important; /* Square format shows more of the image without weird cropping */
    max-height: none;
  }
  .panel-image-badge {
    display: none !important; /* Hide image badge to reduce clutter */
  }
  .panel-body p.body-md {
    display: none !important; /* Hide the long descriptive text on mobile */
  }
  .services-list {
    margin: 1.5rem 0 !important;
  }
  
  /* BA mobile handled at end of file */
  .footer-bottom { flex-direction: column; gap: 1rem; }
  /* Location & Map mobile */
  .location-grid { grid-template-columns: 1fr; }
  .location-info { padding: 4rem 2rem; max-width: 100%; }
  .location-map iframe { min-height: 300px; }
}

/* Enhanced 26 Services presentation */
.service-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.service-desc-sub {
  font-size: 0.82rem;
  color: var(--taupe);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.4;
}
.service-pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  flex-shrink: 0;
}
.service-price {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 1.15rem;
  font-family: var(--sans);
}
.service-detail {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--taupe);
  background: rgba(255, 255, 255, 0.04);
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(201, 169, 110, 0.2);
}
.form-select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(201, 169, 110, 0.25);
}

/* ═══════════════════════════════════════════════════════════════
   PROCEDURE BUBBLES & BOOKSY WIDGET INTEGRATION
═══════════════════════════════════════════════════════════════ */
.panel-hero-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
  background: rgba(20, 18, 16, 0.75);
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
@media (max-width: 900px) {
  .panel-hero-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }
}
.panel-image-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}
.panel-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.panel-hero-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.panel-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.8rem;
}
.hero-chip {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.25);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.procedures-bubbles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}
@media (max-width: 600px) {
  .procedures-bubbles-grid {
    grid-template-columns: 1fr;
  }
}

.procedure-bubble {
  background: rgba(22, 20, 18, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.procedure-bubble:hover {
  border-color: rgba(201, 169, 110, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
  transform: translateY(-2px);
}

.proc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.proc-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.proc-badge {
  align-self: flex-start;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(201, 169, 110, 0.2);
}
.proc-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--white);
  line-height: 1.25;
  margin: 0;
}
.proc-price-box {
  flex-shrink: 0;
}
.proc-price {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "SF Pro", system-ui, "Helvetica Neue", sans-serif !important;
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  color: var(--gold-light) !important;
  letter-spacing: -0.025em !important;
  font-feature-settings: "tnum" 1, "lnum" 1 !important;
}
.proc-summary {
  font-size: 0.88rem;
  color: var(--taupe);
  line-height: 1.5;
  margin: 0;
}

.proc-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.btn-toggle-details {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--cream-muted);
  font-size: 0.8rem;
  font-family: var(--sans);
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
}
.btn-toggle-details:hover {
  color: var(--gold-light);
  border-color: rgba(201, 169, 110, 0.3);
  background: rgba(201, 169, 110, 0.08);
}
.btn-toggle-details.active .toggle-icon {
  transform: rotate(180deg);
}
.toggle-icon {
  transition: transform 0.3s ease;
}

/* Expandable Drawer */
.proc-details-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
}
.proc-details-drawer.open {
  max-height: 900px;
  opacity: 1;
}
.proc-details-inner {
  padding-top: 1.2rem;
  margin-top: 0.8rem;
  border-top: 1px dashed rgba(201, 169, 110, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.proc-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.proc-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.proc-detail-lbl {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.proc-detail-item p {
  font-size: 0.82rem;
  color: var(--cream-muted);
  margin: 0;
  line-height: 1.45;
}
.proc-drawer-footer {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   PROCEDURES FILTERS & COMPACT BUBBLES
═══════════════════════════════════════════════════════════════ */
.procedure-filters-nav {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.proc-filter-btn {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.65rem 1.6rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  color: var(--cream-muted);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.proc-filter-btn:hover {
  background: rgba(201, 169, 110, 0.12);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-1px);
}

.proc-filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}



@media (max-width: 640px) {
  
}



.proc-bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.proc-bubble:hover {
  border-color: rgba(201, 169, 110, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.5);
  background: rgba(26, 23, 20, 0.95);
}

.proc-bubble:hover::before {
  opacity: 1;
}

.proc-bubble-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.bubble-tag {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(201, 169, 110, 0.2);
}

.bubble-price {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "SF Pro", system-ui, "Helvetica Neue", sans-serif !important;
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  color: var(--gold-light) !important;
  letter-spacing: -0.025em !important;
  font-feature-settings: "tnum" 1, "lnum" 1 !important;
}

.bubble-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--white);
  line-height: 1.25;
  margin: 0;
}

.bubble-desc {
  font-size: 0.86rem;
  color: var(--taupe);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bubble-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.btn-bubble-details {
  background: none;
  border: none;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-family: var(--sans);
  letter-spacing: 0.03em;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.btn-bubble-details:hover {
  color: var(--white);
  transform: translateX(3px);
}

/* ═══════════════════════════════════════════════════════════════
   PROCEDURE DETAIL 2-COLUMN MODAL (EXACTO A IMAGEN 2)
═══════════════════════════════════════════════════════════════ */
.proc-modal-box {
  max-width: 960px;
  width: 92%;
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: #110F0D;
  border: 1px solid rgba(201, 169, 110, 0.25);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
  max-height: 90vh;
  display: flex;
}

.proc-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.4);
  color: #DFC48A;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.proc-modal-close:hover,
.proc-modal-close:active {
  background: rgba(201, 169, 110, 0.25);
  color: #FFF;
  border-color: rgba(201, 169, 110, 0.8);
  transform: scale(1.06);
}

.proc-modal-layout {
  display: grid;
  grid-template-columns: 46% 54%;
  width: 100%;
  max-height: 90vh;
}

@media (max-width: 820px) {
  .proc-modal-layout {
    grid-template-columns: 1fr;
    max-height: 85vh;
    overflow-y: auto;
  }
}

.proc-modal-image-col {
  position: relative;
  height: 100%;
  min-height: 400px;
  background: #000;
}

.proc-modal-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.proc-modal-content-col {
  padding: 2.8rem 2.8rem 2.8rem 2.2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

@media (max-width: 600px) {
  .proc-modal-content-col {
    padding: 2rem 1.5rem;
  }
}

.proc-modal-duration-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.proc-modal-title {
  font-family: var(--serif);
  font-size: 1.85rem;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
}

.proc-modal-subtitle {
  font-size: 0.92rem;
  color: var(--gold-light);
  line-height: 1.45;
  margin: 0;
  font-style: italic;
  font-family: var(--serif);
}

.proc-modal-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0.4rem 0;
}

.proc-modal-section-title {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.6rem;
  font-family: var(--sans);
  font-weight: 600;
}

.proc-modal-consists {
  font-size: 0.88rem;
  color: var(--cream-muted);
  line-height: 1.6;
  margin: 0;
}

.proc-modal-includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.proc-modal-includes-list li {
  font-size: 0.88rem;
  color: var(--ivory);
  line-height: 1.45;
  position: relative;
  padding-left: 1.2rem;
}

.proc-modal-includes-list li::before {
  content: '•';
  color: var(--gold);
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: -0.15rem;
}

.proc-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.proc-modal-booksy-btn {
  width: 100%;
  justify-content: center;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  padding: 1.1rem;
}

.proc-modal-wa-btn {
  width: 100%;
  justify-content: center;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  padding: 1rem;
}

/* ═══════════════════════════════════════════════════════════════
   BOOKSY POPUP IFRAME MODAL
═══════════════════════════════════════════════════════════════ */
.booksy-popup-box {
  max-width: 820px;
  width: 94%;
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #141210;
  border: 1px solid var(--border-gold);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.9);
  height: 85vh;
  display: flex;
  flex-direction: column;
}

.booksy-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background: rgba(20, 18, 16, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.booksy-brand-badge {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(201, 169, 110, 0.2);
  margin-bottom: 0.2rem;
  display: inline-block;
}

.booksy-iframe-container {
  flex: 1;
  width: 100%;
  height: 100%;
  position: relative;
  background: #110F0D;
}

/* ═══════════════════════════════════════════════════════════════
   PROCEDURES FILTERS & CARD BUBBLES (DARK LUXURY GOLD PALETTE)
═══════════════════════════════════════════════════════════════ */
.procedure-filters-nav {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0.65rem !important;
  margin: 0 auto 3.5rem !important;
  flex-wrap: wrap !important;
}

.proc-filter-btn {
  font-family: var(--sans) !important;
  font-size: 0.76rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 0.7rem 1.6rem !important;
  border-radius: 30px !important;
  background: rgba(22, 19, 17, 0.85) !important;
  border: 1px solid rgba(201, 169, 110, 0.25) !important;
  color: var(--cream-muted) !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
}

.proc-filter-btn:hover {
  background: rgba(201, 169, 110, 0.15) !important;
  border-color: var(--gold) !important;
  color: var(--gold-light) !important;
  transform: translateY(-2px) !important;
}

.proc-filter-btn.active {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #0A0908 !important;
  font-weight: 700 !important;
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.4) !important;
  transform: translateY(-1px) !important;
}



@media (max-width: 680px) {
  
}



.proc-bubble:hover {
  border-color: var(--gold) !important;
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 25px rgba(201, 169, 110, 0.18) !important;
  background: #191614 !important;
}



.proc-card-media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  transition: transform 0.5s ease !important;
}

.proc-bubble:hover .proc-card-media img {
  transform: scale(1.06) !important;
}

.proc-photo-placeholder {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  background: #0E0D0B !important;
  color: var(--taupe) !important;
  font-size: 0.8rem !important;
  font-family: var(--sans) !important;
}

.proc-photo-badge {
  position: absolute !important;
  bottom: 0.8rem !important;
  right: 0.8rem !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  background: rgba(10, 9, 8, 0.85) !important;
  color: var(--gold-light) !important;
  padding: 4px 9px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(201, 169, 110, 0.3) !important;
  backdrop-filter: blur(8px) !important;
}

.proc-card-body {
  padding: 1.5rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.85rem !important;
  flex: 1 !important;
}

.proc-bubble-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 0.75rem !important;
}

.bubble-tag {
  font-size: 0.68rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  background: rgba(201, 169, 110, 0.1) !important;
  padding: 3px 9px !important;
  border-radius: 20px !important;
  border: 1px solid rgba(201, 169, 110, 0.22) !important;
}

.bubble-price {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "SF Pro", system-ui, "Helvetica Neue", sans-serif !important;
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  color: var(--gold-light) !important;
  letter-spacing: -0.025em !important;
  font-feature-settings: "tnum" 1, "lnum" 1 !important;
}

.bubble-name {
  font-family: var(--serif) !important;
  font-size: 1.25rem !important;
  color: var(--white) !important;
  line-height: 1.25 !important;
  margin: 0 !important;
}

.proc-card-meta {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  font-size: 0.75rem !important;
  color: var(--gold-light) !important;
}

.bubble-desc {
  font-size: 0.86rem !important;
  color: var(--taupe) !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.bubble-actions {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0.75rem !important;
  margin-top: auto !important;
  padding-top: 1rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.btn-bubble-book {
  background: var(--gold) !important;
  color: #0A0908 !important;
  border: none !important;
  font-weight: 600 !important;
  padding: 0.55rem 1.1rem !important;
  border-radius: 20px !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
}

.btn-bubble-book:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(201, 169, 110, 0.4) !important;
}

.btn-bubble-details {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(201, 169, 110, 0.25) !important;
  color: var(--gold-light) !important;
  font-size: 0.8rem !important;
  font-family: var(--sans) !important;
  letter-spacing: 0.03em !important;
  cursor: pointer !important;
  padding: 0.5rem 0.9rem !important;
  border-radius: 20px !important;
  transition: all 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.3rem !important;
}

.btn-bubble-details:hover {
  background: rgba(201, 169, 110, 0.12) !important;
  color: var(--white) !important;
  border-color: var(--gold) !important;
  transform: translateX(2px) !important;
}

/* ═══════════════════════════════════════════════════════════════
   TWIN ACTION BUTTONS & ACADEMY GLOWING GALLERY
═══════════════════════════════════════════════════════════════ */
.bubble-actions {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0.75rem !important;
  margin-top: auto !important;
  padding-top: 1rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  width: 100% !important;
}

.btn-bubble-book,
.btn-bubble-details {
  flex: 1 1 0% !important;
  width: 50% !important;
  height: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  padding: 0 0.6rem !important;
  border-radius: 25px !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  white-space: nowrap !important;
  box-sizing: border-box !important;
  cursor: pointer !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-decoration: none !important;
}

.btn-bubble-book {
  background: #C9A96E !important;
  color: #0A0908 !important;
  border: 1px solid #C9A96E !important;
  box-shadow: 0 4px 12px rgba(201, 169, 110, 0.25) !important;
}

.btn-bubble-book svg {
  margin-right: 5px !important;
  flex-shrink: 0 !important;
}

.btn-bubble-book:hover {
  background: #DFC48A !important;
  border-color: #DFC48A !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(201, 169, 110, 0.5) !important;
}

.btn-bubble-details {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(201, 169, 110, 0.35) !important;
  color: #DFC48A !important;
}

.btn-bubble-details:hover {
  background: rgba(201, 169, 110, 0.18) !important;
  color: #FFFFFF !important;
  border-color: #C9A96E !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(201, 169, 110, 0.3) !important;
}

.academy-live-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.6rem !important;
}

@media (max-width: 900px) {
  .academy-live-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 580px) {
  .academy-live-grid {
    grid-template-columns: 1fr !important;
  }
}

.academy-photo-card {
  position: relative !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  aspect-ratio: 4/5 !important;
  background: #141210 !important;
  border: 1px solid rgba(201, 169, 110, 0.22) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer !important;
}

.academy-photo-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.academy-photo-overlay {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  padding: 1.5rem 1.2rem 1.2rem !important;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 9, 8, 0.85) 40%, rgba(10, 9, 8, 0.98) 100%) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.3rem !important;
}

.academy-photo-tag {
  font-size: 0.68rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #C9A96E !important;
  font-weight: 600 !important;
}

.academy-photo-caption {
  font-size: 0.82rem !important;
  color: #EDE4D8 !important;
  margin: 0 !important;
  line-height: 1.35 !important;
}

.academy-photo-card:hover {
  border-color: #DFC48A !important;
  box-shadow: 0 0 35px rgba(201, 169, 110, 0.65), 0 15px 45px rgba(0, 0, 0, 0.9) !important;
  transform: translateY(-8px) scale(1.02) !important;
}

.academy-photo-card:hover img {
  transform: scale(1.08) !important;
}

.academy-placeholder-slot {
  border: 1px dashed rgba(201, 169, 110, 0.35) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.academy-slot-inner {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 1.5rem !important;
  gap: 0.4rem !important;
}

.slot-badge {
  font-size: 0.7rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #C9A96E !important;
  background: rgba(201, 169, 110, 0.1) !important;
  padding: 3px 10px !important;
  border-radius: 15px !important;
  border: 1px solid rgba(201, 169, 110, 0.25) !important;
}

.slot-text {
  font-size: 0.85rem !important;
  color: #9C8F80 !important;
  margin: 0 !important;
}

.academy-placeholder-slot:hover {
  border-style: solid !important;
  border-color: #C9A96E !important;
  box-shadow: 0 0 30px rgba(201, 169, 110, 0.5), 0 15px 40px rgba(0, 0, 0, 0.8) !important;
  transform: translateY(-6px) scale(1.02) !important;
}

/* ═══════════════════════════════════════════════════════════════
   VIP NANO STROKE EXCLUSIVE GIFT BOX & GALLERY SPACING
═══════════════════════════════════════════════════════════════ */
.academy-clean-gallery {
  margin-top: 4.5rem !important;
  margin-bottom: 6.5rem !important;
}

.vip-gift-box {
  background: rgba(201, 169, 110, 0.12) !important;
  border: 1px solid rgba(201, 169, 110, 0.45) !important;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.15) !important;
  border-radius: var(--radius-sm) !important;
  transition: all 0.3s ease !important;
}

.vip-gift-box:hover {
  border-color: #C9A96E !important;
  background: rgba(201, 169, 110, 0.18) !important;
  box-shadow: 0 6px 25px rgba(201, 169, 110, 0.3) !important;
}

.academia-roi-card {
  margin-top: 3rem !important;
}

/* ═══════════════════════════════════════════════════════════════
   IDENTICAL TWIN SIZING FOR LANG DROPDOWN & RESERVAR BUTTON
═══════════════════════════════════════════════════════════════ */
.nav-right {
  display: flex !important;
  align-items: center !important;
  gap: 0.85rem !important;
}

.lang-current,
.nav-book-btn,
.nav-right .open-booking {
  height: 34px !important;
  min-height: 34px !important;
  max-height: 34px !important;
  padding: 0 1.25rem !important;
  border-radius: 100px !important;
  font-family: var(--sans) !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.lang-current {
  background: rgba(22, 19, 17, 0.85) !important;
  border: 1px solid rgba(201, 169, 110, 0.4) !important;
  color: #EDE4D8 !important;
  gap: 0.5rem !important;
  font-weight: 400 !important;
}

.lang-current:hover,
.lang-dropdown.open .lang-current {
  border-color: #DFC48A !important;
  color: #FFFFFF !important;
  background: rgba(201, 169, 110, 0.18) !important;
  box-shadow: 0 0 16px rgba(201, 169, 110, 0.3) !important;
}

.nav-book-btn,
.nav-right .open-booking {
  background: linear-gradient(135deg, #F7E7BE 0%, #E2C275 40%, #CF9E46 80%, #E8CA83 100%) !important;
  color: #0E0C09 !important;
  font-weight: 400 !important;
  border: 1px solid rgba(255, 245, 220, 0.75) !important;
  box-shadow: 0 0 22px rgba(226, 194, 117, 0.6), 0 3px 10px rgba(0, 0, 0, 0.5) !important;
}

.nav-book-btn:hover,
.nav-right .open-booking:hover {
  background: linear-gradient(135deg, #FFF3D6 0%, #EDD28A 40%, #DBAA4F 80%, #F5DB9A 100%) !important;
  border-color: #FFFFFF !important;
  color: #000000 !important;
  transform: translateY(-1px) scale(1.03) !important;
  box-shadow: 0 0 32px rgba(247, 231, 190, 0.85), 0 5px 15px rgba(0, 0, 0, 0.6) !important;
}


.academia-authority-pills {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.85rem !important;
  margin-top: 2rem !important;
}

.auth-pills-row {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0.85rem !important;
  flex-wrap: wrap !important;
}


/* ═══════════════════════════════════════════════════════════════
   MATHEMATICALLY PERFECT CENTER ALIGNMENT FOR AUTHORITY PILLS
═══════════════════════════════════════════════════════════════ */
.academia-authority-pills-grid {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  gap: 0.85rem 1.2rem !important;
  margin: 2.2rem auto 0 !important;
  max-width: 960px !important;
  width: 100% !important;
}

.pill-col-left {
  display: flex !important;
  justify-content: flex-end !important;
  grid-column: 1 !important;
  grid-row: 1 !important;
}

.pill-col-center-top {
  display: flex !important;
  justify-content: center !important;
  grid-column: 2 !important;
  grid-row: 1 !important;
}

.pill-col-right {
  display: flex !important;
  justify-content: flex-start !important;
  grid-column: 3 !important;
  grid-row: 1 !important;
}

.pill-col-center-bottom {
  display: flex !important;
  justify-content: center !important;
  grid-column: 2 !important;
  grid-row: 2 !important;
}

.auth-pill {
  white-space: nowrap !important;
}

@media (max-width: 860px) {
  .academia-authority-pills-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.85rem !important;
  }
  .pill-col-left, .pill-col-center-top, .pill-col-right, .pill-col-center-bottom {
    justify-content: center !important;
    width: auto !important;
  }
}


/* ═══════════════════════════════════════════════════════════════
   LUXURY BLACK & GOLD BEFORE / AFTER COMPARISON SLIDER
═══════════════════════════════════════════════════════════════ */
.ba-comparison {
  position: relative !important;
  max-width: 920px !important;
  margin: 0 auto !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 35px rgba(201, 169, 110, 0.2) !important;
  border: 1px solid rgba(201, 169, 110, 0.45) !important;
  aspect-ratio: 16 / 9 !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  cursor: default !important;
  background: #0B0A08 !important;
  touch-action: none !important;
}

.ba-side {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none !important;
}

.ba-side-before {
  background: linear-gradient(135deg, #181512 0%, #0D0C0A 100%) !important;
  z-index: 1 !important;
}

.ba-side-after {
  background: linear-gradient(135deg, #241D14 0%, #120E08 100%) !important;
  z-index: 2 !important;
}

.ba-card-placeholder {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  text-align: center !important;
  width: 100% !important;
  max-width: 320px !important;
  padding: 1.5rem !important;
}

.ba-ph-icon {
  width: 60px !important;
  height: 60px !important;
  margin: 0 auto 1rem !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #A89F91 !important;
}

.ba-ph-icon.gold {
  background: rgba(201, 169, 110, 0.1) !important;
  border-color: rgba(201, 169, 110, 0.4) !important;
  color: #DFC48A !important;
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.2) !important;
}

.ba-ph-badge {
  display: inline-block !important;
  padding: 0.4rem 1.4rem !important;
  border-radius: 100px !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #A89F91 !important;
  background: rgba(255, 255, 255, 0.04) !important;
  margin-bottom: 0.6rem !important;
}

.ba-ph-badge.gold {
  border-color: rgba(201, 169, 110, 0.5) !important;
  color: #DFC48A !important;
  background: rgba(201, 169, 110, 0.12) !important;
}

.ba-ph-text {
  font-size: 0.85rem !important;
  color: #7A7064 !important;
  margin: 0 !important;
  letter-spacing: 0.03em !important;
}

.ba-ph-text.gold {
  color: #B59B65 !important;
}

/* Slider Handle Container */
.ba-slider-handle {
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 50% !important;
  width: 0 !important;
  pointer-events: none !important;
  z-index: 10 !important;
}

/* Vertical Gold Line */
.ba-vertical-line {
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 50% !important;
  width: 2.5px !important;
  transform: translateX(-50%) !important;
  background: linear-gradient(180deg, rgba(201, 169, 110, 0.3), #DFC48A 50%, rgba(201, 169, 110, 0.3)) !important;
  box-shadow: 0 0 16px rgba(201, 169, 110, 0.9), 0 0 4px #DFC48A !important;
  pointer-events: none !important;
}

/* Perfectly Centered Black & Gold Knob */
.ba-center-knob {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  background: #141210 !important;
  border: 2.5px solid #C9A96E !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.95), 0 0 25px rgba(201, 169, 110, 0.7) !important;
  cursor: ew-resize !important;
  pointer-events: all !important;
  touch-action: none !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease !important;
}

.ba-center-knob svg {
  pointer-events: none !important;
}

.ba-center-knob:hover,
.ba-center-knob:active {
  transform: translate(-50%, -50%) scale(1.1) !important;
  border-color: #DFC48A !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.95), 0 0 35px rgba(201, 169, 110, 0.9) !important;
}

/* Labels below */
.ba-labels {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  max-width: 920px !important;
  margin: 1.5rem auto 0 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
}

.ba-lbl-before,
.ba-lbl-after {
  font-weight: 600 !important;
  color: #DFC48A !important;
  font-family: var(--sans) !important;
}

/* ═══════════════════════════════════════════════
   BEFORE / AFTER SLIDER (FINAL)
═══════════════════════════════════════════════ */
.ba-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.8), 0 0 30px rgba(201,169,110,.2);
  border: 1px solid rgba(201,169,110,.4);
  aspect-ratio: 1024/493;
  user-select: none;
  -webkit-user-select: none;
  cursor: default;
  touch-action: none;
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}

.ba-img--before { z-index: 1; }

.ba-img--after {
  z-index: 2;
  clip-path: inset(0 0 0 50%);
  -webkit-clip-path: inset(0 0 0 50%);
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(201,169,110,.3), #DFC48A 50%, rgba(201,169,110,.3));
  box-shadow: 0 0 14px rgba(201,169,110,.9);
  z-index: 10;
  pointer-events: none;
}

.ba-divider__knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #111009;
  border: 2.5px solid #C9A96E;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0,0,0,.95), 0 0 22px rgba(201,169,110,.65);
  cursor: ew-resize;
  pointer-events: all;
  touch-action: none;
  transition: transform .15s ease, border-color .15s ease;
}

.ba-divider__knob:hover {
  transform: translate(-50%, -50%) scale(1.1);
  border-color: #DFC48A;
}

.ba-divider__knob svg { pointer-events: none; }

.ba-labels {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 1.2rem auto 0;
}

.ba-lbl {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #9C8F80;
  font-family: var(--sans);
}

.ba-lbl.gold { color: #DFC48A; }




/* ═══════════════════════════════════════════════════════════════
   PROCEDURE DETAIL MODAL (CLEAN PURE INFORMATION ONLY)
═══════════════════════════════════════════════════════════════ */
.proc-info-modal-box {
  max-width: 620px !important;
  width: 90% !important;
  padding: 2.2rem !important;
  border-radius: 24px !important;
  background: #14120F !important;
  border: 1.5px solid rgba(201, 169, 110, 0.35) !important;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.95), 0 0 35px rgba(201, 169, 110, 0.18) !important;
}

.proc-info-only {
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 1.1rem !important;
}

.proc-info-only .proc-modal-title {
  font-family: var(--serif) !important;
  font-size: 1.85rem !important;
  color: #FFF !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}

.proc-info-only .proc-modal-subtitle {
  font-size: 0.95rem !important;
  color: #DFC48A !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

.proc-info-only .proc-modal-divider {
  width: 100% !important;
  height: 1px !important;
  background: linear-gradient(90deg, rgba(201, 169, 110, 0.4) 0%, transparent 100%) !important;
  margin: 0.3rem 0 !important;
}

.proc-info-only .proc-modal-section-title {
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  color: #B5A895 !important;
  margin-bottom: 0.5rem !important;
}

.proc-info-only .proc-modal-consists {
  font-size: 0.88rem !important;
  color: #D1C7B8 !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}

.proc-info-only .proc-modal-includes-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
}

.proc-info-only .proc-modal-includes-list li {
  font-size: 0.86rem !important;
  color: #D1C7B8 !important;
  position: relative !important;
  padding-left: 1.4rem !important;
  line-height: 1.5 !important;
}

.proc-info-only .proc-modal-includes-list li::before {
  content: '✓' !important;
  position: absolute !important;
  left: 0 !important;
  color: #DFC48A !important;
  font-weight: bold !important;
}

.proc-info-only .proc-modal-actions {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
  margin-top: 0.8rem !important;
}

.proc-info-only .proc-modal-booksy-btn {
  width: 100% !important;
  justify-content: center !important;
  padding: 0.85rem 1.5rem !important;
}

.proc-info-only .proc-modal-wa-btn {
  width: 100% !important;
  justify-content: center !important;
  padding: 0.75rem 1.5rem !important;
  font-size: 0.85rem !important;
}



/* ═══════════════════════════════════════════════════════════════
   UNIVERSAL MOBILE & TABLET RESPONSIVE SYSTEM (2026 ARCHITECTURE)
═══════════════════════════════════════════════════════════════ */

/* Prevent horizontal overflow across all devices */
html {
  overflow-x: clip !important;
  position: static !important;
  scroll-behavior: auto !important;
  height: auto !important;
}

body {
  overflow-x: hidden !important;
  position: relative !important;
  min-height: 100vh !important;
  scroll-behavior: auto !important;
}

/* Base Container Mobile Padding */
@media (max-width: 768px) {
  .container, .container--narrow {
    padding: 0 1.25rem !important;
  }
}

@media (max-width: 400px) {
  .container, .container--narrow {
    padding: 0 1rem !important;
  }
}

/* ─── HAMBURGER BUTTON & MOBILE DRAWER ─── */
.nav-hamburger-btn {
  display: none;
  background: rgba(22, 19, 17, 0.85);
  border: 1px solid rgba(201, 169, 110, 0.4);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
  z-index: 100;
}

.nav-hamburger-btn span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: #DFC48A;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.nav-hamburger-btn:hover {
  background: rgba(201, 169, 110, 0.2);
  border-color: #DFC48A;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .nav-hamburger-btn {
    display: flex !important;
  }
  .nav-center {
    display: none !important;
  }
}

/* Mobile Drawer Overlay */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 5, 4, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  justify-content: flex-end;
}

.mobile-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-box {
  width: 82%;
  max-width: 340px;
  height: 100%;
  background: #12100E;
  border-left: 1px solid rgba(201, 169, 110, 0.3);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.9);
}

.mobile-drawer-overlay.open .mobile-drawer-box {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.mobile-drawer-close {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: #DFC48A;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-drawer-close:hover {
  background: #DFC48A;
  color: #12100E;
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2.5rem 0;
}

.mobile-nav-link {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: #EDE4D8;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-nav-link:hover {
  color: #DFC48A;
  transform: translateX(6px);
}

.mobile-drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.mobile-drawer-meta {
  font-size: 0.72rem;
  color: #9C8F80;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── HERO RESPONSIVENESS ─── */
@media (max-width: 768px) {
  .hero {
    min-height: 90vh !important;
    padding-top: 7rem !important;
    padding-bottom: 3.5rem !important;
  }
  .hero-badge {
    font-size: 0.68rem !important;
    padding: 0.4rem 1rem !important;
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.4 !important;
  }
  .hero-title {
    font-size: clamp(2.3rem, 11vw, 3.8rem) !important;
    line-height: 1.08 !important;
    margin: 1rem 0 !important;
  }
  .hero-bottom {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 1.5rem !important;
  }
  .hero-actions {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 0.75rem !important;
  }
  .hero-actions .btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.9rem 1.5rem !important;
  }
}

/* ─── PROCEDURES SECTION ON TABLET & MOBILE ─── */
.procedures-bubble-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.8rem !important;
  width: 100% !important;
}

@media (max-width: 1024px) {
  .procedures-bubble-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.4rem !important;
  }
}

@media (max-width: 680px) {
  .procedures-bubble-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  
  .procedure-filters-nav {
    gap: 0.45rem !important;
    margin-bottom: 2rem !important;
    justify-content: center !important;
  }
  
  .proc-filter-btn {
    font-size: 0.7rem !important;
    padding: 0.55rem 1.1rem !important;
  }

  .proc-bubble {
    padding: 12px !important;
    border-radius: 18px !important;
  }

  .proc-card-body {
    padding: 1.1rem 0.6rem 0.4rem !important;
    gap: 0.75rem !important;
  }

  .bubble-name {
    font-size: 1.15rem !important;
  }

  .bubble-price {
    font-size: 1.2rem !important;
  }

  .bubble-actions {
    gap: 0.5rem !important;
  }

  .btn-bubble-book, .btn-bubble-details {
    height: 42px !important;
    min-height: 42px !important;
    font-size: 0.78rem !important;
  }
}

/* ─── BEFORE / AFTER SLIDER RESPONSIVENESS ─── */
@media (max-width: 680px) {
  .ba-wrap {
    border-radius: 14px !important;
    aspect-ratio: 16/10 !important;
  }
  .ba-divider__knob {
    width: 36px !important;
    height: 36px !important;
  }
  .ba-badge {
    font-size: 0.65rem !important;
    padding: 3px 8px !important;
  }
}

/* ─── MODALS RESPONSIVENESS (PHONES & TABLETS) ─── */
@media (max-width: 680px) {
  .proc-info-modal-box {
    width: 94% !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 1.75rem 1.25rem !important;
    border-radius: 20px !important;
  }
  .proc-info-only .proc-modal-title {
    font-size: 1.45rem !important;
  }
  .proc-info-only .proc-modal-subtitle {
    font-size: 0.88rem !important;
  }
  .proc-info-only .proc-modal-consists {
    font-size: 0.84rem !important;
  }
  .proc-info-only .proc-modal-includes-list li {
    font-size: 0.82rem !important;
  }

  .booksy-popup-box {
    width: 96% !important;
    height: 90vh !important;
    border-radius: 18px !important;
  }
  .booksy-iframe-container iframe {
    height: 100% !important;
  }
}

/* ─── ACADEMY & VIP RESPONSIVENESS ─── */
@media (max-width: 900px) {
  .academy-clean-gallery .academy-live-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.2rem !important;
  }
}

@media (max-width: 580px) {
  .academy-clean-gallery .academy-live-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  .vip-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}

/* ─── FLOATING WHATSAPP BUTTON (LUXURY GOLD) ─── */
.wa-float {
  position: fixed !important;
  bottom: 1.5rem !important;
  right: 1.5rem !important;
  z-index: 9990 !important;
  width: 58px !important;
  height: 58px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(135deg, #F7E7BE 0%, #E2C275 40%, #CF9E46 80%, #E8CA83 100%) !important;
  color: #0E0C09 !important;
  border: 1px solid rgba(255, 245, 220, 0.8) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(226, 194, 117, 0.45) !important;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease !important;
}

.wa-float svg {
  width: 32px !important;
  height: 32px !important;
  fill: #0E0C09 !important;
}

.wa-float:hover {
  transform: scale(1.08) !important;
  box-shadow: 0 10px 35px rgba(226, 194, 117, 0.7), 0 4px 15px rgba(0, 0, 0, 0.8) !important;
}



/* ═══════════════════════════════════════════════════════════════
   BULLETPROOF MOBILE ARCHITECTURE (IPHONE & ANDROID OPTIMIZED)
═══════════════════════════════════════════════════════════════ */

/* 1. Global Viewport & Rendering Performance */
html {
  scroll-behavior: smooth !important;
  overflow-x: hidden !important;
  width: 100% !important;
  -webkit-text-size-adjust: 100% !important;
}

body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
  position: relative !important;
  background: #0e0d0b !important;
  -webkit-font-smoothing: antialiased !important;
  -webkit-tap-highlight-color: transparent !important;
}

body.modal-open {
  overflow: hidden !important;
  touch-action: none !important;
}

/* 2. Guaranteed Content Visibility — Zero Black Screens */
[data-reveal],
[data-reveal="up"],
[data-reveal="left"],
[data-reveal="right"],
[data-reveal="scale"],
[data-reveal].is-revealed,
[data-reveal].reveal {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.preloader {
  display: none !important;
}

/* 3. Single-Row Fixed Mobile Header */
.header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 60px !important;
  background: rgba(14, 13, 11, 0.95) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(201, 169, 110, 0.22) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6) !important;
  z-index: 9999 !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

.nav {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
  height: 100% !important;
  padding: 0 1rem !important;
  box-sizing: border-box !important;
}

.logo {
  font-family: var(--serif) !important;
  font-size: 1.2rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.18em !important;
  background: linear-gradient(135deg, #FFF3D6 0%, #E2C275 40%, #CF9E46 80%, #E8CA83 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: #E2C275 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

.nav-right {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  flex-shrink: 0 !important;
}

.lang-current {
  height: 32px !important;
  min-height: 32px !important;
  padding: 0 8px !important;
  border-radius: 100px !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.08em !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  background: rgba(22, 19, 17, 0.9) !important;
  border: 1px solid rgba(201, 169, 110, 0.35) !important;
  color: #EDE4D8 !important;
  cursor: pointer !important;
}

.nav-book-btn {
  height: 32px !important;
  min-height: 32px !important;
  padding: 0 12px !important;
  border-radius: 100px !important;
  font-size: 0.68rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  background: linear-gradient(135deg, #F7E7BE 0%, #E2C275 50%, #CF9E46 100%) !important;
  color: #0E0C09 !important;
  border: none !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35) !important;
}

.nav-hamburger-btn {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: rgba(22, 19, 17, 0.9) !important;
  border: 1px solid rgba(201, 169, 110, 0.35) !important;
  cursor: pointer !important;
  display: none !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
}

.nav-hamburger-btn span {
  display: block !important;
  width: 14px !important;
  height: 1.5px !important;
  background: #DFC48A !important;
  border-radius: 2px !important;
}

@media (max-width: 820px) {
  .nav-center {
    display: none !important;
  }
  .nav-hamburger-btn {
    display: flex !important;
  }
}

/* 4. Hero Section Compensation */
.hero {
  padding-top: 70px !important;
  min-height: 85svh !important;
  box-sizing: border-box !important;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2.4rem, 10vw, 3.8rem) !important;
    line-height: 1.08 !important;
    margin: 1rem 0 !important;
  }
  .hero-bottom {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 1.5rem !important;
  }
  .hero-actions {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 0.75rem !important;
  }
  .hero-actions .btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.9rem 1.5rem !important;
  }
}

/* 5. Clean Section Scroll Offsets */
section[id],
div[id] {
  scroll-margin-top: 75px !important;
}

/* 6. Procedures Cards on Mobile */
@media (max-width: 680px) {
  .procedures-bubble-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  .procedure-filters-nav {
    gap: 0.45rem !important;
    margin-bottom: 2rem !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
  }
  .proc-filter-btn {
    font-size: 0.7rem !important;
    padding: 0.5rem 1rem !important;
  }
  .proc-bubble {
    padding: 14px !important;
    border-radius: 18px !important;
    background: rgba(255, 252, 245, 0.04) !important;
    border: 1px solid rgba(201, 169, 110, 0.2) !important;
  }
  .bubble-actions {
    display: flex !important;
    gap: 0.5rem !important;
  }
  .btn-bubble-book,
  .btn-bubble-details {
    flex: 1 !important;
    height: 42px !important;
    min-height: 42px !important;
    font-size: 0.78rem !important;
  }
}

/* 7. Academia Section Mobile Optimization (Zero GPU Stalls) */
@media (max-width: 768px) {
  .academia {
    padding: 4.5rem 0 !important;
    background: #090807 !important;
  }
  .academia-ambient-spotlight {
    display: none !important;
  }
  .academia-stars-canvas {
    display: none !important;
  }
  .academia-portal-header {
    margin-bottom: 3rem !important;
  }
  .academia-convocatorias-grid,
  .academia-perks-dual-grid,
  .vip-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
}

/* 8. Modals & Booksy Popup Mobile Experience */
.modal-overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
  background: rgba(10, 9, 8, 0.88) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  display: none !important;
  pointer-events: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 14px !important;
  box-sizing: border-box !important;
  transition: opacity 0.25s ease, visibility 0.25s ease !important;
}

.modal-overlay.open {
  display: flex !important;
  pointer-events: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.booksy-popup-box,
.proc-modal-box,
.modal-box {
  width: 100% !important;
  max-width: 580px !important;
  max-height: 88svh !important;
  border-radius: 20px !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  background: #141210 !important;
  border: 1px solid rgba(201, 169, 110, 0.35) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85) !important;
}

.booksy-popup-header {
  padding: 1.1rem 1.25rem !important;
}

.modal-close-btn {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  min-height: 42px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(201, 169, 110, 0.4) !important;
  color: #DFC48A !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  transition: background 0.2s, color 0.2s !important;
}

.modal-close-btn:hover,
.modal-close-btn:active {
  background: rgba(201, 169, 110, 0.25) !important;
  color: #FFF !important;
}

.booksy-iframe-container {
  width: 100% !important;
  height: 68svh !important;
  min-height: 400px !important;
  background: #110F0D !important;
  -webkit-overflow-scrolling: touch !important;
}

.booksy-iframe-container iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
}

@media (max-width: 480px) {
  .location-map {
    height: 280px !important;
    min-height: 280px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
  }
}

/* ─── COMPACT LUXURY COOKIE BANNER ─── */
.cookie-banner {
  position: fixed !important;
  bottom: 1.25rem !important;
  left: 1.25rem !important;
  right: 1.25rem !important;
  max-width: 650px !important;
  margin: 0 auto !important;
  background: rgba(18, 16, 14, 0.96) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(201, 169, 110, 0.35) !important;
  border-radius: 16px !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.85), 0 0 20px rgba(201, 169, 110, 0.15) !important;
  padding: 0.9rem 1.25rem !important;
  z-index: 9995 !important;
  display: none;
  transform: translateY(150%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease !important;
  box-sizing: border-box !important;
}

.cookie-banner.open {
  display: block !important;
  transform: translateY(0) !important;
}

.cookie-banner-content {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1rem !important;
  width: 100% !important;
}

.cookie-text-wrap {
  flex: 1 !important;
}

.cookie-title {
  font-family: var(--serif) !important;
  font-size: 0.95rem !important;
  color: #FFF !important;
  margin: 0 0 0.15rem 0 !important;
  letter-spacing: 0.04em !important;
}

.cookie-desc {
  font-family: var(--sans) !important;
  font-size: 0.74rem !important;
  color: #C5BCB2 !important;
  margin: 0 !important;
  line-height: 1.35 !important;
}

.cookie-actions {
  display: flex !important;
  align-items: center !important;
  gap: 0.45rem !important;
  flex-shrink: 0 !important;
}

.btn-cookie-accept {
  height: 34px !important;
  padding: 0 14px !important;
  border-radius: 100px !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  background: linear-gradient(135deg, #F7E7BE 0%, #E2C275 50%, #CF9E46 100%) !important;
  color: #0E0C09 !important;
  border: none !important;
  cursor: pointer !important;
  white-space: nowrap !important;
}

.btn-cookie-reject {
  height: 34px !important;
  padding: 0 12px !important;
  border-radius: 100px !important;
  font-size: 0.72rem !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(201, 169, 110, 0.3) !important;
  color: #EDE4D8 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
}

.btn-cookie-config {
  height: 34px !important;
  padding: 0 6px !important;
  font-size: 0.72rem !important;
  color: #DFC48A !important;
  background: transparent !important;
  border: none !important;
  text-decoration: underline !important;
  cursor: pointer !important;
  white-space: nowrap !important;
}

@media (max-width: 680px) {
  .cookie-banner {
    bottom: 0.65rem !important;
    left: 0.65rem !important;
    right: 0.65rem !important;
    padding: 0.75rem 0.9rem !important;
    border-radius: 14px !important;
  }
  .cookie-banner-content {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.65rem !important;
  }
  .cookie-title {
    font-size: 0.85rem !important;
  }
  .cookie-desc {
    font-size: 0.68rem !important;
  }
  .cookie-actions {
    display: flex !important;
    width: 100% !important;
    gap: 0.35rem !important;
  }
  .btn-cookie-accept {
    flex: 1.2 !important;
    height: 32px !important;
    font-size: 0.68rem !important;
  }
  .btn-cookie-reject {
    flex: 1 !important;
    height: 32px !important;
    font-size: 0.68rem !important;
  }
  .btn-cookie-config {
    flex: 0.8 !important;
    height: 32px !important;
    font-size: 0.66rem !important;
    padding: 0 !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   COMPACT GAP-FREE HARMONIOUS PROCEDURE GRID & CARDS
═══════════════════════════════════════════════════════════════ */
.procedures-bubble-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 1.1rem !important;
  align-items: flex-start !important;
  width: 100% !important;
}

.proc-bubble {
  flex: 1 1 calc(33.333% - 0.8rem) !important;
  min-width: 260px !important;
  max-width: calc(50% - 0.6rem) !important;
  break-inside: avoid !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  background: #141210 !important;
  border: 1px solid rgba(201, 169, 110, 0.22) !important;
  border-radius: 20px !important;
  padding: 12px !important;
  position: relative !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45) !important;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
  box-sizing: border-box !important;
}

@media (max-width: 1024px) {
  .proc-bubble {
    flex: 1 1 calc(50% - 0.6rem) !important;
    max-width: calc(50% - 0.6rem) !important;
  }
}

@media (max-width: 640px) {
  .proc-bubble {
    flex: 1 1 100% !important;
    max-width: 100% !important;
  }
}

.proc-bubble.is-hidden {
  display: none !important;
}

.proc-bubble:hover {
  border-color: #C9A96E !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7), 0 0 20px rgba(201, 169, 110, 0.2) !important;
}

.proc-card-media {
  width: 100% !important;
  height: auto !important;
  min-height: auto !important;
  position: relative !important;
  overflow: hidden !important;
  border-radius: 18px !important;
  -webkit-mask-image: -webkit-radial-gradient(white, black) !important;
  mask-image: radial-gradient(white, black) !important;
  isolation: isolate !important;
  margin-bottom: 0.75rem !important;
  background: transparent !important;
  display: block !important;
  border: 1px solid rgba(201, 169, 110, 0.25) !important;
}

.proc-card-media img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 18px !important;
  border: none !important;
  box-sizing: border-box !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease !important;
}

.proc-bubble:hover .proc-card-media img {
  transform: scale(1.04) !important;
}

.proc-card-body {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}

.proc-bubble-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: baseline !important;
  gap: 0.5rem !important;
  margin-bottom: 0.35rem !important;
}

.bubble-name {
  font-family: var(--serif) !important;
  font-size: 1.25rem !important;
  font-weight: 400 !important;
  color: #EDE4D8 !important;
  margin: 0 !important;
  line-height: 1.25 !important;
}

.bubble-tag-row {
  display: flex !important;
  align-items: center !important;
  gap: 0.45rem !important;
  margin-bottom: 0.5rem !important;
  flex-wrap: wrap !important;
}

.bubble-tag {
  font-size: 0.62rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 2px 7px !important;
  border-radius: 100px !important;
  background: rgba(201, 169, 110, 0.15) !important;
  border: 1px solid rgba(201, 169, 110, 0.3) !important;
  color: #E8CA83 !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
}

.bubble-time {
  font-size: 0.62rem !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  color: var(--taupe) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 3px !important;
}

.bubble-desc {
  font-size: 0.8rem !important;
  line-height: 1.4 !important;
  color: #A89F91 !important;
  margin-bottom: 0.75rem !important;
  flex: 1 !important;
}

.bubble-actions,
.proc-bubble-actions {
  margin-top: auto !important;
  display: flex !important;
  gap: 8px !important;
  width: 100% !important;
}

.bubble-actions .btn,
.bubble-actions button,
.proc-bubble-actions .btn {
  flex: 1 !important;
  height: 38px !important;
  min-height: 38px !important;
  border-radius: 100px !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
  padding: 0 0.75rem !important;
  white-space: nowrap !important;
  transition: all 0.25s ease !important;
}

/* Hide any residual edit toolbar */
.proc-img-toolbar {
  display: none !important;
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE DRAWER LANGUAGE SWITCHER
═══════════════════════════════════════════════════════════════ */
.mobile-drawer-lang {
  margin: 1.2rem 0;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: var(--radius-md);
}

.mobile-drawer-lang-title {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-family: var(--sans);
  font-weight: 600;
}

.mobile-drawer-lang-btns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
}

.drawer-lang-btn {
  background: rgba(20, 18, 16, 0.8);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 8px;
  color: var(--ivory);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.45rem 0;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.drawer-lang-btn:active,
.drawer-lang-btn.active {
  background: linear-gradient(135deg, #F7E7BE, #CF9E46) !important;
  color: #0E0C09 !important;
  border-color: #F7E7BE !important;
  box-shadow: 0 0 10px rgba(201, 169, 110, 0.4) !important;
}

/* ═══════════════════════════════════════════════════════════════
   APPLE SF PRO BOLD TYPOGRAPHY FOR ALL PRICES
═══════════════════════════════════════════════════════════════ */
.bubble-price,
.proc-price,
.service-price,
.card-price-wrap,
.roi-price-pill,
.proc-bubble-header .bubble-price,
#editorPreviewPrice {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "SF Pro", -apple-system-body, system-ui, "Helvetica Neue", sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.025em !important;
  font-feature-settings: "tnum" 1, "lnum" 1 !important;
  color: var(--gold-light) !important;
}
