/* ============================================
   VARIABLES CSS
   ============================================ */
:root {
  /* Colores principales */
  --color-primary-green: #002d27;
  --color-primary-green-light: #003d35;
  --color-primary-green-dark: #004d42;
  --color-primary-green-darker: #001d18;
  --color-silver: #C0C0C0;
  --color-silver-light: #E0E0E0;
  --color-bg-dark: #FAF9F6;
  --color-bg-card: rgba(255, 255, 255, 0.95);
  --color-text-light: #F5E6D3;
  --color-bg-modal: rgba(255, 248, 240, 0.98);
  --color-bg-elegant: #FAF9F6;
  
  /* Gradientes */
  --gradient-green: linear-gradient(135deg, #002d27 0%, #003d35 50%, #004d42 100%);
  --gradient-green-hover: linear-gradient(135deg, #003d35 0%, #004d42 50%, #005d52 100%);
  
  /* Fondo abstracto verde esmeralda moderno */
  --bg-green-abstract: 
    radial-gradient(circle at 20% 50%, rgba(0, 45, 39, 0.8) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 77, 66, 0.6) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(0, 61, 53, 0.7) 0%, transparent 50%),
    linear-gradient(135deg, #001d18 0%, #002d27 25%, #003d35 50%, #004d42 75%, #002d27 100%);
  
  /* Fuentes */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Open Sans', sans-serif;
  --font-fraunces: 'Fraunces', serif;
  
  /* Espaciados */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  
  /* Sombras */
  --shadow-card: 0 4px 20px rgba(0,0,0,0.3);
  --shadow-button: 0 4px 15px rgba(0, 45, 39, 0.4);
  --shadow-button-hover: 0 6px 20px rgba(0, 45, 39, 0.6);
}

/* ============================================
   RESET Y BASE
   ============================================ */
html, body {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
  width: 100%;
  box-sizing: border-box;
  max-width: 100vw;
}

body {
  padding-left: 0;
  padding-right: 0;
  background: var(--bg-green-abstract);
  background-attachment: fixed;
  min-height: 100vh;
}

*, *:before, *:after {
  box-sizing: border-box;
}

section, .container, .modal, .card {
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  width: 100%;
}

img, lottie-player, video {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  margin: 0 auto;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}

iframe {
  max-width: 100%;
}

/* ============================================
   ANIMACIONES
   ============================================ */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(6px);
  }
  60% {
    transform: translateY(3px);
  }
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* ============================================
   UTILIDADES GENERALES
   ============================================ */
.d-flex {
  flex-wrap: wrap;
}

/* Espaciado entre secciones */
section, .cards-section, .section {
  margin-top: 0 !important;
  margin-bottom: 30px !important;
}

.mt-5, .mb-5 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

/* Eliminar margen superior del primer elemento */
#inicio, #inicio:first-child, section:first-of-type {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* ============================================
   HERO SECTION (PARALLAX)
   ============================================ */
.invitation-hero.parallax-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  background: var(--bg-green-abstract);
  background-attachment: fixed;
}

.parallax-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
  border-radius: 0;
}

.parallax-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-image: url('assets/img/primer.webp');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  will-change: transform;
  transform: translateY(0);
}

.hero-content-modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  height: 100vh;
  background: linear-gradient(to top, rgba(0, 29, 24, 0.85) 0%, rgba(0, 45, 39, 0.5) 35%, transparent 60%, transparent 100%);
  backdrop-filter: blur(0px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 2;
  overflow-y: auto;
  padding: 0 0 6rem 0;
}

.hero-content-modal::before,
.hero-content-modal::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--color-silver), transparent);
  z-index: 1;
}

.hero-content-modal::before {
  left: 20px;
}

.hero-content-modal::after {
  right: 20px;
}

/* Estilos para el contenido del hero modal */
.hero-inner {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0 1.5rem 3rem 1.5rem;
  position: relative;
  z-index: 2;
}

/* Estilos para adorno hero */
.hero-adorno-container {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 0 0 2rem 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 3;
}

.hero-adorno {
  width: 100%;
  height: auto;
  max-width: 500px;
  max-height: 230px;
  filter: drop-shadow(0 2px 12px rgba(192, 192, 192, 0.5));
  animation: adornoFloat 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.hero-adorno object,
.hero-adorno img {
  width: 100%;
  height: auto;
  display: block;
}

/* Aplicar efecto plateado usando filtros CSS */
.hero-adorno img {
  filter: brightness(1.4) contrast(1.1) grayscale(0.2) drop-shadow(0 0 6px rgba(224, 224, 224, 0.6));
}

.hero-adorno object {
  filter: brightness(1.4) contrast(1.1) grayscale(0.2);
}

/* Animación flotante para el adorno */
@keyframes adornoFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.98;
  }
  50% {
    transform: translateY(-4px) scale(1.01);
    opacity: 1;
  }
}

/* Estilos para fecha */
.hero-inner .fecha {
  font-family: 'Lora', serif;
  font-size: 45px;
  color: #FCFCFC;
  margin: 0 0 40px 0;
  font-weight: 400;
  position: relative;
  display: inline-block;
}

.hero-inner .fecha::before,
.hero-inner .fecha::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 75px;
  height: 1px;
  background-color: #FCFCFC;
  transform: translateY(-50%);
}

