/* =============================================
   BIRIMBI 2026 · Enhanced Design System
   Capa de mejoras sobre el estilo embebido
   ============================================= */

/* ─── 1. SCROLL PROGRESS BAR ─── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #caa66a 0%, #0077b6 55%, #023e8a 100%);
  z-index: 100002;
  transition: width 0.12s linear;
  border-radius: 0 2px 2px 0;
  pointer-events: none;
}

/* ─── 2. HEADER MEJORADO ─── */
#main-header {
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

#main-header.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 2px 40px rgba(2, 62, 138, 0.1);
}

/* Logo tipografía premium */
#main-header .logo {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.5em !important;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: opacity 0.2s;
}

#main-header .logo:hover {
  opacity: 0.75;
}

/* ─── 3. NAV LINKS ─── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #0f172a;
  text-decoration: none;
  font-size: 0.86em;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 999px;
  transition: all 0.2s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  background: rgba(2, 62, 138, 0.07);
  color: #023e8a;
}

.nav-links .nav-cta a {
  background: linear-gradient(135deg, #0b2d6b, #134fb5);
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(2, 62, 138, 0.28);
  padding: 7px 16px;
}

.nav-links .nav-cta a:hover {
  background: linear-gradient(135deg, #134fb5, #0b2d6b) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(2, 62, 138, 0.4) !important;
  color: #fff !important;
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: #023e8a;
  border-radius: 8px;
  transition: background 0.2s;
}

.nav-toggle:hover {
  background: rgba(2, 62, 138, 0.07);
}

/* Header layout flex */
.container-header {
  gap: 16px;
}

/* ─── 4. RESPONSIVE NAV ─── */
@media (max-width: 960px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 12px 16px 16px;
    gap: 2px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 9999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 11px 16px;
    border-radius: 12px;
  }

  .nav-links .nav-cta {
    width: 100%;
  }

  .nav-links .nav-cta a {
    display: block;
    text-align: center;
    width: 100%;
    padding: 11px 16px;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ─── 5. HERO MEJORADO ─── */
.hero h1 {
  line-height: 1.08 !important;
  letter-spacing: -0.025em;
}

.hero-copy h1 {
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5) !important;
  animation: titleReveal 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
  opacity: 0;
}

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero-copy p {
  animation: fadeSlideUp 1s 0.25s cubic-bezier(0.16, 1, 0.3, 1) backwards !important;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-meta {
  animation: fadeSlideUp 0.9s 0.5s cubic-bezier(0.16, 1, 0.3, 1) backwards !important;
}

.hero-pill {
  transition: all 0.2s ease;
}

.hero-pill:hover {
  background: rgba(255, 255, 255, 0.25) !important;
  transform: translateY(-1px);
}

.hero-badge {
  animation: fadeSlideUp 0.7s ease backwards;
  transition: all 0.2s ease;
  cursor: default;
}

.hero-badge:hover {
  background: rgba(2, 62, 138, 0.1) !important;
  transform: translateY(-2px);
}

.hero-badge:nth-child(1) { animation-delay: 0.55s; }
.hero-badge:nth-child(2) { animation-delay: 0.65s; }
.hero-badge:nth-child(3) { animation-delay: 0.75s; }
.hero-badge:nth-child(4) { animation-delay: 0.85s; }
.hero-badge:nth-child(5) { animation-delay: 0.95s; }
.hero-badge:nth-child(6) { animation-delay: 1.05s; }

/* Offer button elevated */
.hero-offer {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease !important;
}

.hero-offer:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 28px 56px rgba(202, 166, 106, 0.35) !important;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255, 255, 255, 0.55);
  animation: scrollBounce 2.2s ease-in-out infinite;
  pointer-events: none;
}

.hero-scroll-indicator svg {
  width: 22px;
  height: 22px;
  display: block;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.55; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ─── 6. BOTONES MEJORADOS ─── */
.hero-cta button {
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease !important;
}

.hero-cta button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.22) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.hero-cta button:hover::after {
  transform: translateX(120%);
}

