@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --gold: #d4af37;
  --gold-soft: #f3d57a;
  --gold-deep: #b58a1f;
  --red: #9f0f14;
  --red-2: #d0171d;
  --red-3: #7f0c10;
  --black: #050505;
  --black-soft: #0b0b0d;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.82);
  --border-gold: rgba(212, 175, 55, 0.45);
  --shadow-gold: 0 0 25px rgba(212, 175, 55, 0.14);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #000;
  color: #fff;
  padding-top: 92px;
}

body.menu-open {
  overflow: hidden;
}

/* =========================
   HERO
========================= */
.hero-confesionario {
  position: relative;
  min-height: calc(100vh - 92px);
  height: calc(100vh - 92px);
  overflow: hidden;
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.32),
      rgba(0, 0, 0, 0.82)
    ),
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.16),
      rgba(0, 0, 0, 0.62)
    ),
    url("../img/hero-confe.JPG") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
      circle at 18% 24%,
      rgba(160, 15, 20, 0.16),
      transparent 30%
    ),
    radial-gradient(circle at 84% 20%, rgba(212, 175, 55, 0.1), transparent 22%),
    linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.05));
}

/* =========================
   HEADER
========================= */
.hero-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 18px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.35)
  );
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.hero-header.scrolled {
  padding: 12px 0;
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.hero-header__container {
  width: min(92%, 1320px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* =========================
   LOGO
========================= */
.hero-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--gold-soft);
  z-index: 60;
  line-height: 1;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.logo-img {
  width: 100%;
}

.logo-img img {
  width: 30%;
}

.hero-logo:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.hero-logo__top {
  font-size: 0.85rem;
  color: var(--gold-soft);
  margin-bottom: 5px;
}

.hero-logo__text {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--gold-soft);
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.08),
    0 0 18px rgba(212, 175, 55, 0.04);
}

.hero-logo__sub {
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--gold);
  margin-top: 3px;
  text-transform: uppercase;
}

/* =========================
   NAV DESKTOP
========================= */
.hero-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-nav__list {
  display: flex;
  gap: 30px;
  list-style: none;
}

.hero-nav__list a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.hero-nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, var(--red-2), var(--gold));
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
  transition: width 0.3s ease;
}

.hero-nav__list a:hover,
.hero-nav__list a.active {
  color: var(--gold-soft);
}

.hero-nav__list a:hover::after,
.hero-nav__list a.active::after {
  width: 100%;
}

/* CTA HEADER */
.hero-header__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.5);
  padding: 12px 22px;
  border-radius: 999px;
  color: var(--gold-soft);
  text-decoration: none;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  background: linear-gradient(
    to bottom,
    rgba(18, 18, 18, 0.72),
    rgba(5, 5, 5, 0.58)
  );
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 0 rgba(212, 175, 55, 0);
  transition: transform 0.3s ease, color 0.3s ease, border-color 0.3s ease,
    box-shadow 0.3s ease, background 0.3s ease;
}

.hero-header__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-110%);
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(243, 213, 122, 0.08) 35%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(243, 213, 122, 0.08) 65%,
    transparent 100%
  );
  transition: transform 0.6s ease;
}

.hero-header__cta:hover {
  color: #fff;
  border-color: rgba(243, 213, 122, 0.8);
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 18px rgba(212, 175, 55, 0.12), 0 10px 24px rgba(0, 0, 0, 0.22);
}

.hero-header__cta:hover::before {
  transform: translateX(110%);
}

/* =========================
   HERO CONTENT
========================= */
.hero-content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 55px 20px 40px;
  overflow: hidden;
}

.hero-content__inner {
  max-width: 1100px;
  width: 100%;
  overflow: hidden;
}

.hero-content__icon {
  display: inline-block;
  font-size: 1.1rem;
  color: var(--gold-soft);
  margin-bottom: 16px;
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.18);
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 100px;
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: clamp(1px, 0.2vw, 2px);
  color: var(--gold-soft);
  text-align: center;
  width: 100%;
  overflow-wrap: break-word;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.08), 0 0 32px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  margin-top: 14px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}

.hero-divider {
  width: 92px;
  height: 1px;
  margin: 18px auto;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.22);
}

.hero-tags {
  margin-top: 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-soft);
  line-height: 1.75;
}

.hero-tags span {
  margin: 0 10px;
  color: var(--gold);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* BOTONES HERO */
.btn-hero {
  position: relative;
  overflow: hidden;
  min-width: 220px;
  padding: 16px 26px;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease,
    color 0.3s ease, background 0.3s ease;
}

.btn-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-110%);
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 35%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0.08) 65%,
    transparent 100%
  );
  transition: transform 0.65s ease;
}

.btn-hero:hover::before {
  transform: translateX(110%);
}

