/* ============================================================
   GYM+ Gimnasio — styles.css
   Dark theme · Yellow gold accents · Premium gym aesthetic
   ============================================================ */

/* ---- Variables ---- */
:root {
  --yellow:      #F5B800;
  --yellow-dark: #C99900;
  --yellow-dim:  rgba(245,184,0,0.12);
  --yellow-glow: rgba(245,184,0,0.25);
  --black:       #080808;
  --dark:        #0f0f0f;
  --card:        #161616;
  --card2:       #1e1e1e;
  --border:      #2a2a2a;
  --border2:     #333;
  --text:        #f0f0f0;
  --text-muted:  #888;
  --text-dim:    #555;
  --white:       #ffffff;
  --radius:      16px;
  --radius-sm:   10px;
  --shadow:      0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg:   0 8px 48px rgba(0,0,0,0.7);
  --shadow-glow: 0 0 40px rgba(245,184,0,0.2);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', Arial, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Container ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 99px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
}
.btn:active { transform: scale(0.96); }

.btn--primary {
  background: var(--yellow);
  color: var(--black);
  padding: 12px 28px;
  font-size: 0.9rem;
}
.btn--primary:hover {
  background: #ffc800;
  box-shadow: 0 0 32px rgba(245,184,0,0.45);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
  padding: 12px 28px;
  font-size: 0.9rem;
}
.btn--outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.btn--lg { padding: 15px 34px; font-size: 0.95rem; }

/* ---- Section ---- */
.section { padding: 88px 0; }
.section--alt { background: var(--black); }

.section__header {
  text-align: center;
  margin-bottom: 56px;
}
.section__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section__sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(6,6,6,0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.navbar__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 24px;
  height: 68px;
  max-width: 1180px;
  margin: 0 auto;
}
.navbar__logo {
  height: 42px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}
.navbar__brand { flex-shrink: 0; }
.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: 16px;
}
.navbar__links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.3px;
  transition: color 0.2s;
  position: relative;
}
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s;
}
.navbar__links a:hover { color: var(--white); }
.navbar__links a:hover::after { transform: scaleX(1); }

.navbar__wa {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--yellow);
  color: var(--black);
  padding: 9px 20px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 800;
  margin-left: auto;
  transition: background 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.navbar__wa:hover {
  background: #ffc800;
  box-shadow: 0 0 24px rgba(245,184,0,0.4);
}

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 8px;
}
.navbar__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.navbar__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger.is-open span:nth-child(2) { opacity: 0; }
.navbar__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar__mobile {
  display: none;
  flex-direction: column;
  background: rgba(6,6,6,0.99);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.navbar__mobile.is-open { display: flex; }
.navbar__mobile a {
  padding: 15px 24px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}
.navbar__mobile a:hover { color: var(--yellow); background: var(--dim); }
.navbar__mobile-cta {
  background: var(--yellow) !important;
  color: var(--black) !important;
  font-weight: 800 !important;
  text-align: center;
  margin: 12px 16px 16px;
  border-radius: 99px !important;
  border-bottom: none !important;
  justify-content: center;
}

@media (max-width: 900px) {
  .navbar__links { display: none; }
  .navbar__burger { display: flex; }
  .navbar__wa { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.45) saturate(0.8);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.3) 0%,
    rgba(8,8,8,0.1) 40%,
    rgba(8,8,8,0.5) 70%,
    rgba(8,8,8,0.95) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 860px;
}
.hero__logo-wrap {
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
}
.hero__logo {
  height: 80px;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  animation: fadeDown 0.8s ease forwards;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow-dim);
  border: 1px solid rgba(245,184,0,0.3);
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 24px;
  animation: fadeDown 0.9s 0.1s ease both;
}
.hero__title {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 20px;
  animation: fadeUp 0.9s 0.2s ease both;
}
.hero__title-line {
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 0.95;
  color: var(--white);
  text-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.hero__title-line--accent {
  color: var(--yellow);
  -webkit-text-stroke: 2px var(--yellow-dark);
  text-shadow: 0 0 60px rgba(245,184,0,0.4);
}
.hero__sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 36px;
  animation: fadeUp 0.9s 0.3s ease both;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
  animation: fadeUp 0.9s 0.4s ease both;
}
.hero__info {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.5s ease both;
}
.hero__info span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.4);
  animation: bounce 2s infinite;
}