.hero-cta button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(2, 62, 138, 0.45) !important;
  background: linear-gradient(135deg, #134fb5, #0b2d6b) !important;
}

#reservaForm button[type="submit"] {
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease !important;
}

#reservaForm button[type="submit"]::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.22) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

#reservaForm button[type="submit"]:hover::after {
  transform: translateX(120%);
}

#reservaForm button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(2, 62, 138, 0.4) !important;
  background: linear-gradient(135deg, #134fb5, #0b2d6b) !important;
}

button[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

/* ─── 7. GALERÍA MEJORADA ─── */
.gallery-card {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease !important;
}

.gallery-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.35) !important;
}

.gallery-card img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

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

.gallery-cta {
  transition: all 0.25s ease !important;
}

.gallery-cta:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  transform: translateX(5px);
  gap: 12px !important;
}

/* ─── 8. COMODIDADES ─── */
.comfort-item {
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.comfort-item:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  transform: translateY(-3px);
  border-color: rgba(202, 166, 106, 0.5) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ─── 9. GUIDE CARDS ─── */
.guide-card {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease !important;
}

.guide-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18) !important;
}

/* Guide filter active */
.guide-filter {
  transition: all 0.2s ease !important;
}

.guide-filter.active,
.guide-filter:hover {
  background: #0b2d6b !important;
  color: #fff !important;
  border-color: #0b2d6b !important;
  transform: translateY(-1px);
}

/* ─── 10. FAQ ACCORDION ─── */
.faq-accordion details {
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.faq-accordion details:hover {
  border-color: rgba(2, 62, 138, 0.3) !important;
  box-shadow: 0 4px 16px rgba(2, 62, 138, 0.07) !important;
}

.faq-accordion summary {
  transition: color 0.2s ease !important;
}

/* ─── 11. FORMULARIO ─── */
#reservaForm input:focus,
#reservaForm select:focus {
  outline: none !important;
  border-color: #0077b6 !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.14) !important;
  transition: all 0.2s ease !important;
}

#reservaForm input,
#reservaForm select {
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.reserve-card,
.reserve-summary {
  transition: box-shadow 0.3s ease !important;
}

.reserve-card:hover,
.reserve-summary:hover {
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12) !important;
}

/* ─── 12. TOAST NOTIFICATIONS ─── */
#toast-container {
  position: fixed;
  top: 76px;
  right: 18px;
  z-index: 200001;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
  width: calc(100vw - 36px);
  pointer-events: none;
}

.toast {
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14), 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.88em;
  line-height: 1.45;
  border-left: 4px solid #0077b6;
  animation: toastIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  position: relative;
  overflow: hidden;
  pointer-events: all;
}