.btn-hero--primary {
  background: linear-gradient(to right, var(--red-3), var(--red-2));
  color: #fff;
  border: 1px solid rgba(255, 110, 110, 0.16);
  box-shadow: 0 10px 24px rgba(159, 15, 20, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.btn-hero--primary:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 16px 30px rgba(159, 15, 20, 0.32),
    0 0 20px rgba(208, 23, 29, 0.14);
}

.btn-hero--secondary {
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: var(--gold-soft);
  background: rgba(0, 0, 0, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 0 rgba(212, 175, 55, 0);
}

.btn-hero--secondary:hover {
  color: #fff;
  border-color: rgba(243, 213, 122, 0.76);
  background: rgba(12, 12, 12, 0.5);
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.12), 0 12px 24px rgba(0, 0, 0, 0.18);
}

/* =========================
   BOTÓN HAMBURGUESA
========================= */
.menu-btn {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.48);
  background: rgba(0, 0, 0, 0.22);
  position: relative;
  cursor: pointer;
  z-index: 1001;
  transition: transform 0.25s ease, border-color 0.25s ease,
    box-shadow 0.25s ease, background 0.25s ease;
}

.menu-btn:hover {
  transform: scale(1.04);
  border-color: rgba(243, 213, 122, 0.82);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.12);
}

.menu-btn span {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  background: var(--gold-soft);
  transform: translateX(-50%);
  transition: 0.3s ease;
}

.menu-btn span:nth-child(1) {
  top: 17px;
}

.menu-btn span:nth-child(2) {
  top: 25px;
}

.menu-btn span:nth-child(3) {
  top: 33px;
}

.menu-btn.is-active span:nth-child(1) {
  top: 25px;
  transform: translateX(-50%) rotate(45deg);
}

.menu-btn.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.is-active span:nth-child(3) {
  top: 25px;
  transform: translateX(-50%) rotate(-45deg);
}

/* =========================
   EXPERIENCE SECTION
========================= */
.experience-section {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(
      circle at 15% 20%,
      rgba(159, 15, 20, 0.08),
      transparent 22%
    ),
    radial-gradient(
      circle at 90% 30%,
      rgba(212, 175, 55, 0.06),
      transparent 18%
    ),
    linear-gradient(to bottom, #050505, #080808);
  padding: 80px 0 40px;
  overflow: hidden;
}

.experience-container {
  width: min(92%, 1320px);
  margin: 0 auto;
}

.experience-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1.25fr;
  align-items: center;
  gap: 26px;
  min-height: 420px;
  padding: 18px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: linear-gradient(
      to right,
      rgba(12, 12, 12, 0.88),
      rgba(7, 7, 7, 0.94)
    ),
    rgba(0, 0, 0, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.015),
    0 12px 30px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  margin-top: 20px;
}

.experience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      circle at 78% 50%,
      rgba(212, 175, 55, 0.06),
      transparent 22%
    ),
    linear-gradient(to right, transparent 55%, rgba(212, 175, 55, 0.03) 100%);
}

.experience-card__image {
  position: relative;
  height: 100%;
  min-height: 380px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  overflow: hidden;
  background: #111;
}

.experience-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.experience-card:hover .experience-card__image img {
  transform: scale(1.04);
}

.experience-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 8px 8px 8px 0;
}

.experience-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.experience-card__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f7f1df;
  margin-bottom: 18px;
}

.experience-card__text {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 10px;
}

.experience-card__text strong {
  color: var(--gold-soft);
  font-weight: 600;
}

/* =========================
   WEEKLY EVENTS SLIDER
========================= */
.weekly-events {
  position: relative;
  width: 100%;
  background: #050505;
  overflow: hidden;
  margin-top: 30px;
}

.weekly-events__slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
}

.weekly-events__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.weekly-events__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.03);
  transition: opacity 0.9s ease, visibility 0.9s ease, transform 1.2s ease;
}

.weekly-events__slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.weekly-events__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.weekly-events__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.75)
    ),
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.15),
      rgba(0, 0, 0, 0.55)
    ),
    radial-gradient(circle at 20% 30%, rgba(159, 15, 20, 0.12), transparent 25%),
    radial-gradient(
      circle at 85% 20%,
      rgba(212, 175, 55, 0.08),
      transparent 20%
    );
  z-index: 1;
}

.weekly-events__content {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(92%, 1200px);
  text-align: center;
  padding: 0 20px;
}

.weekly-events__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-soft);
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.16);
}

.weekly-events__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff6df;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.35), 0 0 38px rgba(0, 0, 0, 0.3);
}