.hero-inner .fecha::before {
  left: -85px;
}

.hero-inner .fecha::after {
  right: -85px;
}

/* Estilos para nombre (h1) */
.hero-inner h1 {
  font-family: 'Parisienne', cursive;
  font-size: 120px;
  color: #FCFCFC;
  margin: 75px 0 0 0;
  font-weight: 400;
  line-height: 1.2;
}

/* Estilos para subtítulo (h2) */
.hero-inner h2 {
  font-family: 'Lora', serif;
  font-size: 54px;
  color: #CFD6BB;
  margin: 15px 0 0 0;
  font-weight: 400;
  line-height: 1.2;
}

/* Estilos para recuadro de cita */
.hero-quote-container {
  position: relative;
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  max-width: 500px;
  width: 100%;
  margin-top: 4rem;
  box-sizing: border-box;
}

.hero-quote-container .quote-open,
.hero-quote-container .quote-close {
  width: 40px;
  height: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.hero-quote-container .quote-open {
  top: 0.5rem;
}

.hero-quote-container .quote-close {
  bottom: 0.5rem;
}

.hero-quote-container .hero-quote {
  font-family: 'Lora', serif;
  font-size: 36px;
  color: #FCFCFC;
  margin: 0;
  padding: 3.5rem 2rem 3.5rem 2rem;
  line-height: 1.6;
  text-align: center;
  font-weight: 400;
}

/* Estilos para arrow down bounce */
.hero-arrow-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  padding: 0;
  position: relative;
  z-index: 2;
}

.hero-arrow-container lottie-player {
  width: 110px;
  height: 110px;
  max-width: 110px;
  max-height: 110px;
}

/* ============================================
   WELCOME MODAL
   ============================================ */
#welcomeModal {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 45, 39, 0.98) 0%, rgba(0, 35, 30, 0.95) 50%, rgba(0, 25, 22, 0.98) 100%);
  overflow-y: auto;
  overflow-x: visible;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem;
  text-align: center;
}

#welcomeModal .welcome-container {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 1.5rem 3rem;
  position: relative;
  z-index: 1;
  overflow: visible;
  margin: auto;
}

#welcomeModal .welcome-adorno-container {
  width: 100%;
  max-width: 280px;
  height: auto;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#welcomeModal .welcome-adorno {
  width: 100%;
  height: auto;
  filter: brightness(1.3) contrast(1.1) saturate(0.3);
  opacity: 0.9;
  display: block;
}

#welcomeModal .welcome-line {
  width: 250px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #FFFFFF 20%, #E8E8E8 40%, #FFFFFF 60%, #E8E8E8 80%, transparent 100%);
  margin: 0;
  padding: 0;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6), 0 0 15px rgba(255, 255, 255, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
}

#welcomeModal .welcome-spacer {
  margin-bottom: 1rem;
}

#welcomeModal .welcome-text-top {
  font-family: 'Open Sans', 'Lora', sans-serif;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #E8E8E8 0%, #C0C0C0 25%, #F0F0F0 50%, #B0B0B0 75%, #E8E8E8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.8px;
  font-weight: 400;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  display: block;
}

#welcomeModal .welcome-xv {
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  margin: 0 0 -1.2rem 0;
  background: linear-gradient(135deg, #E8E8E8 0%, #C0C0C0 25%, #F0F0F0 50%, #B0B0B0 75%, #E8E8E8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.1;
  padding-bottom: 0;
}

#welcomeModal .welcome-name-container {
  width: 100%;
  padding: 0 1rem 0 1rem;
  box-sizing: border-box;
  overflow: visible;
  display: block;
  position: relative;
  margin: 0;
}

#welcomeModal .welcome-name {
  font-family: 'Parisienne', cursive;
  font-size: 5.5rem;
  margin: 0;
  background: linear-gradient(135deg, #F5F5F5 0%, #C0C0C0 20%, #E8E8E8 40%, #B8B8B8 60%, #F0F0F0 80%, #C8C8C8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 1px;
  line-height: 2;
  text-align: center;
  overflow: visible;
  white-space: nowrap;
  padding: 0;
  position: relative;
}

#welcomeModal .welcome-adorno-rotated {
  transform: rotate(180deg);
}

#welcomeModal .welcome-spacer-small {
  margin-bottom: 0.5rem;
}

#welcomeModal .welcome-music-text {
  font-family: 'Open Sans', 'Lora', sans-serif;
  font-size: 0.95rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #E8E8E8 0%, #C0C0C0 25%, #F0F0F0 50%, #B0B0B0 75%, #E8E8E8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 1.5;
}

#welcomeModal .welcome-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  width: 100%;
  max-width: 500px;
  flex-wrap: wrap;
}

#welcomeModal .welcome-btn {
  background: #DCE3C9;
  border: none;
  border-radius: 50px;
  box-sizing: border-box;
  color: #1A3E2D;
  cursor: pointer;
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  height: 41px;
  line-height: 17px;
  margin: 0px 5px 15px 5px;
  min-width: 200px;
  padding: 12px 15px;
  text-align: center;
  transition: all 0.3s ease;
  width: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

#welcomeModal button:hover {
  background: #E8E8E8 !important;
  color: #1A3E2D !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