/* ---- Animations ---- */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--yellow);
  padding: 0;
}
.stats-bar__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  gap: 2px;
  position: relative;
}
.stat-item__num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}
.stat-item__unit {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--black);
}
.stat-item:first-child .stat-item__num,
.stat-item:last-child .stat-item__num {
  display: flex;
  align-items: baseline;
}
.stat-item__label {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(0,0,0,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  background: rgba(0,0,0,0.15);
  margin: 16px 0;
  align-self: stretch;
}

/* ============================================================
   PLANS / PRECIOS
   ============================================================ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}
.plan-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--border2);
}
.plan-card--featured {
  border-color: var(--yellow);
  background: linear-gradient(160deg, #1e1a00 0%, var(--card) 60%);
  box-shadow: 0 0 40px rgba(245,184,0,0.12);
}
.plan-card--featured:hover {
  box-shadow: 0 0 60px rgba(245,184,0,0.2);
}
.plan-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 99px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.plan-card__header { margin-bottom: 24px; }
.plan-card__name {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.plan-card--featured .plan-card__name { color: var(--yellow); }
.plan-card__price-wrap { display: flex; align-items: baseline; gap: 4px; }
.plan-card__price {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.plan-card__period {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.plan-card__save {
  display: inline-block;
  background: var(--yellow-dim);
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  margin-top: 8px;
  border: 1px solid rgba(245,184,0,0.2);
}
.plan-card__features {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-card__features li {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.plan-card__features li::before { display: none; }
.plan-card--featured .plan-card__features li { color: rgba(255,255,255,0.75); }
.plan-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--card2);
  color: var(--white);
  border: 1px solid var(--border2);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.plan-card__btn:hover {
  background: var(--border2);
  border-color: var(--yellow);
  color: var(--yellow);
}
.plan-card__btn--featured {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.plan-card__btn--featured:hover {
  background: #ffc800;
  color: var(--black);
  box-shadow: 0 0 24px rgba(245,184,0,0.4);
}
.plans-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--border2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.service-card__icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
.gallery-item--wide {
  grid-column: span 2;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--card);
}
.gallery-item--wide {
  aspect-ratio: 16/9;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.6);
}
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s;
  background: rgba(245,184,0,0.08);
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay svg {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

/* ============================================================
   SCHEDULE + CTA
   ============================================================ */
.schedule-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}
.schedule-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 32px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.schedule-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.schedule-row:last-child { border-bottom: none; }
.schedule-row:hover { background: var(--card); }
.schedule-day {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}
.schedule-time {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--yellow);
}
.schedule-open {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.schedule-open__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.6);
  flex-shrink: 0;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 8px rgba(34,197,94,0.6); }
  50%       { box-shadow: 0 0 16px rgba(34,197,94,0.9); }
}

.schedule-cta__card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.schedule-cta__logo {
  height: 56px;
  width: auto;
  border-radius: 8px;
}
.schedule-cta__text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.schedule-cta__text strong { color: var(--white); }
.schedule-cta__phone {
  font-size: 0.8rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:has(.faq-q[aria-expanded="true"]) { border-color: var(--yellow); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: var(--card);
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: background 0.2s, color 0.2s;
}
.faq-q:hover { background: var(--card2); }
.faq-q[aria-expanded="true"] { color: var(--yellow); background: var(--card2); }
.faq-icon {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}
.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--yellow);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a.is-open { max-height: 400px; }
.faq-a p {
  padding: 0 20px 18px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  background: var(--card2);
}
.faq-a p strong { color: var(--yellow); }

/* ============================================================
   MAP
   ============================================================ */
.map-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.map-info {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.map-info__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.map-info__item svg { color: var(--yellow); flex-shrink: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__logo {
  height: 52px;
  width: auto;
  border-radius: 8px;
  margin-bottom: 16px;
}
.footer__brand p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer__socials {
  display: flex;
  gap: 12px;
}
.footer__socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer__socials a:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.footer__col h4 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col ul li,
.footer__col ul a {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  transition: color 0.2s;
}
.footer__col ul a:hover { color: var(--yellow); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p {
  font-size: 0.75rem;
  color: var(--text-dim);
}
.footer__bottom a {
  color: var(--yellow);
  font-weight: 600;
  transition: opacity 0.2s;
}
.footer__bottom a:hover { opacity: 0.8; }
.footer__legal {
  display: flex;
  gap: 20px;
}
.footer__legal a {
  font-size: 0.72rem;
  color: var(--text-dim);
}
.footer__legal a:hover { color: var(--yellow); }

/* ============================================================
   WA FLOAT
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s, bottom 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(37,211,102,0.65);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.95);
  cursor: pointer;
}
.lightbox__content {
  position: relative;
  z-index: 1;
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: lightboxIn 0.3s ease;
}
@keyframes lightboxIn {
  from { transform: scale(0.94); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.lightbox__content img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 16px 64px rgba(0,0,0,0.8);
}
.lightbox__caption {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}
.lightbox__close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.2s;
}
.lightbox__close:hover { background: rgba(255,255,255,0.2); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 800;
  background: var(--card2);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 400px;
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__content { padding: 20px; }
.cookie-banner__content p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.6;
}
.cookie-banner__content a { color: var(--yellow); }
.cookie-banner__actions { display: flex; gap: 10px; }
.cookie-banner__btn {
  flex: 1;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  border: none;
  background: var(--yellow);
  color: var(--black);
  transition: background 0.2s;
}
.cookie-banner__btn:hover { background: #ffc800; }
.cookie-banner__btn--outline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border2);
}
.cookie-banner__btn--outline:hover { border-color: var(--border); color: var(--text); background: var(--card); }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page { padding: 120px 0 80px; }
.legal-page h1 { font-size: 2rem; font-weight: 900; color: var(--white); margin-bottom: 8px; }
.legal-page .legal-meta { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 40px; }
.legal-page h2 { font-size: 1.1rem; font-weight: 700; color: var(--yellow); margin: 32px 0 12px; }
.legal-page p, .legal-page li { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; }
.legal-page ul { padding-left: 20px; list-style: disc; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 600; color: var(--yellow); margin-bottom: 32px; transition: gap 0.2s; }
.legal-back:hover { gap: 12px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .schedule-wrap { grid-template-columns: 1fr; gap: 40px; }
  .schedule-cta__card { max-width: 480px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .stat-divider:nth-child(4) { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: span 2; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero__title-line { font-size: clamp(3rem, 14vw, 5rem); }
}

@media (max-width: 480px) {
  .section { padding: 52px 0; }
  .plans-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; aspect-ratio: 4/3; }
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item__num { font-size: 1.9rem; }
  .hero__ctas { flex-direction: column; align-items: center; }
  .hero__ctas .btn { width: 100%; max-width: 320px; justify-content: center; }
  .footer__legal { flex-direction: column; gap: 8px; }
  .cookie-banner { left: 12px; right: 12px; max-width: none; }
}
