/* ───────────────────────────────────────────
   FRAN TAN — Custom CSS
   Tango Noir Luxury Aesthetic
─────────────────────────────────────────── */

:root {
  --gold: #c8b273;
  --gold-light: #e8d49a;
  --gold-dim: rgba(200, 178, 115, 0.15);
  --red: #8B0000;
  --red-bright: #B22222;
  --black: #000;
  --black-soft: #0d0d0d;
  --black-card: #111;
  --white: #ffffff;
  --text: #ddd;
  --text-dim: #999;
  --nav-h: 76px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
  letter-spacing: 0.3px;
}

a { text-decoration: none; color: inherit; }

::selection { background: var(--gold); color: #000; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  color: var(--gold);
}

h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  font-size: 2rem;
  letter-spacing: 2px;
}

h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

h2:hover::after { width: 100%; }

p {
  font-size: 1.05rem !important;
  line-height: 1.85 !important;
  color: var(--text);
  letter-spacing: 0.3px;
}

mark {
  color: var(--gold);
  background: transparent;
  font-weight: 600;
  font-size: 1.4rem;
}

.text-gold { color: var(--gold); font-weight: 600; }
.text-highlight {
  background: var(--gold-dim);
  padding: 1px 6px;
  border-radius: 3px;
  color: var(--gold-light);
}

/* ── Cursor Glow ── */
#cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,178,115,0.06) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: left 0.1s, top 0.1s;
}

/* ── Particles Canvas ── */
#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* ── Gold Divider ── */
.gold-divider {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 40px auto;
  border-radius: 2px;
  opacity: 0.7;
}

/* ── Section ── */
section { padding: 80px 0; }
section .container { position: relative; z-index: 2; }
.bg-dark-section { background: var(--black-soft); }

/* ── Fade Slide Animation ── */
.fade-slide {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.fade-slide.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── Word Reveal (Hero) ── */
.word-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: wordReveal 0.6s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes wordReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Hero FocusIn ── */
@keyframes focusIn {
  0%   { filter: blur(20px) brightness(40%); opacity: 0; transform: scale(1.15); }
  60%  { filter: blur(6px) brightness(55%); opacity: 0.8; }
  100% { filter: blur(0) brightness(60%); opacity: 1; transform: scale(1); }
}

@keyframes fadeInOverlay {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes bounce {
  0%,20%,50%,80%,100% { transform: translate(-50%,0); }
  40% { transform: translate(-50%,-10px); }
  60% { transform: translate(-50%,-5px); }
}

/* ═══════════════════════════════════════════
   NAVBAR — Custom professional
═══════════════════════════════════════════ */

#main-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
  border-bottom: 1px solid transparent;
}

#main-navbar.navbar-scrolled {
  background: rgba(4, 4, 4, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(200,178,115,0.15), 0 8px 40px rgba(0,0,0,0.6);
  border-bottom-color: rgba(200,178,115,0.12);
}

/* ── Inner container ── */
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ── Brand ── */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(200,178,115,0.25));
  transition: filter 0.3s ease, transform 0.3s ease;
}

.nav-brand:hover img {
  filter: drop-shadow(0 0 18px rgba(200,178,115,0.5));
  transform: scale(1.05);
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-brand-sub {
  font-size: 0.65rem;
  color: rgba(200,178,115,0.5);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ── Desktop nav links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  position: relative;
  color: rgba(255,255,255,0.65);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  transition: color 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
  display: block;
}

/* Underline bar animado */
.nav-link::before {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dot arriba al activar */
.nav-link::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-link:hover,
.nav-link.nav-active {
  color: #fff;
}

.nav-link:hover::before,
.nav-link.nav-active::before {
  width: 70%;
}

.nav-link.nav-active::after {
  transform: translateX(-50%) scale(1);
}

/* ── Nav Right ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

/* ── Language pill selector ── */
#langSelector {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,178,115,0.2);
  border-radius: 100px;
  padding: 3px;
  gap: 0;
}

/* Sliding pill background */
.lang-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  background: var(--gold);
  border-radius: 100px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  pointer-events: none;
}

#langSelector.en-active .lang-slider {
  transform: translateX(100%);
}

.lang-btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 5px 12px;
  border-radius: 100px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.45);
  transition: color 0.35s ease;
  white-space: nowrap;
}

.lang-btn.active { color: #000; }

.lang-flag {
  width: 16px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* ── Hamburger button ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(200,178,115,0.25);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px 8px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.hamburger:hover {
  border-color: var(--gold);
  background: rgba(200,178,115,0.05);
}

.ham-line {
  display: block;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1),
              opacity   0.3s ease,
              width     0.3s ease;
  transform-origin: center;
}

/* Hamburger → X animation */
.hamburger.is-open .ham-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.is-open .ham-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-open .ham-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ═══════════════════════════════════════════
   MOBILE MENU OVERLAY
═══════════════════════════════════════════ */

#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 800;
  display: flex;
  align-items: stretch;
  pointer-events: none;
  visibility: hidden;
}