#welcomeModal button:active {
  background: #E0E0E0 !important;
  color: #1A3E2D !important;
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
}

/* ============================================
   BOTONES
   ============================================ */
.btn-custom,
.custom-card-btn,
.custom-btn {
  background: #CFD6BB;
  color: #002D27;
  font-family: 'DM Sans', sans-serif;
  padding: 15px 20px;
  border: none;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
  cursor: pointer;
  box-sizing: border-box;
  text-decoration: none;
  display: inline-block;
}

.btn-custom:hover,
.custom-card-btn:hover,
.custom-btn:hover,
.btn-custom:focus,
.custom-card-btn:focus,
.custom-btn:focus {
  background: #D8D1BE;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
  color: #002D27;
  text-decoration: none;
}

.custom-card-btn {
  min-width: 180px;
  max-width: 250px;
  width: 100%;
  margin-bottom: 0.3rem;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.btn-instagram {
  text-decoration: none !important;
  max-width: 250px;
  width: 100%;
  margin: 0 auto;
  display: block;
}

/* Botón de música */
#muteBtn {
  display: none;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background: var(--gradient-green);
  color: var(--color-text-light);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10000;
  box-shadow: var(--shadow-button);
}

#music-icon {
  fill: var(--color-text-light);
}

/* ============================================
   CARDS
   ============================================ */
.card-custom {
  border-radius: 24px !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3), 0 4px 15px rgba(0,0,0,0.2) !important;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-title {
  font-family: 'Parisienne', cursive;
  font-size: 2rem;
  color: var(--color-silver);
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0.7rem;
}

.section-subtitle {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  color: var(--color-silver);
  margin-top: 0.3rem;
  margin-bottom: 0.7rem;
  font-weight: 400;
}

.card-musica {
  max-width: 90%;
  margin: 0 auto;
  text-align: center;
  padding: 1.5rem;
  overflow-wrap: break-word;
}

.card-musica button {
  width: 100%;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.content-item-fiesta {
  max-width: 320px !important;
  width: 90% !important;
  margin: 0 auto 1.2rem auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  word-break: break-word !important;
  box-sizing: border-box !important;
  padding: 1.5rem 1rem !important;
  overflow-wrap: break-word !important;
}

.card-musica-text,
.card-musica p,
.card-musica .text-center,
.content-item-fiesta p,
.content-item-fiesta button {
  max-width: 100%;
  word-break: break-word;
  margin: 0 auto;
  text-align: center !important;
  white-space: normal !important;
  width: auto !important;
}

.card-musica .card-text,
.content-item-fiesta .card-text {
  text-align: center !important;
  padding: 0 1rem !important;
  word-break: break-word !important;
  max-width: 100% !important;
  width: 100% !important;
}

#cards .card-custom + .card-custom {
  margin-top: 1.2rem !important;
}

#cards .card-custom {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 360px;
  width: 100%;
}

/* ============================================
   SECCIONES ESPECÍFICAS
   ============================================ */
.section-bg {
  background: transparent;
  position: relative;
}

.section-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-green-abstract);
  background-attachment: fixed;
  z-index: -1;
}

/* Desktop/Mobile visibility */
.only-mobile {
  display: none !important;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.only-desktop {
  display: block !important;
}

.desktop-message {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
  background: var(--bg-green-abstract);
  background-attachment: fixed;
  color: #F5E6D3;
  font-family: var(--font-fraunces);
  font-size: 1.8rem;
}

/* Cuenta atrás */
#cuenta-atras {
  background: transparent;
  padding: 3rem 1rem;
  text-align: center;
  font-family: var(--font-fraunces);
  margin-top: 0;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 3;
  box-sizing: border-box;
  overflow: visible;
}

#cuenta-atras .timer-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
  overflow: visible;
  z-index: 3;
}

#cuenta-atras .timer-separator {
  width: 100%;
  margin-bottom: 2rem;
  max-width: 500px;
  position: relative;
  z-index: 1;
}

#cuenta-atras #timer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 400px;
  color: #C0C0C0;
  margin-bottom: 1rem;
}

#cuenta-atras .timer-unit {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#cuenta-atras .timer-number {
  font-size: 2.5rem;
  font-family: var(--font-serif);
  font-weight: 600;
  color: #C0C0C0;
  margin-bottom: 0.5rem;
}

#cuenta-atras .timer-label {
  font-size: 0.9rem;
  font-family: var(--font-serif);
  color: #C0C0C0;
}

#cuenta-atras .timer-divider {
  width: 1px;
  height: 60px;
  background-color: #C0C0C0;
  opacity: 0.5;
}

#cuenta-atras .timer-title {
  font-size: 3rem;
  font-family: 'Parisienne', cursive;
  color: #C0C0C0;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 0 1.5rem;
  overflow: visible;
  white-space: nowrap;
  width: auto;
  display: inline-block;
  position: relative;
  z-index: 3;
}

/* Sección Fiesta */
#Fiesta {
  position: relative;
  background: transparent;
  padding: 2rem 1rem 2.5rem 1rem;
  text-align: center;
  font-family: var(--font-fraunces);
  margin-top: 0;
  margin-bottom: 1.5rem;
  box-sizing: border-box;
}

#Fiesta .fiesta-container {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#Fiesta .fiesta-lottie {
  margin: 0 auto 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