.toast.success { border-left-color: #10b981; }
.toast.error   { border-left-color: #ef4444; }
.toast.warning { border-left-color: #f59e0b; }
.toast.info    { border-left-color: #0077b6; }

.toast-icon {
  font-size: 1.1em;
  flex-shrink: 0;
  margin-top: 1px;
  width: 18px;
  text-align: center;
}

.toast-body {
  flex: 1;
  color: #1f2937;
  font-family: 'Manrope', sans-serif;
}

.toast-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #9ca3af;
  padding: 0 0 0 4px;
  font-size: 0.95em;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.2s;
  font-family: sans-serif;
}

.toast-close:hover { color: #374151; }

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, currentColor, transparent);
  opacity: 0.35;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(110%) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes toastOut {
  from {
    opacity: 1;
    transform: translateX(0) scale(1);
    max-height: 120px;
    margin-bottom: 0;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  to {
    opacity: 0;
    transform: translateX(110%) scale(0.9);
    max-height: 0;
    margin-bottom: -10px;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.toast.dismissing {
  animation: toastOut 0.38s cubic-bezier(0.55, 0, 1, 0.45) forwards;
}

@media (max-width: 600px) {
  #toast-container {
    top: auto;
    bottom: 80px;
    right: 12px;
    left: 12px;
    max-width: none;
    width: auto;
  }
}

/* ─── 13. WHATSAPP FAB ─── */
#whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(37, 211, 102, 0.25);
  cursor: pointer;
  text-decoration: none;
  z-index: 9990;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  animation: fabEntrance 0.7s 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

#whatsapp-fab:hover {
  transform: scale(1.14) rotate(-6deg);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(37, 211, 102, 0.3);
}

#whatsapp-fab svg {
  width: 28px;
  height: 28px;
}

@keyframes fabEntrance {
  from {
    opacity: 0;
    transform: scale(0) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@media (max-width: 600px) {
  #whatsapp-fab {
    bottom: 20px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
}

/* ─── 14. FOOTER REDISEÑADO ─── */
footer {
  background: linear-gradient(135deg, #080f1e 0%, #0b1f3a 50%, #0a2448 100%) !important;
  position: relative !important;
  padding: 40px 24px 32px !important;
  width: 100% !important;
  left: auto !important;
  bottom: auto !important;
  z-index: auto !important;
  text-align: left !important;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(202, 166, 106, 0.4), transparent);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4em;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.footer-sub {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82em;
  margin-top: 2px;
  max-width: none !important;
}

.footer-right {
  text-align: right;
}

.footer-links {
  margin-top: 0 !important;
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 0.82em !important;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.9) !important;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.78em;
}

footer p {
  margin: 0 !important;
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-right {
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start !important;
  }
}

/* ─── 15. MAIN: quitar padding-bottom del footer fijo ─── */
#contenido {
  padding-bottom: 0 !important;
}

/* ─── 16. ANIMACIONES DE ENTRADA ─── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.12s; }
.stagger-3 { transition-delay: 0.19s; }
.stagger-4 { transition-delay: 0.26s; }
.stagger-5 { transition-delay: 0.33s; }
.stagger-6 { transition-delay: 0.40s; }

/* ─── 17. RECEIPT / PRICE BOX ─── */
.price-box.receipt {
  transition: box-shadow 0.3s ease !important;
}

.price-box.receipt:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}

/* ─── 18. MEJORAS GLOBALES ─── */

/* Scrollbar personalizado */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
  border: 2px solid #f1f5f9;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Selección de texto */
::selection {
  background: rgba(0, 119, 182, 0.18);
  color: #023e8a;
}

/* Focus accesible */
:focus-visible {
  outline: 2px solid #0077b6;
  outline-offset: 3px;
  border-radius: 4px;
}

/* Imágenes con fade al cargar */
img {
  transition: opacity 0.3s ease;
}

/* Hover en links de la guía */
.guide-card a {
  transition: color 0.2s ease !important;
}

.guide-card a:hover {
  color: #134fb5 !important;
}

/* Cookie banner glassmorphism */
#cookie-banner {
  border: 1px solid rgba(0, 119, 182, 0.12) !important;
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  box-shadow: 0 -2px 60px rgba(0, 0, 0, 0.1), 0 12px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Legal modal buttons */
.legal-actions button,
.cookie-actions button {
  transition: all 0.2s ease !important;
}

.legal-actions button:hover {
  background: #0069a0 !important;
  transform: translateY(-1px);
}

/* Spinner */
.spinner {
  border-top-color: #0077b6 !important;
}

/* ─── 19. EFECTO HERO PARALLAX SUAVE ─── */
@keyframes heroParallaxDrift {
  0% { background-position: center 50%; }
  100% { background-position: center 55%; }
}

/* ─── 20. WIDGET ASISTENTE MEJORADO ─── */
#widget-asistente {
  border-radius: 16px !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

#widget-header {
  border-radius: 16px 16px 0 0 !important;
  background: linear-gradient(135deg, #023e8a, #0b2d6b) !important;
}

/* ─── 21. RESERVE STEPS ─── */
.reserve-step {
  position: relative;
  transition: background 0.2s, color 0.2s;
}

/* ─── 22. GALERÍA - LABEL ANIMADO ─── */
.gallery-label {
  transition: opacity 0.3s ease, transform 0.3s ease !important;
  opacity: 0.8;
}

.gallery-card:hover .gallery-label {
  opacity: 1;
  transform: translateY(-3px);
}

/* ─── 23. SECCIÓN HERO - ANIMACIÓN GRADIENTE ─── */
.hero::before {
  animation: heroOverlayPulse 8s ease-in-out infinite alternate !important;
}

@keyframes heroOverlayPulse {
  from {
    background: linear-gradient(180deg, rgba(6, 12, 24, 0.68), rgba(6, 12, 24, 0.22));
  }
  to {
    background: linear-gradient(180deg, rgba(6, 12, 24, 0.58), rgba(6, 12, 24, 0.3));
  }
}

/* ─── 24. RESPONSIVE MEJORAS ─── */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.4em !important;
  }

  .gallery-header h2,
  .guide-header h2,
  .reserve-header h2 {
    font-size: 1.9em !important;
  }
}

/* ─── 25. TIPOGRAFÍA - MEJOR JERARQUÍA ─── */
h2 {
  letter-spacing: -0.02em;
}

.gallery-header h2,
.guide-header h2,
.reserve-header h2 {
  font-size: 2.4em !important;
  letter-spacing: -0.025em;
}

/* Hero número precio destacado */
#hero-price {
  font-weight: 800;
  font-size: 1.15em;
}