.weekly-events__subtitle {
  max-width: 820px;
  margin: 18px auto 0;
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

/* Flechas */
.weekly-events__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: rgba(0, 0, 0, 0.35);
  color: var(--gold-soft);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, background 0.25s ease,
    border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.weekly-events__arrow:hover {
  background: rgba(0, 0, 0, 0.55);
  border-color: rgba(243, 213, 122, 0.85);
  color: #fff;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.14);
}

.weekly-events__arrow--prev {
  left: 24px;
}

.weekly-events__arrow--next {
  right: 24px;
}

/* Dots */
.weekly-events__dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
}

.weekly-events__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.55);
  background: transparent;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease,
    border-color 0.25s ease, box-shadow 0.25s ease;
}

.weekly-events__dot.active {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: scale(1.1);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.22);
}

/* =========================
   SECTION HEADER
========================= */
.section-header {
  width: 100%;
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}

.section-header__eyebrow {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.section-header__divider {
  width: 80px;
  height: 1px;
  margin: 16px auto 0;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
}

.section-header--light .section-header__title {
  color: #fff;
}

.section-header--light .section-header__eyebrow {
  color: var(--gold-soft);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 980px) {
  .experience-section {
    height: auto;
    min-height: auto;
    padding: 70px 0;
  }

  .experience-card {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 18px;
  }

  .experience-card__image {
    min-height: 260px;
    height: 260px;
  }

  .experience-card__content {
    padding: 4px 4px 4px 0;
  }

  .experience-card__title {
    font-size: clamp(1.8rem, 5vw, 2.7rem);
  }
}

@media (max-width: 920px) {
  body {
    padding-top: 86px;
  }

  .hero-confesionario {
    min-height: calc(100vh - 86px);
    height: calc(100vh - 86px);
  }

  .menu-btn {
    display: block;
    flex-shrink: 0;
  }

  .hero-nav {
    position: fixed;
    inset: 0;
    height: 100vh;
    width: 100%;
    background: radial-gradient(
        circle at top right,
        rgba(159, 15, 20, 0.16),
        transparent 22%
      ),
      linear-gradient(to bottom, rgba(0, 0, 0, 0.98), rgba(8, 8, 8, 0.98));
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 34px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 1000;
  }

  .hero-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .hero-nav__list {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .hero-nav__list a {
    font-size: 1rem;
    letter-spacing: 3px;
  }

  .hero-header__cta {
    margin-top: 8px;
    padding: 15px 28px;
    font-size: 0.9rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-hero {
    width: 100%;
    max-width: 320px;
  }

  .weekly-events__slider {
    height: 88vh;
    min-height: 620px;
  }

  .weekly-events__arrow {
    width: 54px;
    height: 54px;
    font-size: 1.8rem;
  }

  .weekly-events__arrow--prev {
    left: 16px;
  }

  .weekly-events__arrow--next {
    right: 16px;
  }

  .weekly-events__title {
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .hero-title {
    font-size: 35px;
    letter-spacing: 1px;
  }
}

@media (max-width: 768px) {
  .hero-header {
    padding: 14px 0;
  }

  .hero-header.scrolled {
    padding: 10px 0;
  }

  .logo-img img {
    width: 90%;
  }

  .hero-logo__text {
    font-size: 1.8rem;
  }

  .hero-logo__sub {
    font-size: 0.62rem;
    letter-spacing: 3px;
  }

  .hero-content {
    padding: 120px 18px 36px;
  }

  .hero-content__inner {
    max-width: 100%;
  }

  .hero-title {
    font-size: 35px;
    line-height: 0.96;
  }

  .hero-subtitle {
    font-size: 0.92rem;
    letter-spacing: 1.4px;
    line-height: 1.45;
  }

  .hero-tags {
    font-size: 0.78rem;
    letter-spacing: 1.2px;
    max-width: 92%;
    margin-inline: auto;
  }

  .experience-section {
    padding: 56px 0;
  }

  .experience-card {
    padding: 14px;
  }

  .experience-card__image {
    min-height: 220px;
    height: 220px;
  }

  .experience-card__eyebrow {
    font-size: 0.92rem;
    margin-bottom: 8px;
  }

  .experience-card__title {
    margin-bottom: 14px;
    font-size: clamp(1.6rem, 7vw, 2.3rem);
  }

  .experience-card__text {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .weekly-events__slider {
    height: 82vh;
    min-height: 560px;
  }

  .weekly-events__content {
    width: 94%;
    padding: 0 10px;
  }

  .weekly-events__eyebrow {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .weekly-events__title {
    font-size: clamp(2.4rem, 11vw, 4rem);
    line-height: 0.96;
  }

  .weekly-events__subtitle {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 12px;
  }

  .weekly-events__arrow {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }

  .weekly-events__dots {
    bottom: 22px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 82px;
  }

  .hero-confesionario {
    min-height: calc(100vh - 82px);
    height: calc(100vh - 82px);
  }

  .hero-header__container {
    width: 92%;
  }

  .hero-logo__top {
    font-size: 0.72rem;
  }

  .hero-logo__text {
    font-size: 1.45rem;
    letter-spacing: 1px;
  }

  .hero-logo__sub {
    font-size: 0.58rem;
    letter-spacing: 2.8px;
  }

  .menu-btn {
    width: 48px;
    height: 48px;
  }

  .menu-btn span {
    width: 20px;
  }

  .menu-btn span:nth-child(1) {
    top: 15px;
  }

  .menu-btn span:nth-child(2) {
    top: 23px;
  }

  .menu-btn span:nth-child(3) {
    top: 31px;
  }

  .menu-btn.is-active span:nth-child(1),
  .menu-btn.is-active span:nth-child(3) {
    top: 23px;
  }

  .hero-content {
    padding: 110px 16px 32px;
  }

  .hero-content__icon {
    margin-bottom: 12px;
  }

  .hero-title {
    font-size: 35px;
    letter-spacing: 0.5px;
    line-height: 1;
  }

  .hero-subtitle {
    font-size: 0.82rem;
    letter-spacing: 1px;
  }

  .hero-divider {
    width: 72px;
    margin: 16px auto;
  }

  .hero-tags {
    font-size: 0.72rem;
    letter-spacing: 0.9px;
  }

  .hero-tags span {
    margin: 0 6px;
  }

  .btn-hero {
    min-width: unset;
    width: 100%;
    max-width: 310px;
    padding: 15px 20px;
    font-size: 0.86rem;
  }

  .experience-container {
    width: 92%;
  }

  .experience-card {
    padding: 12px;
    gap: 14px;
  }

  .experience-card__image {
    min-height: 190px;
    height: 190px;
  }

  .experience-card__eyebrow {
    font-size: 0.85rem;
    letter-spacing: 1.2px;
  }

  .experience-card__title {
    font-size: clamp(1.45rem, 8vw, 2rem);
    line-height: 1;
  }

  .experience-card__text {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .weekly-events__slider {
    height: 76vh;
    min-height: 500px;
  }

  .weekly-events__eyebrow {
    font-size: 0.9rem;
    letter-spacing: 1.2px;
  }

  .weekly-events__title {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .weekly-events__subtitle {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .weekly-events__arrow {
    width: 42px;
    height: 42px;
    font-size: 1.3rem;
  }

  .weekly-events__arrow--prev {
    left: 10px;
  }

  .weekly-events__arrow--next {
    right: 10px;
  }
}

/* =========================
   GALLERY SHOWCASE
========================= */
/* =========================
   GALLERY 3D
========================= */
.gallery-3d {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(
      circle at 15% 20%,
      rgba(159, 15, 20, 0.08),
      transparent 22%
    ),
    radial-gradient(
      circle at 88% 18%,
      rgba(212, 175, 55, 0.07),
      transparent 20%
    ),
    linear-gradient(to bottom, #050505, #090909);
  padding: 90px 0 70px;
  overflow: hidden;
}

.gallery-3d__stage {
  position: relative;
  width: min(96%, 1400px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.gallery-3d__viewport {
  position: relative;
  width: 100%;
  height: 68vh;
  min-height: 540px;
  perspective: 1600px;
  overflow: hidden;
}

.gallery-3d__track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.gallery-3d__card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(62vw, 780px);
  height: min(72vh, 520px);
  transform-style: preserve-3d;
  border: 1px solid rgba(212, 175, 55, 0.2);
  overflow: hidden;
  background: #111;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.015);
  transition: transform 0.75s ease, opacity 0.75s ease, filter 0.75s ease,
    z-index 0s linear 0.3s;
}

.gallery-3d__card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.gallery-3d__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.08)),
    linear-gradient(to right, rgba(0, 0, 0, 0.18), transparent);
  z-index: 1;
}

.gallery-3d__content {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 2;
}

.gallery-3d__tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 13px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: rgba(0, 0, 0, 0.28);
  color: var(--gold-soft);
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  backdrop-filter: blur(5px);
}

.gallery-3d__content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 2.4vw, 2.7rem);
  line-height: 0.95;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff4da;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.35);
}

.gallery-3d__card.is-active {
  opacity: 1;
  filter: blur(0);
  z-index: 5;
  transform: translate(-50%, -50%) translateZ(0) scale(1);
}

.gallery-3d__card.is-prev {
  opacity: 0.68;
  filter: blur(1px);
  z-index: 4;
  transform: translate(-128%, -50%) rotateY(32deg) scale(0.84);
}

.gallery-3d__card.is-next {
  opacity: 0.68;
  filter: blur(1px);
  z-index: 4;
  transform: translate(28%, -50%) rotateY(-32deg) scale(0.84);
}

.gallery-3d__card.is-hidden-left {
  opacity: 0;
  filter: blur(3px);
  z-index: 1;
  transform: translate(-180%, -50%) rotateY(42deg) scale(0.7);
  pointer-events: none;
}

.gallery-3d__card.is-hidden-right {
  opacity: 0;
  filter: blur(3px);
  z-index: 1;
  transform: translate(80%, -50%) rotateY(-42deg) scale(0.7);
  pointer-events: none;
}

/* Flechas */
.gallery-3d__arrow {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: rgba(0, 0, 0, 0.35);
  color: var(--gold-soft);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, background 0.25s ease,
    border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.gallery-3d__arrow:hover {
  transform: scale(1.05);
  background: rgba(0, 0, 0, 0.55);
  border-color: rgba(243, 213, 122, 0.82);
  color: #fff;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.14);
}

/* Dots */
.gallery-3d__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
}

.gallery-3d__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.55);
  background: transparent;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.gallery-3d__dot.is-active {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.18);
}

@media (max-width: 1024px) {
  .gallery-3d__viewport {
    height: 62vh;
    min-height: 480px;
  }

  .gallery-3d__card {
    width: min(72vw, 700px);
    height: min(62vh, 470px);
  }

  .gallery-3d__card.is-prev {
    transform: translate(-118%, -50%) rotateY(26deg) scale(0.8);
  }

  .gallery-3d__card.is-next {
    transform: translate(18%, -50%) rotateY(-26deg) scale(0.8);
  }
}

@media (max-width: 768px) {
  .gallery-3d {
    min-height: auto;
    padding: 70px 0 60px;
  }

  .gallery-3d__stage {
    width: 100%;
    padding: 0 10px;
    gap: 0;
  }

  .gallery-3d__viewport {
    height: 56vh;
    min-height: 400px;
  }

  .gallery-3d__card {
    width: 78vw;
    height: 50vh;
    min-height: 340px;
  }

  .gallery-3d__card.is-prev,
  .gallery-3d__card.is-next {
    opacity: 0.12;
    filter: blur(2px);
  }

  .gallery-3d__card.is-prev {
    transform: translate(-82%, -50%) scale(0.8);
  }

  .gallery-3d__card.is-next {
    transform: translate(-18%, -50%) scale(0.8);
  }

  .gallery-3d__content {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .gallery-3d__content h3 {
    font-size: clamp(1.1rem, 5.8vw, 1.7rem);
    line-height: 0.95;
  }

  .gallery-3d__tag {
    font-size: 0.62rem;
    padding: 5px 9px;
    margin-bottom: 8px;
  }

  .gallery-3d__arrow {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    z-index: 8;
  }

  .gallery-3d__arrow--prev {
    left: 8px;
  }

  .gallery-3d__arrow--next {
    right: 8px;
  }
}

@media (max-width: 480px) {
  .gallery-3d {
    padding: 60px 0 50px;
  }

  .gallery-3d__viewport {
    height: 50vh;
    min-height: 340px;
  }

  .gallery-3d__card {
    width: 76vw;
    height: 44vh;
    min-height: 300px;
  }

  .gallery-3d__card.is-prev {
    transform: translate(-78%, -50%) scale(0.78);
  }

  .gallery-3d__card.is-next {
    transform: translate(-22%, -50%) scale(0.78);
  }

  .gallery-3d__content {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .gallery-3d__content h3 {
    font-size: clamp(1rem, 6vw, 1.4rem);
  }

  .gallery-3d__tag {
    font-size: 0.58rem;
    padding: 4px 8px;
    letter-spacing: 1.2px;
  }

  .gallery-3d__arrow {
    width: 36px;
    height: 36px;
    font-size: 1.05rem;
  }

  .gallery-3d__arrow--prev {
    left: 6px;
  }

  .gallery-3d__arrow--next {
    right: 6px;
  }
}

/* =========================
   VIP RESERVATIONS
========================= */
/* =========================
   VIP RESERVATIONS
========================= */
.vip-reservations {
  position: relative;
  background: radial-gradient(
      circle at 18% 22%,
      rgba(159, 15, 20, 0.08),
      transparent 24%
    ),
    radial-gradient(
      circle at 85% 25%,
      rgba(212, 175, 55, 0.06),
      transparent 18%
    ),
    linear-gradient(to bottom, #050505, #080808);
  padding: 90px 0;
  overflow: hidden;
}

.vip-reservations__container {
  width: min(92%, 1320px);
  margin: 0 auto;
}

.vip-reservations__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(520px, 1.2fr);
  gap: 34px;
  align-items: center;
  padding: 38px 42px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: linear-gradient(
    to right,
    rgba(8, 8, 8, 0.92),
    rgba(10, 10, 10, 0.96)
  );
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.015),
    0 14px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.vip-reservations__card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to right,
    transparent 58%,
    rgba(159, 15, 20, 0.1) 100%
  );
}

.vip-reservations__info {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.vip-reservations__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
}

.vip-reservations__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 3vw, 3.5rem);
  line-height: 0.95;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff1d7;
  margin-bottom: 18px;
}