#Fiesta .fiesta-title {
  font-size: 3rem;
  font-family: var(--font-serif);
  color: #C0C0C0;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.2;
}

#Fiesta .fiesta-separator {
  width: 100%;
  margin: 0 0 0.8rem 0;
  max-width: 300px;
}

#Fiesta .fiesta-subtitle {
  font-size: 1.6rem;
  font-family: var(--font-serif);
  font-weight: 600;
  color: #C0C0C0;
  margin: 0.8rem 0 0.3rem 0;
  line-height: 1.3;
}

#Fiesta .fiesta-text {
  font-size: 1rem;
  font-family: var(--font-sans);
  color: #C0C0C0;
  margin: 0 0 0.6rem 0;
  line-height: 1.4;
}

#Fiesta .fiesta-btn {
  background: var(--gradient-green);
  border: none;
  border-radius: 10px;
  box-sizing: border-box;
  color: var(--color-text-light);
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  height: 41px;
  line-height: 17px;
  margin: 0px 5px 0.8rem 5px;
  min-width: 230px;
  padding: 12px 15px;
  text-align: center;
  transition: all 0.5s ease;
  width: 230px;
  box-shadow: 0 4px 15px rgba(0, 45, 39, 0.4), 0 0 20px rgba(255, 255, 255, 0.15);
}

/* Floral backgrounds */
#floralBackground,
#floralBackgroundCards {
  position: absolute;
  width: 200px;
  height: 280px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  transition: opacity 0.6s ease-in-out;
  transform: rotate(90deg);
}

#floralBackground {
  left: -50px;
  top: 400px;
}

#floralBackgroundCards {
  right: -50px;
  top: 1650px;
  transform: rotate(90deg) scaleY(-1);
}

#floralBackground lottie-player,
#floralBackgroundCards lottie-player {
  width: 100%;
  height: 100%;
  max-width: 200px;
  max-height: 280px;
}

/* Recorrido */
#recorrido {
  background: transparent;
  padding: 4rem 1rem;
  text-align: center;
  font-family: var(--font-fraunces);
  margin-top: 0;
  margin-bottom: 2rem;
  box-sizing: border-box;
  position: relative;
}

#recorrido .recorrido-container {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#recorrido .recorrido-separator-top {
  width: 100%;
  margin-bottom: 1rem;
  max-width: 300px;
}

#recorrido .recorrido-separator-center {
  width: 100%;
  margin-bottom: 1rem;
  max-width: 300px;
}

#recorrido .recorrido-title {
  font-size: 2.5rem;
  font-family: var(--font-serif);
  color: #C0C0C0;
  margin-bottom: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.2;
  text-align: center;
}

#recorrido .recorrido-subtitle {
  font-size: 1rem;
  font-family: var(--font-sans);
  color: #E0E0E0;
  margin-bottom: 1rem;
  line-height: 1.5;
  text-align: center;
  max-width: 400px;
}

#recorrido .recorrido-icon {
  margin-bottom: 1rem;
}

#recorrido .recorrido-separator-bottom {
  width: 100%;
  margin-top: 1rem;
  max-width: 300px;
}

/* ============================================
   MODALES
   ============================================ */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1040;
}

.modal-content {
  max-width: 90vw;
  width: 100%;
  margin: 0 auto;
  top: 20%;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  padding: 1rem;
  position: relative;
  z-index: 1050;
  text-align: center;
  box-shadow: 0 8px 30px 8px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Modal Mapa */
#mapModalfiesta {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

#mapModalfiesta .map-modal-content {
  background: #fff8f0;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  padding: 1.5rem;
  position: relative;
  text-align: center;
  box-shadow: 0 8px 30px 8px rgba(0, 0, 0, 0.2);
}

#mapModalfiesta .map-close-btn {
  position: absolute;
  top: -12px;
  right: -4px;
  background: var(--gradient-green);
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  color: var(--color-text-light);
  font-weight: bold;
  cursor: pointer;
  font-family: Arial, sans-serif;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

#mapModalfiesta .map-title {
  font-family: var(--font-serif);
  background: var(--gradient-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

#mapModalfiesta .map-iframe {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 12px;
}

#mapModalfiesta .map-gps-btn {
  margin-top: 1rem;
  display: inline-block;
  background: var(--gradient-green);
  color: var(--color-text-light);
  font-size: 16px;
  font-family: var(--font-sans);
  border: none;
  border-radius: 10px;
  width: 200px;
  padding: 12px 15px;
  text-align: center;
  text-decoration: none;
  height: 41px;
  line-height: 17px;
  box-sizing: border-box;
  box-shadow: 0 4px 15px rgba(0, 45, 39, 0.4), 0 0 20px rgba(255, 255, 255, 0.15);
  transition: all 0.5s ease;
}

/* Modal Confirmar Asistencia */
#confirmarModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

#confirmarModal .confirmar-modal-content {
  background: #fff8f0;
  border-radius: 12px;
  width: 85vw;
  max-width: 400px;
  height: 80vh;
  overflow: hidden;
  padding: 1.5rem;
  position: relative;
  text-align: center;
  box-shadow: 0 8px 30px 8px rgba(0, 0, 0, 0.2);
}

#confirmarModal .confirmar-close-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--gradient-green);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  color: var(--color-text-light);
  font-weight: bold;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 1.2rem;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