/* ─── 26. CURSOR PERSONALIZADO EN GALERÍA ─── */
.gallery-card:hover {
  cursor: zoom-in;
}

/* ─── 27. LIGHTBOX MEJORADO ─── */
#lightbox {
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
}

#lightbox-image {
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6) !important;
  transition: opacity 0.3s ease;
}

.lightbox-nav,
.lightbox-close {
  transition: background 0.2s ease, transform 0.2s ease !important;
}

.lightbox-nav:hover,
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25) !important;
  transform: scale(1.1);
}

/* ─── 28. SECCIÓN VISIBLE - OVERRIDE SECTION ANIMATION ─── */
/* Las secciones ya estaban con opacity 0 por el JS original,
   pero ahora las gestionamos con .animate-on-scroll */
section {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

section.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ─── HERO DRAMÁTICO ─── */
.hero h1 {
  font-size: clamp(2.8em, 6vw, 5.2em) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.03em;
  font-weight: 700 !important;
}

.hero p {
  font-size: 1.2em !important;
  line-height: 1.6;
  opacity: 0.93;
}

/* Glow sutil detrás del texto hero */
.hero-copy::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0,119,182,0.18), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-copy {
  position: relative;
}

/* ─── MARQUEE TICKER ─── */
.marquee-strip {
  background: #0b1f3a;
  border-top: 1px solid rgba(202, 166, 106, 0.2);
  border-bottom: 1px solid rgba(202, 166, 106, 0.2);
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 1;
}

.marquee-strip::before,
.marquee-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.marquee-strip::before {
  left: 0;
  background: linear-gradient(90deg, #0b1f3a, transparent);
}

.marquee-strip::after {
  right: 0;
  background: linear-gradient(270deg, #0b1f3a, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 32s linear infinite;
  padding: 14px 0;
  width: max-content;
}

.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82em;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0 20px;
  transition: color 0.2s;
}

.marquee-item svg {
  color: #caa66a;
  flex-shrink: 0;
}

.marquee-dot {
  color: rgba(202, 166, 106, 0.5);
  font-size: 1.1em;
  user-select: none;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    overflow-x: auto;
    width: 100%;
  }
}

/* ─── STATS STRIP ─── */
.stats-strip {
  background: #fff;
  border-bottom: 1px solid #e7e9ee;
  position: relative;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.stat-block {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2em, 4vw, 3.4em);
  font-weight: 700;
  color: #023e8a;
  line-height: 1;
  letter-spacing: -0.03em;
  transition: color 0.3s ease;
}