.vip-reservations__text {
  max-width: 560px;
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.84);
}

.vip-reservations__options {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.vip-reservations__option {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 18px 14px;
  border: 1px solid rgba(212, 175, 55, 0.14);
  background: rgba(255, 255, 255, 0.01);
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease,
    box-shadow 0.3s ease;
}

.vip-reservations__option:hover {
  transform: translateY(-4px);
  border-color: rgba(243, 213, 122, 0.32);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.08);
}

.vip-reservations__icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
  transition: transform 0.3s ease, color 0.3s ease;
}

.vip-reservations__icon svg {
  width: 100%;
  height: 100%;
}

.vip-reservations__option:hover .vip-reservations__icon {
  transform: scale(1.08);
  color: #fff;
}

.vip-reservations__label {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.45;
  color: #f4ead2;
}

/* =========================
   FIX BOTÓN (ALINEACIÓN PERFECTA)
========================= */
.vip-reservations__cta {
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: stretch;
  align-self: stretch;
  margin-top: 4px;
  cursor: pointer;
  text-align: center;
}

.vip-reservations__cta.btn-hero,
.vip-reservations__cta.btn-hero.btn-hero--primary {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 18px;
  padding-right: 18px;
}

/* Opcional: altura consistente con hero */
.vip-reservations__cta.btn-hero {
  min-height: 64px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .vip-reservations__card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 30px 28px;
  }

  .vip-reservations__info {
    max-width: 100%;
  }

  .vip-reservations__options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vip-reservations__cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .vip-reservations {
    padding: 70px 0;
  }

  .vip-reservations__container {
    width: 92%;
  }

  .vip-reservations__card {
    padding: 22px 18px;
    gap: 22px;
  }

  .vip-reservations__title {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
  }

  .vip-reservations__text {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .vip-reservations__options {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .vip-reservations__option {
    min-height: 96px;
    padding: 14px 10px;
  }

  .vip-reservations__label {
    font-size: 0.82rem;
  }

  .vip-reservations__cta {
    min-height: 58px;
  }
}

@media (max-width: 480px) {
  .vip-reservations__options {
    grid-template-columns: 1fr;
  }

  .vip-reservations__cta {
    grid-column: 1 / -1;
  }

  .vip-reservations__option {
    min-height: 82px;
  }
}
/* extra */
/* 🔥 FIX DESALINEACIÓN BOTÓN */
.vip-reservations__cta {
  grid-column: 1 / -1;

  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;
  max-width: 100%;

  margin-top: 10px;

  /* 🔥 CLAVE */
  justify-self: center;
}

/* 🔥 CORRECCIÓN DEL BOTÓN HERO (seguro tiene padding raro) */
.vip-reservations__cta.btn-hero {
  width: 100%;
  max-width: 100%;

  margin: 0 auto; /* 👈 centra SIEMPRE */
  display: flex;

  padding-left: 20px;
  padding-right: 20px;
}

/* 🔥 EXTRA: evitar overflow visual */
.vip-reservations__options {
  width: 100%;
}
/* =========================
   RESERVATION MODAL
========================= */
.reservation-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.reservation-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.reservation-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.reservation-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(100%, 720px);
  max-height: min(90vh, 860px);
  overflow-y: auto;
  padding: 34px 30px 28px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.98),
    rgba(6, 6, 6, 0.98)
  );
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.reservation-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--gold-soft);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s ease, color 0.25s ease;
}