#confirmarModal .confirmar-iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: none;
}

/* Modal Regalos */
#regalosModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1050;
  align-items: center;
  justify-content: center;
}

#regalosModal .regalos-modal-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#regalosModal .regalos-modal-content {
  background-color: #fffaf0;
  border-radius: 24px;
  padding: 2rem 1.5rem;
  max-width: 300px;
  width: 90vw;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#regalosModal .regalos-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gradient-green);
  border: none;
  color: var(--color-text-light);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: bold;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

#regalosModal .regalos-title {
  font-family: var(--font-serif);
  background: var(--gradient-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 0;
  text-align: center;
  width: 100%;
}

#regalosModal .regalos-text {
  font-family: var(--font-sans);
  color: #E0E0E0;
  font-size: 1rem;
  text-align: center;
  width: 100%;
}

#regalosModal .regalos-copy-btn {
  max-width: 200px;
  width: 100%;
  margin: 0 auto;
  margin-top: 1rem;
}

/* Modal Sugerir Canción */
#sugerir {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

#sugerir .sugerir-modal-content {
  background: #fff8f0;
  border-radius: 12px;
  width: 85vw;
  max-width: 400px;
  height: 80vh;
  overflow: hidden;
  padding: 1.5rem;
  position: relative;
  text-align: center;
  box-shadow: 0 8px 30px 8px rgba(0, 0, 0, 0.2);
}

#sugerir .sugerir-close-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: #d79330;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 1.2rem;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

#sugerir .sugerir-iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: none;
}

/* ============================================
   CARRUSEL (RECORRIDO)
   ============================================ */
#recorrido .carousel-wrapper {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 2rem;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background-color: transparent;
  backdrop-filter: blur(10px);
  border: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3),
              0 0 0 1px rgba(192, 192, 192, 0.35),
              0 0 2px rgba(220, 220, 220, 0.4),
              inset 0 1px 3px rgba(255, 255, 255, 0.6),
              inset 0 -1px 3px rgba(192, 192, 192, 0.25);
  height: 350px;
}

#recorrido .carousel-container {
  display: flex;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
  height: 100%;
  position: relative;
}

#recorrido .carousel-slide {
  flex-shrink: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

#recorrido .polaroid-card {
  width: 100%;
  max-width: 100%;
  height: 100%;
  background-color: transparent;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

#recorrido .polaroid-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  display: block;
}

#recorrido .carousel-slide img:hover {
  transform: scale(1.02);
}

/* Flechas de navegación del carrusel */
#recorrido .carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 45, 39, 0.9);
  border: 2px solid #002d27;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(0, 45, 39, 0.4), 0 0 20px rgba(255, 255, 255, 0.15);
}

#recorrido .carousel-arrow:hover {
  background: rgba(0, 77, 66, 0.95);
  border-color: #004d42;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 45, 39, 0.6), 0 0 25px rgba(255, 255, 255, 0.2);
}

#recorrido .carousel-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

#recorrido .carousel-arrow-prev {
  left: 10px;
}

#recorrido .carousel-arrow-next {
  right: 10px;
}

#recorrido .carousel-arrow svg {
  width: 20px;
  height: 20px;
}

#recorrido .carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #C0C0C0;
  cursor: pointer;
  transition: opacity 0.3s;
  opacity: 0.5;
}

#recorrido .carousel-dot.active {
  opacity: 1;
}

#recorrido .carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  max-width: 100%;
}

/* Instagram Section */
#instagram {
  background: transparent;
  padding: 3rem 1rem;
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  box-sizing: border-box;
}

#instagram .instagram-title {
  font-family: var(--font-serif);
  color: #C0C0C0;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

#instagram .instagram-subtitle {
  font-family: var(--font-serif);
  color: #C0C0C0;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

#instagram .instagram-lottie {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

#instagram .instagram-username {
  font-size: 1.5rem;
  font-family: var(--font-sans);
  color: #E0E0E0;
  font-weight: 600;
  margin-bottom: 1rem;
}

#instagram .instagram-btn {
  max-width: 250px;
  width: 100%;
  margin: 0 auto;
}

/* Footer */
footer {
  background: transparent;
  padding: 2rem 1rem 1.5rem 1rem;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  box-sizing: border-box;
}

footer .footer-text {
  font-family: var(--font-sans);
  color: #FFFFFF;
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  opacity: 0.7;
  margin: 0;
  line-height: 1.5;
}