/* Clip reveal from right */
#mobile-menu .mobile-menu-inner {
  position: absolute;
  top: 0; right: 0;
  width: min(420px, 100%);
  height: 100%;
  background: #080808;
  border-left: 1px solid rgba(200,178,115,0.12);
  transform: translateX(100%);
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--nav-h) 48px 48px;
  overflow-y: auto;
}

/* Backdrop */
#mobile-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Open state */
#mobile-menu.is-open {
  pointer-events: all;
  visibility: visible;
}
#mobile-menu.is-open::before {
  opacity: 1;
}
#mobile-menu.is-open .mobile-menu-inner {
  transform: translateX(0);
}

/* Decorative gold line */
.mobile-menu-deco {
  position: absolute;
  top: 0; left: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(to bottom, var(--gold), transparent);
  transition: height 0.7s cubic-bezier(0.4,0,0.2,1) 0.3s;
}
#mobile-menu.is-open .mobile-menu-deco { height: 60%; }

/* ── Mobile nav links ── */
.mobile-nav { padding-top: 32px; }

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mob-item {
  overflow: hidden;
}

.mob-link {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.3s ease, padding-left 0.3s ease, border-color 0.3s ease;
  transform: translateX(60px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1),
              opacity   0.5s cubic-bezier(0.4,0,0.2,1),
              color     0.3s ease,
              padding-left 0.3s ease;
}

#mobile-menu.is-open .mob-link {
  transform: translateX(0);
  opacity: 1;
}

/* Stagger delays */
.mob-item:nth-child(1) .mob-link { transition-delay: 0.08s, 0.08s, 0s, 0s; }
.mob-item:nth-child(2) .mob-link { transition-delay: 0.14s, 0.14s, 0s, 0s; }
.mob-item:nth-child(3) .mob-link { transition-delay: 0.20s, 0.20s, 0s, 0s; }
.mob-item:nth-child(4) .mob-link { transition-delay: 0.26s, 0.26s, 0s, 0s; }
.mob-item:nth-child(5) .mob-link { transition-delay: 0.32s, 0.32s, 0s, 0s; }
.mob-item:nth-child(6) .mob-link { transition-delay: 0.38s, 0.38s, 0s, 0s; }
.mob-item:nth-child(7) .mob-link { transition-delay: 0.44s, 0.44s, 0s, 0s; }

.mob-link:hover,
.mob-link.mob-active {
  color: var(--gold);
  padding-left: 12px;
  border-bottom-color: rgba(200,178,115,0.2);
}

/* ── Mobile menu bottom ── */
.mobile-menu-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease 0.5s, transform 0.5s ease 0.5s;
}

#mobile-menu.is-open .mobile-menu-bottom {
  opacity: 1;
  transform: translateY(0);
}

.mob-cta {
  font-size: 0.8rem !important;
  padding: 12px 28px !important;
  letter-spacing: 2px;
}

.mob-social {
  display: flex;
  gap: 16px;
}

.mob-social a {
  color: rgba(255,255,255,0.35);
  font-size: 1.3rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.mob-social a:hover {
  color: var(--gold);
  transform: translateY(-3px);
}

.mob-tagline {
  font-size: 0.7rem !important;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(200,178,115,0.3) !important;
  margin: 0 !important;
  line-height: 1 !important;
}

/* ── body lock when menu open ── */
body.menu-open { overflow: hidden; }

/* ── Responsive show/hide ── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 480px) {
  .nav-inner { padding: 0 20px; }
  .nav-brand-sub { display: none; }
  #langSelector { display: none; } /* moves inside mobile menu */
}

/* ── Hero Header ── */
header#inicio {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

header#inicio img#hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 70%;
  filter: brightness(60%);
  opacity: 0;
  animation: focusIn 3s ease-out 0.5s forwards;
  transform-origin: center;
}

.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0.7) 100%);
  opacity: 0;
  animation: fadeInOverlay 1.2s ease-out 1.2s forwards;
}

.overlay h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  max-width: 860px;
  line-height: 1.3;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
}

.overlay p {
  font-size: 1.1rem !important;
  max-width: 680px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 1px;
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  animation: bounce 2.5s ease infinite 3.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: fadeInOverlay 0.8s ease 3.5s forwards, bounce 2.5s ease 4.3s infinite;
}

.scroll-indicator::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin-top: 4px;
}

/* ── Presentation / Banner ── */
.presentation-section {
  background: var(--black);
  padding: 80px 20px;
  text-align: center;
}

.logo-banner {
  width: 180px;
  display: block;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 0 20px rgba(200,178,115,0.3));
}

.video-wrapper {
  position: relative;
  width: 68%;
  max-width: 620px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(200,178,115,0.15), 0 20px 60px rgba(0,0,0,0.6);
  border: 1px solid rgba(200,178,115,0.2);
}

.video-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid var(--gold);
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

.presentation-video {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Buttons ── */
.btn-tango,
.btn-magnetic {
  display: inline-block;
  background: var(--red);
  color: #fff;
  border-radius: 40px;
  padding: 12px 32px;
  border: 1px solid var(--red-bright);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease !important;
  position: relative;
  overflow: hidden;
}

.btn-tango::before,
.btn-magnetic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent);
  border-radius: inherit;
}