.stat-label {
  font-size: 0.78em;
  color: #6b7280;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.stat-sep {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, #e7e9ee, transparent);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .stats-inner {
    gap: 12px;
    padding: 20px 16px;
  }

  .stat-sep:nth-child(8),
  .stat-sep:nth-child(10) {
    display: none;
  }

  .stat-block:nth-child(9),
  .stat-block:nth-child(11) {
    flex-basis: 100%;
    border-top: 1px solid #f1f5f9;
    padding-top: 12px;
    margin-top: 4px;
  }
}

/* stat-number hover glow */
.stat-block:hover .stat-number {
  color: #0077b6;
}

/* ─── GALLERY SECTION - más dramática ─── */
.gallery-section {
  padding: 80px 24px 90px !important;
}

.gallery-header h2 {
  font-size: clamp(2em, 4vw, 3em) !important;
}

/* ─── GUIDE SECTION - más dramática ─── */
.guide-header h2 {
  font-size: clamp(2em, 4vw, 3em) !important;
}

/* ─── RESERVE HEADER ─── */
.reserve-header h2 {
  font-size: clamp(2em, 4vw, 3em) !important;
}

/* ─── SECTION DIVIDERS (clip-path) ─── */
.marquee-strip + .stats-strip {
  clip-path: none;
}

/* Separador ondulado entre stats y galería */
.stats-strip::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,119,182,0.15), transparent);
}

/* ─── BENTO COMFORT GRID ─── */
@media (min-width: 700px) {
  .comfort-list {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
  }
}

/* ─── GALERÍA HERO CARD más grande ─── */
.gallery-hero {
  border-radius: 20px !important;
}

.gallery-card {
  border-radius: 18px !important;
}

/* ─── SECCIÓN RESERVA: CTA más llamativa ─── */
.reserve-header p {
  font-size: 1.1em !important;
  opacity: 0.88;
}

/* ─── HERO OFFER - diseño más dramático ─── */
.hero-offer-title {
  font-size: 1.6em !important;
  background: linear-gradient(135deg, #f9f3e4, #caa66a, #f9f3e4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none !important;
}

/* ─── COMFORT SECTION - overlay más dramático ─── */
.section-alt-bg .section-overlay {
  background: linear-gradient(135deg, rgba(0,0,0,0.62), rgba(0,0,0,0.45)) !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(2px);
}

/* ─── FAQ SECTION - más dramática ─── */
.section-faq-hero .section-overlay {
  background: rgba(0,0,0,0.65) !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255,255,255,0.1);
}

/* ─── GUIDE CARDS - backdrop más limpio ─── */
.guide-card {
  background: rgba(255,255,255,0.92) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}

/* ─── HERO FLOATING INNER - borde más dramático ─── */
.hero-floating-inner {
  box-shadow: 0 24px 70px rgba(0,0,0,0.32) !important;
}

/* ─── HERO PILL - más visible ─── */
.hero-meta {
  gap: 12px !important;
}

/* ─── STAT COUNTERS animation ─── */
@keyframes statPop {
  0%   { transform: scale(0.85); opacity: 0; }
  70%  { transform: scale(1.06); }
  100% { transform: scale(1); opacity: 1; }
}

.stat-number.popped {
  animation: statPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* ─── RESERVE STEPS - más visual ─── */
.reserve-steps {
  align-items: center !important;
}

.reserve-step {
  background: rgba(238,242,255,0.7) !important;
  border: 1px solid rgba(11,45,107,0.12) !important;
  font-weight: 600 !important;
}

/* ─── HERO badge de precio ─── */
.hero-pill {
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ─── GALLERY CTA - pill ─── */
.gallery-cta {
  border-radius: 999px !important;
  font-weight: 600 !important;
  font-size: 0.9em !important;
  letter-spacing: 0.02em !important;
  padding: 10px 18px !important;
}