footer .footer-link {
  color: #FFFFFF;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

footer .footer-link:hover {
  opacity: 1;
}

/* Sección de cierre */
.cierre-section {
  background: transparent;
  padding: 3rem 1rem;
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  box-sizing: border-box;
}

.cierre-title {
  font-family: var(--font-serif);
  color: #C0C0C0;
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ============================================
   RESPONSIVE: MOBILE FIRST
   ============================================ */

/* En pantallas móviles, mostrar contenido y ocultar mensaje desktop */
@media screen and (max-width: 768px) {
  .only-mobile {
    display: block !important;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }
  
  .only-desktop {
    display: none !important;
  }
}

/* ============================================
   HERO SECTION RESPONSIVE
   ============================================ */
@media (min-width: 769px) {
  .parallax-background {
    width: 100%;
    height: 100vh;
  }
  
  .hero-content-modal {
    min-height: 100vh;
    height: 100vh;
    padding: 0 0 7rem 0;
  }
}

@media (max-width: 768px) {
  .parallax-background {
    width: 100%;
    height: 100vh;
  }
  
  .hero-content-modal {
    min-height: 100vh;
    height: 100vh;
    padding: 0 0 6rem 0;
  }
  
  .hero-content-modal > div {
    gap: 0.4rem !important;
    padding: 0.8rem 0.5rem !important;
  }
  
  .hero-content-modal h1 {
    font-size: 5.5rem !important;
    margin: 50px 0 0 0 !important;
  }
  
  .hero-content-modal h2 {
    font-size: 3rem !important;
    margin: 1rem 0 !important;
  }
  
  .hero-content-modal .fecha {
    font-size: 32px !important;
    margin-bottom: 30px !important;
  }
  
  .hero-content-modal .fecha::before,
  .hero-content-modal .fecha::after {
    width: 55px !important;
  }
  
  .hero-content-modal .fecha::before {
    left: -65px !important;
  }
  
  .hero-content-modal .fecha::after {
    right: -65px !important;
  }
  
  .hero-adorno-container {
    max-width: 420px !important;
    margin-top: 0 !important;
    margin-bottom: 1.5rem !important;
  }
  
  .hero-adorno {
    max-width: 420px !important;
    max-height: 190px !important;
  }
  
  .hero-quote-container {
    max-width: 450px !important;
    padding: 0 !important;
    margin-top: 3rem !important;
    background-color: transparent !important;
  }
  
  .hero-quote-container .hero-quote {
    font-size: 28px !important;
    line-height: 1.5 !important;
    padding: 3rem 1.5rem 3rem 1.5rem !important;
  }
  
  .hero-quote-container .quote-open,
  .hero-quote-container .quote-close {
    width: 34px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  
  .hero-quote-container .quote-open {
    top: 0.4rem !important;
  }
  
  .hero-quote-container .quote-close {
    bottom: 0.4rem !important;
  }
  
  .hero-arrow-container {
    margin-top: 1.5rem !important;
  }
  
  .hero-arrow-container lottie-player {
    width: 95px !important;
    height: 95px !important;
    max-width: 95px !important;
    max-height: 95px !important;
  }
}

@media (max-width: 640px) {
  .parallax-background {
    width: 100%;
    height: 100vh;
  }
  
  .parallax-background::before {
    background-size: cover;
    background-position: center center;
    height: 120%;
  }
  
  .hero-content-modal {
    min-height: 100vh;
    height: 100vh;
    padding: 0 0 5rem 0;
  }
  
  .hero-content-modal > div {
    gap: 0.5rem !important;
    padding: 1rem 0.8rem !important;
  }
  
  .hero-content-modal h1 {
    font-size: 5rem !important;
    margin: 45px 0 0 0 !important;
  }
  
  .hero-content-modal h2 {
    font-size: 2.8rem !important;
  }
  
  .hero-content-modal .fecha {
    font-size: 30px !important;
    margin-bottom: 28px !important;
  }
  
  .hero-content-modal .fecha::before,
  .hero-content-modal .fecha::after {
    width: 50px !important;
  }
  
  .hero-content-modal .fecha::before {
    left: -60px !important;
  }
  
  .hero-content-modal .fecha::after {
    right: -60px !important;
  }
  
  .hero-adorno-container {
    max-width: 380px !important;
    margin-top: 0 !important;
    margin-bottom: 1.3rem !important;
  }
  
  .hero-adorno {
    max-width: 380px !important;
    max-height: 170px !important;
  }
  
  .hero-quote-container {
    max-width: 420px !important;
    padding: 0 !important;
    margin-top: 2.8rem !important;
    background-color: transparent !important;
  }
  
  .hero-quote-container .hero-quote {
    font-size: 26px !important;
    padding: 2.8rem 1.5rem 2.8rem 1.5rem !important;
  }
  
  .hero-quote-container .quote-open,
  .hero-quote-container .quote-close {
    width: 30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  
  .hero-quote-container .quote-open {
    top: 0.35rem !important;
  }
  
  .hero-quote-container .quote-close {
    bottom: 0.35rem !important;
  }
  
  .hero-arrow-container {
    margin-top: 1.3rem !important;
  }
  
  .hero-arrow-container lottie-player {
    width: 90px !important;
    height: 90px !important;
    max-width: 90px !important;
    max-height: 90px !important;
  }
}

@media (max-width: 480px) {
  .parallax-background {
    width: 100%;
    height: 100vh;
  }
  
  .parallax-background::before {
    background-size: cover;
    background-position: center center;
    height: 120%;
  }
  
  .hero-content-modal {
    min-height: 100vh;
    height: 100vh;
    padding: 0 0 4rem 0;
  }
  
  .hero-content-modal > div {
    gap: 0.4rem !important;
    padding: 0.8rem 0.6rem !important;
  }
  
  .hero-content-modal h1 {
    font-size: 4.5rem !important;
    margin: 40px 0 0 0 !important;
  }
  
  .hero-content-modal h2 {
    font-size: 2.5rem !important;
  }
  
  .hero-content-modal .fecha {
    font-size: 28px !important;
    margin-bottom: 25px !important;
  }
  
  .hero-content-modal .fecha::before,
  .hero-content-modal .fecha::after {
    width: 45px !important;
  }
  
  .hero-content-modal .fecha::before {
    left: -55px !important;
  }
  
  .hero-content-modal .fecha::after {
    right: -55px !important;
  }
  
  .hero-adorno-container {
    max-width: 340px !important;
    margin-top: 0 !important;
    margin-bottom: 1.2rem !important;
  }
  
  .hero-adorno {
    max-width: 340px !important;
    max-height: 150px !important;
  }
  
  .hero-quote-container {
    max-width: 380px !important;
    padding: 0 !important;
    margin-top: 2.5rem !important;
    background-color: transparent !important;
  }
  
  .hero-quote-container .hero-quote {
    font-size: 24px !important;
    line-height: 1.4 !important;
    padding: 2.5rem 1.4rem 2.5rem 1.4rem !important;
  }
  
  .hero-quote-container .quote-open,
  .hero-quote-container .quote-close {
    width: 28px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  
  .hero-quote-container .quote-open {
    top: 0.3rem !important;
  }
  
  .hero-quote-container .quote-close {
    bottom: 0.3rem !important;
  }
  
  .hero-arrow-container {
    margin-top: 1.2rem !important;
  }
  
  .hero-arrow-container lottie-player {
    width: 85px !important;
    height: 85px !important;
    max-width: 85px !important;
    max-height: 85px !important;
  }
  
  .hero-content-modal::before {
    left: 10px !important;
  }
  
  .hero-content-modal::after {
    right: 10px !important;
  }
}

@media (max-width: 375px) {
  .parallax-background {
    width: 100%;
    height: 100vh;
  }
  
  .parallax-background::before {
    background-size: cover;
    background-position: center center;
    height: 120%;
  }
  
  .hero-content-modal {
    min-height: 100vh;
    height: 100vh;
    padding: 0 0 3.5rem 0;
  }
  
  .hero-content-modal > div {
    gap: 0.3rem !important;
    padding: 0.6rem 0.5rem !important;
  }
  
  .hero-content-modal h1 {
    font-size: 3.8rem !important;
    margin: 35px 0 0 0 !important;
  }
  
  .hero-content-modal h2 {
    font-size: 2.2rem !important;
  }
  
  .hero-content-modal .fecha {
    font-size: 26px !important;
    margin-bottom: 22px !important;
  }
  
  .hero-content-modal .fecha::before,
  .hero-content-modal .fecha::after {
    width: 40px !important;
  }
  
  .hero-content-modal .fecha::before {
    left: -48px !important;
  }
  
  .hero-content-modal .fecha::after {
    right: -48px !important;
  }
  
  .hero-adorno-container {
    max-width: 300px !important;
    margin-top: 0 !important;
    margin-bottom: 1rem !important;
  }
  
  .hero-adorno {
    max-width: 300px !important;
    max-height: 130px !important;
  }
  
  .hero-quote-container {
    max-width: 340px !important;
    padding: 0 !important;
    margin-top: 2.2rem !important;
    background-color: transparent !important;
  }
  
  .hero-quote-container .hero-quote {
    font-size: 22px !important;
    line-height: 1.4 !important;
    padding: 2.2rem 1.2rem 2.2rem 1.2rem !important;
  }
  
  .hero-quote-container .quote-open,
  .hero-quote-container .quote-close {
    width: 30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  
  .hero-quote-container .quote-open {
    top: 0.25rem !important;
  }
  
  .hero-quote-container .quote-close {
    bottom: 0.25rem !important;
  }
  
  .hero-arrow-container {
    margin-top: 1rem !important;
  }
  
  .hero-arrow-container lottie-player {
    width: 78px !important;
    height: 78px !important;
    max-width: 78px !important;
    max-height: 78px !important;
  }
}

@media (max-width: 320px) {
  .parallax-background {
    width: 100%;
    height: 100vh;
  }
  
  .parallax-background::before {
    background-size: cover;
    background-position: center center;
    height: 120%;
  }
  
  .hero-content-modal {
    min-height: 100vh;
    height: 100vh;
    padding: 0 0 3rem 0;
  }
  
  .hero-content-modal > div {
    gap: 0.25rem !important;
    padding: 0.5rem 0.4rem !important;
  }
  
  .hero-content-modal h1 {
    font-size: 3.2rem !important;
    margin: 30px 0 0 0 !important;
  }
  
  .hero-content-modal h2 {
    font-size: 1.9rem !important;
  }
  
  .hero-content-modal .fecha {
    font-size: 24px !important;
    margin-bottom: 20px !important;
  }
  
  .hero-content-modal .fecha::before,
  .hero-content-modal .fecha::after {
    width: 35px !important;
  }
  
  .hero-content-modal .fecha::before {
    left: -42px !important;
  }
  
  .hero-content-modal .fecha::after {
    right: -42px !important;
  }
  
  .hero-adorno-container {
    max-width: 260px !important;
    margin-top: 0 !important;
    margin-bottom: 0.8rem !important;
  }
  
  .hero-adorno {
    max-width: 260px !important;
    max-height: 110px !important;
  }
  
  .hero-quote-container {
    max-width: 300px !important;
    padding: 0 !important;
    margin-top: 2rem !important;
    background-color: transparent !important;
  }
  
  .hero-quote-container .hero-quote {
    font-size: 20px !important;
    line-height: 1.3 !important;
    padding: 2rem 1rem 2rem 1rem !important;
  }
  
  .hero-quote-container .quote-open,
  .hero-quote-container .quote-close {
    width: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  
  .hero-quote-container .quote-open {
    top: 0.2rem !important;
  }
  
  .hero-quote-container .quote-close {
    bottom: 0.2rem !important;
  }
  
  .hero-arrow-container {
    margin-top: 0.9rem !important;
  }
  
  .hero-arrow-container lottie-player {
    width: 72px !important;
    height: 72px !important;
    max-width: 72px !important;
    max-height: 72px !important;
  }
  
  .hero-content-modal::before {
    left: 5px !important;
  }
  
  .hero-content-modal::after {
    right: 5px !important;
  }
}

/* ============================================
   WELCOME MODAL RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  #welcomeModal {
    padding: 1rem;
  }
  
  #welcomeModal h1 {
    font-size: 3.5rem !important;
  }
  
  #welcomeModal h2 {
    font-size: 4.5rem !important;
  }
  
  #welcomeModal span {
    font-size: 0.9rem !important;
  }
  
  #welcomeModal p[style*="MIS 15 AÑOS"] {
    font-size: 20px !important;
    line-height: 30px !important;
  }
  
  #welcomeModal p:not([style*="MIS 15 AÑOS"]) {
    font-size: 0.85rem !important;
  }
  
  #welcomeModal button {
    min-width: 230px !important;
    width: 230px !important;
    margin: 0px 5px 15px 5px !important;
  }
  
  #welcomeModal div[style*="flex-direction: row"] {
    flex-direction: column !important;
  }
}

@media (max-width: 480px) {
  #welcomeModal h1 {
    font-size: 2.8rem !important;
  }
  
  #welcomeModal h2 {
    font-size: 3.6rem !important;
  }
  
  #welcomeModal span {
    font-size: 0.85rem !important;
  }
  
  #welcomeModal p[style*="MIS 15 AÑOS"] {
    font-size: 18px !important;
    line-height: 27px !important;
  }
  
  #welcomeModal svg[style*="width: 140px"] {
    width: 100px !important;
  }
}

/* ============================================
   CARDS RESPONSIVE
   ============================================ */
@media (max-width: 576px) {
  body,
  .container,
  .main-wrapper,
  .content-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  #floralBackground,
  #floralBackgroundCards {
    display: none !important;
  }
  
  .card-musica, .card-dresscode, .content-item-fiesta {
    max-width: 85vw !important;
    width: 85vw !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  #cards .card-custom {
    max-width: 90vw;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .card-musica .card-text,
  .content-item-fiesta .card-text {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* ============================================
   CUENTA ATRÁS RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  #cuenta-atras .timer-title {
    font-size: 2.5rem !important;
  }
  
  #cuenta-atras #timer .timer-number {
    font-size: 2rem !important;
  }
  
  #cuenta-atras .timer-divider {
    height: 50px !important;
  }
}

@media (max-width: 480px) {
  #cuenta-atras {
    padding: 2rem 1rem !important;
  }
  
  #cuenta-atras .timer-title {
    font-size: 2rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  #cuenta-atras #timer {
    max-width: 100% !important;
    gap: 0.5rem !important;
  }
  
  #cuenta-atras #timer .timer-number {
    font-size: 1.5rem !important;
  }
  
  #cuenta-atras .timer-label {
    font-size: 0.75rem !important;
  }
  
  #cuenta-atras .timer-divider {
    height: 40px !important;
  }
}