.btn-tango:hover,
.btn-magnetic:hover {
  background: var(--red-bright);
  box-shadow: 0 0 25px rgba(178,34,34,0.4);
  color: #fff;
}

/* ── About Section ── */
#biografia {
  background: var(--black-soft);
}

.about-text {
  max-width: 750px;
  margin: 0 auto;
  font-size: 1.05rem !important;
}

/* ── Photo Frame (secciones Clases / Taxi) ── */
.photo-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(200,178,115,0.18);
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
  display: inline-block;
  width: 100%;
}

.photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 1px solid rgba(200,178,115,0.12);
  z-index: 2;
  pointer-events: none;
}

.photo-full {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.photo-frame:hover .photo-full {
  transform: scale(1.03);
}

.photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 20px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  z-index: 3;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.photo-frame:hover .photo-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ── Gallery Grid (3 fotos portrait) ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(200,178,115,0.15);
  box-shadow: 0 10px 40px rgba(0,0,0,0.45);
  text-decoration: none;
  background: #0d0d0d;
  aspect-ratio: 3 / 4;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.4,0,0.2,1), filter 0.4s ease;
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-card-overlay i {
  color: var(--gold);
  font-size: 2rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
  transform: scale(0.8);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

.gallery-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.85);
}

.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}

.gallery-card:hover .gallery-card-overlay i {
  transform: scale(1);
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .gallery-card {
    aspect-ratio: 4 / 3;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-card:last-child {
    grid-column: 1 / -1;
    max-width: 60%;
    margin: 0 auto;
  }
}



/* ── Testimonials ── */
.testimonial-item {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.testimonial-item.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.testimonial-quote {
  font-size: 1.1rem !important;
  font-style: italic;
  color: var(--text);
  max-width: 600px;
  line-height: 1.8 !important;
}

.testimonial-stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 3px; }

/* ── Video Container ── */
.video-container {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(200,178,115,0.2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  aspect-ratio: 16 / 9;
  width: 100%;
}

.video-container video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ── Schedule ── */
.schedule-card {
  background: var(--black-card);
  border: 1px solid rgba(200,178,115,0.2);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 12px;
}

.schedule-card .day {
  font-family: 'Montserrat', sans-serif;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.schedule-card .time {
  color: rgba(255,255,255,0.6);
  font-size: 1.2rem;
  font-weight: 300;
}

/* ── Form ── */
#formReserva {
  background: var(--black-card);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(200,178,115,0.25);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

#formReserva label {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

#formReserva input,
#formReserva textarea {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 1px solid rgba(200,178,115,0.3);
  border-radius: 8px;
  padding: 12px 16px;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

#formReserva input::placeholder,
#formReserva textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

#formReserva input:focus,
#formReserva textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,178,115,0.15);
  background: rgba(255,255,255,0.07);
}

#formReserva button[type="submit"] {
  width: 100%;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  border-radius: 40px;
  padding: 14px;
  border: none;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease !important;
  margin-top: 8px;
}
#formReserva button[type="submit"]:hover {
  background: var(--red-bright);
  transform: scale(1.02);
}

/* ── Social Icons ── */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(200,178,115,0.3);
  color: var(--gold);
  font-size: 1.3rem;
  margin: 0 8px;
  transition: all 0.3s ease !important;
}

.social-icons a:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(200,178,115,0.3);
}

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.whatsapp-float a {
  display: flex;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.whatsapp-float a:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── FOOTER ── */
footer {
  background: #050505;
  border-top: 1px solid rgba(200,178,115,0.15);
  padding-top: 60px;
  color: var(--text-dim);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.footer-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 1px;
}

.footer-desc {
  font-size: 0.9rem !important;
  line-height: 1.7 !important;
  color: var(--text-dim);
  max-width: 280px;
}

.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(200,178,115,0.2);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: var(--text-dim);
  font-size: 0.9rem;
  transition: color 0.3s ease, padding-left 0.3s ease !important;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(200,178,115,0.25);
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  transition: all 0.3s ease !important;
}

.footer-social a:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 50px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 0.8rem !important;
  color: rgba(255,255,255,0.3);
  margin: 0 !important;
  letter-spacing: 0.5px;
}

.footer-dev {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-dev img {
  height: 22px;
  opacity: 0.5;
  transition: opacity 0.3s ease !important;
  border-radius: 0 !important;
}

.footer-dev:hover img { opacity: 0.85; }

/* ── Lightbox overrides ── */
.lb-data .lb-caption { color: var(--gold); font-family: 'Montserrat', sans-serif; }
.lb-nav a.lb-prev,
.lb-nav a.lb-next { opacity: 0.6; }

/* ── Responsive ── */
@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .video-wrapper { width: 92%; max-width: 100%; }
  .overlay h1 { font-size: 1.5rem; }
  section { padding: 60px 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .overlay h1 { font-size: 1.25rem; }
  .overlay p { font-size: 0.95rem !important; }
}