.reservation-modal__close:hover {
  color: #fff;
  transform: scale(1.08);
}

.reservation-modal__header {
  margin-bottom: 24px;
  text-align: center;
}

.reservation-modal__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
}

.reservation-modal__title {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: #fff1d7;
}

.reservation-modal__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Inter", sans-serif;
  font-size: 0.98rem;
  line-height: 1.7;
}

.reservation-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.reservation-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reservation-form__group label {
  color: var(--gold-soft);
  font-family: "Inter", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.reservation-form__group input,
.reservation-form__group select {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 0.96rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease,
    background 0.25s ease;
  box-sizing: border-box;
}

.reservation-form__group input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.reservation-form__group input:focus,
.reservation-form__group select:focus {
  border-color: rgba(243, 213, 122, 0.55);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

/* FIX SELECT */
.reservation-form__group select {
  appearance: auto;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  cursor: pointer;
}

.reservation-form__group select option {
  background: #ffffff;
  color: #111111;
}

.reservation-form__group select option:first-child {
  color: #555555;
}

.reservation-form__error {
  min-height: 22px;
  margin: 14px 0 0;
  color: #ff8a8a;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  text-align: center;
}

.reservation-form__actions {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.reservation-form__actions .btn-hero {
  min-width: 260px;
  border: 0;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .reservation-modal {
    padding: 16px;
  }

  .reservation-modal__dialog {
    padding: 28px 18px 22px;
  }

  .reservation-form__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .reservation-form__actions .btn-hero {
    width: 100%;
    min-width: 0;
  }
}

/* =========================
   LOCATION & HOURS
========================= */
.location-hours {
  position: relative;
  padding: 110px 0;
  background: radial-gradient(
      circle at 15% 20%,
      rgba(212, 175, 55, 0.06),
      transparent 22%
    ),
    radial-gradient(circle at 85% 75%, rgba(159, 15, 20, 0.14), transparent 26%),
    linear-gradient(180deg, #070707 0%, #0b0b0b 100%);
  overflow: hidden;
}

.location-hours__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.015) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.3;
}

.location-hours__container {
  position: relative;
  z-index: 2;
  width: min(92%, 1320px);
  margin: 0 auto;
}

.location-hours__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 1.08fr);
  gap: 34px;
  align-items: stretch;
}