/* ============================================
   CARRUSEL RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  #recorrido .recorrido-title {
    font-size: 2rem !important;
  }
  
  #recorrido .carousel-wrapper {
    height: 300px !important;
  }
  
  #recorrido .polaroid-card {
    max-width: 250px;
    height: 270px;
    padding: 0;
  }
  
  #recorrido .carousel-arrow {
    width: 35px;
    height: 35px;
  }
  
  #recorrido .carousel-arrow svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  #recorrido {
    padding: 2rem 1rem !important;
  }
  
  #recorrido .recorrido-title {
    font-size: 1.8rem !important;
  }
  
  #recorrido .recorrido-subtitle {
    font-size: 0.9rem !important;
  }
  
  #recorrido .carousel-wrapper {
    height: 250px !important;
  }
  
  #recorrido .polaroid-card {
    max-width: 200px;
    height: 220px;
    padding: 0;
  }
  
  #recorrido .carousel-dot {
    width: 8px;
    height: 8px;
  }
  
  #recorrido .carousel-arrow {
    width: 32px;
    height: 32px;
  }
  
  #recorrido .carousel-arrow-prev {
    left: 5px;
  }
  
  #recorrido .carousel-arrow-next {
    right: 5px;
  }
  
  #recorrido .carousel-arrow svg {
    width: 16px;
    height: 16px;
  }
}

/* ============================================
   MODALES RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .modal-content {
    max-width: 90%;
    width: auto;
    top: 25%;
    padding: 1rem;
  }
}

/* ============================================
   UTILIDADES RESPONSIVE
   ============================================ */
@media (max-width: 576px) {
  .btn {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