.location-hours__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 0;
}

.location-hours__title {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: #fff0d2;
}

.location-hours__text {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.75;
}

.location-hours__schedule {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.location-hours__schedule-card {
  padding: 18px 20px;
  border-left: 3px solid rgba(212, 175, 55, 0.45);
  background: rgba(255, 255, 255, 0.03);
}

.location-hours__schedule-card--highlight {
  border-left-color: rgba(208, 23, 29, 0.9);
  background: rgba(159, 15, 20, 0.18);
}

.location-hours__mini-info {
  margin-bottom: 26px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.location-hours__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* =========================
   MAPA DESKTOP
========================= */
.location-hours__map-wrap {
  display: flex;
}

.location-hours__map-card {
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  background: rgba(255, 255, 255, 0.02);
}

.location-hours__map-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(212, 175, 55, 0.08);
  transform: translate(10px, 10px);
  z-index: -1;
}

.location-hours__map-overlay {
  margin-bottom: 12px;
}

.location-hours__map-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.location-hours__map-frame iframe {
  width: 100%;
  min-height: 520px;
  display: block;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .location-hours__grid {
    grid-template-columns: 1fr;
  }
}

/* 🔥 AQUÍ ESTÁ LA SOLUCIÓN REAL */
@media (max-width: 768px) {
  .location-hours__container {
    width: 92%;
  }

  /* CLAVE: igualar ancho visual que botones */
  .location-hours__map-card {
    width: calc(100% - 16px);
    margin: 0 auto;
    padding: 0;
  }

  /* eliminar decoración que rompe alineación */
  .location-hours__map-card::before {
    display: none;
  }

  /* borde pasa al frame */
  .location-hours__map-frame {
    border: 1px solid rgba(212, 175, 55, 0.16);
  }

  .location-hours__map-frame iframe {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .location-hours__map-card {
    width: calc(100% - 12px);
    margin: 0 auto;
  }

  .location-hours__map-frame iframe {
    min-height: 240px;
  }
}
/* =========================
   SOCIAL CONTACT
========================= */
.social-contact {
  position: relative;
  padding: 110px 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(212, 175, 55, 0.05),
      transparent 20%
    ),
    radial-gradient(circle at 80% 80%, rgba(159, 15, 20, 0.12), transparent 24%),
    linear-gradient(180deg, #050505 0%, #090909 100%);
  overflow: hidden;
}

.social-contact__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.015) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.22;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

.social-contact__container {
  position: relative;
  z-index: 2;
}

.social-contact__intro {
  max-width: 700px;
  margin: 0 auto 34px;
  text-align: center;
}

.social-contact__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
}

.social-contact__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.social-contact__card {
  position: relative;
  min-height: 300px;
  padding: 34px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.015)
  );
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  transition: transform 0.35s ease, border-color 0.35s ease,
    box-shadow 0.35s ease, background 0.35s ease;
}

.social-contact__card::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1),
    transparent 58%
  );
  transform: scale(0.7) translateY(30px);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.social-contact__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 45%,
    transparent 70%
  );
  transform: translateX(-130%);
  transition: transform 0.8s ease;
}

.social-contact__glow {
  position: absolute;
  inset: auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.16;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.social-contact__icon {
  position: relative;
  z-index: 2;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.social-contact__icon svg {
  width: 100%;
  height: 100%;
}

.social-contact__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.social-contact__name {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #fff0d2;
}

.social-contact__handle {
  color: rgba(255, 255, 255, 0.72);
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.4px;
}

/* Hovers */
.social-contact__card:hover {
  transform: translateY(-10px) rotate(-0.5deg);
}

.social-contact__card:hover::before {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.social-contact__card:hover::after {
  transform: translateX(130%);
}

.social-contact__card:hover .social-contact__icon {
  transform: translateY(-4px) scale(1.12) rotate(-8deg);
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.16));
}

.social-contact__card:hover .social-contact__glow {
  transform: scale(1.18);
  opacity: 0.24;
}

/* Variantes */
.social-contact__card--instagram:hover {
  border-color: rgba(255, 120, 180, 0.45);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.34), 0 0 26px rgba(255, 80, 160, 0.14);
}

.social-contact__card--instagram .social-contact__glow {
  background: radial-gradient(circle, rgba(255, 0, 128, 0.9), transparent 70%);
}

.social-contact__card--instagram .social-contact__icon {
  color: #ff6ca8;
}

.social-contact__card--tiktok:hover {
  border-color: rgba(120, 255, 245, 0.34);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.34), 0 0 26px rgba(0, 255, 220, 0.12);
}

.social-contact__card--tiktok .social-contact__glow {
  background: radial-gradient(circle, rgba(0, 255, 220, 0.9), transparent 70%);
}

.social-contact__card--tiktok .social-contact__icon {
  color: #ffffff;
}

.social-contact__card--whatsapp:hover {
  border-color: rgba(80, 255, 160, 0.38);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.34), 0 0 26px rgba(37, 211, 102, 0.14);
}

.social-contact__card--whatsapp .social-contact__glow {
  background: radial-gradient(
    circle,
    rgba(37, 211, 102, 0.95),
    transparent 70%
  );
}

.social-contact__card--whatsapp .social-contact__icon {
  color: #25d366;
}

/* Responsive */
@media (max-width: 1100px) {
  .social-contact__grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto;
  }

  .social-contact__card {
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  .social-contact {
    padding: 80px 0;
  }

  .social-contact__intro {
    margin-bottom: 26px;
  }

  .social-contact__text {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .social-contact__card {
    min-height: 220px;
    padding: 28px 20px 24px;
    gap: 18px;
  }

  .social-contact__icon {
    width: 72px;
    height: 72px;
  }

  .social-contact__name {
    font-size: 1.7rem;
  }

  .social-contact__handle {
    font-size: 0.88rem;
  }
}

@media (max-width: 480px) {
  .social-contact {
    padding: 68px 0;
  }

  .social-contact__card {
    min-height: 200px;
    padding: 24px 16px 20px;
  }

  .social-contact__icon {
    width: 64px;
    height: 64px;
  }

  .social-contact__name {
    font-size: 1.5rem;
  }

  .social-contact__handle {
    font-size: 0.84rem;
  }
}

/* =========================
   FOOTER CLEAN VERTICAL
========================= */
.site-footer {
  position: relative;
  padding: 56px 0 22px;
  background: linear-gradient(180deg, #050505 0%, #080808 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.site-footer__container {
  position: relative;
}

.site-footer__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.site-footer__brand,
.site-footer__info-block,
.site-footer__social-block {
  width: 100%;
  max-width: 720px;
  padding: 0 0 28px;
  margin: 0 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer__logo-link {
  display: inline-block;
  margin-bottom: 14px;
}

.site-footer__logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  display: block;
}

.site-footer__text {
  margin: 0 auto;
  max-width: 460px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Inter", sans-serif;
  font-size: 0.94rem;
  line-height: 1.75;
}

.site-footer__title {
  margin: 0 0 14px;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.site-footer__info-block p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  line-height: 1.65;
}

.site-footer__social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.site-footer__social-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease, filter 0.3s ease;
}

.site-footer__social-link svg {
  width: 100%;
  height: 100%;
}

.site-footer__social-link:hover {
  transform: translateY(-3px) scale(1.08);
}

.site-footer__social-link--instagram:hover {
  color: #ff5ea8;
  filter: drop-shadow(0 0 14px rgba(255, 94, 168, 0.38));
}

.site-footer__social-link--tiktok:hover {
  color: #ffffff;
  filter: drop-shadow(0 0 8px rgba(0, 255, 240, 0.45))
    drop-shadow(0 0 8px rgba(255, 0, 80, 0.28));
}

.site-footer__social-link--whatsapp:hover {
  color: #25d366;
  filter: drop-shadow(0 0 14px rgba(37, 211, 102, 0.34));
}

.site-footer__bottom {
  padding-top: 4px;
}

.site-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-family: "Inter", sans-serif;
  font-size: 0.84rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .site-footer {
    padding: 46px 0 20px;
  }

  .site-footer__brand,
  .site-footer__info-block,
  .site-footer__social-block {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }

  .site-footer__logo {
    max-width: 180px;
  }

  .site-footer__text,
  .site-footer__info-block p {
    font-size: 0.9rem;
  }

  .site-footer__social-link {
    width: 38px;
    height: 38px;
  }

  .site-footer__bottom p {
    font-size: 0.8rem;
  }
}
