@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* Variables de diseño premium */
:root {
  --bg-main: #0a192f;
  --bg-card: #112240;
  --bg-card-hover: #172a45;
  --gold: #bf953f;
  --gold-light: #fcf6ba;
  --gold-dark: #aa771c;
  --text-primary: #e6f1ff;
  --text-secondary: #8892b0;
  --text-muted: #626f8a;
  --accent: #e76f51; /* Terracota turco */
  --accent-rgb: 231, 111, 81;
  --success: #2ec4b6;
  --danger: #e63946;
  
  --font-title: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius: 12px;
  --box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
  --glass-bg: rgba(17, 34, 64, 0.75);
  --glass-border: rgba(191, 149, 63, 0.15);
}

/* Reseteo y Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--gold-light);
}

/* Scrollbar personalizado */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-card);
  border-radius: 5px;
  border: 2px solid var(--bg-main);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* Tipografía */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5em;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  color: var(--text-primary);
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 10%;
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Cabecera / Navegación */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(10, 25, 47, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--box-shadow);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 45px;
  height: 45px;
}

.logo-text {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.1;
  color: var(--gold);
}

.logo-text span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-primary);
  letter-spacing: 1.5px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--gold);
}

.btn-admin-nav {
  padding: 8px 16px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--gold) !important;
  font-weight: 600;
}

.btn-admin-nav:hover {
  background-color: rgba(191, 149, 63, 0.1);
}

/* Héroe / Presentación */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  background: linear-gradient(180deg, rgba(10,25,47,0.2) 0%, rgba(10,25,47,0.95) 90%), url('../images/logo.svg') no-repeat center/contain;
  background-blend-mode: overlay;
}

.hero-content {
  max-width: 800px;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text-primary);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero h1 span {
  background: linear-gradient(90deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-block;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  color: var(--bg-main);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px rgba(191, 149, 63, 0.3);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(191, 149, 63, 0.5);
  color: var(--bg-main);
}

/* Contenedores y Secciones */
section {
  padding: 100px 5% 60px 5%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Tarjeta de Programa Activo */
.active-program-card {
  background-color: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.active-program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--accent));
}

.program-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 20px;
}

.program-title-area h2 {
  font-size: 2.2rem;
  color: var(--text-primary);
}

.program-price-tag {
  background-color: rgba(191, 149, 63, 0.1);
  border: 1px solid var(--gold);
  border-radius: var(--border-radius);
  padding: 15px 25px;
  text-align: right;
}

.price-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 1px;
}

.price-value {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}

.price-room-options {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 5px;
  display: flex;
  gap: 15px;
}

.program-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* Incluye y No incluye */
.inclusions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

@media(max-width: 768px) {
  .inclusions-grid {
    grid-template-columns: 1fr;
  }
}

.inclusion-box {
  background: rgba(17, 34, 64, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 25px;
}

.inclusion-box.includes h4 {
  color: var(--success);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.inclusion-box.excludes h4 {
  color: var(--danger);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.inclusion-box ul {
  list-style: none;
}

.inclusion-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.inclusion-box.includes ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

.inclusion-box.excludes ul li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: bold;
}

/* Línea de tiempo interactiva */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 50px auto;
  padding: 20px 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--accent), var(--bg-card));
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

@media (max-width: 768px) {
  .timeline::after {
    left: 31px;
  }
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

@media (max-width: 768px) {
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: var(--bg-main);
  border: 4px solid var(--gold);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .timeline-item::after {
    left: 21px;
    right: auto;
  }
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

@media (max-width: 768px) {
  .timeline-item.right {
    left: 0%;
  }
}

.timeline-item.right::after {
  left: -10px;
}

@media (max-width: 768px) {
  .timeline-item.right::after {
    left: 21px;
  }
}

.timeline-content {
  padding: 20px 30px;
  background-color: var(--bg-card);
  position: relative;
  border-radius: var(--border-radius);
  border: 1px solid var(--glass-border);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.timeline-item:hover .timeline-content {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.timeline-item:hover::after {
  background-color: var(--gold);
}

.timeline-day {
  font-family: var(--font-title);
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.timeline-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.timeline-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Sección de Reserva y Calendario */
.booking-section-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

@media(max-width: 992px) {
  .booking-section-grid {
    grid-template-columns: 1fr;
  }
}

/* Calendario interactivo estilizado */
.calendar-card {
  background-color: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--box-shadow);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calendar-header button {
  background: none;
  border: 1px solid var(--glass-border);
  color: var(--gold);
  padding: 5px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.calendar-header button:hover {
  background-color: rgba(191, 149, 63, 0.1);
}

.calendar-month-year {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: var(--text-primary);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  text-align: center;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  background-color: rgba(255, 255, 255, 0.02);
}

.calendar-day:hover:not(.empty) {
  background-color: rgba(191, 149, 63, 0.2);
  color: var(--gold-light);
}

.calendar-day.empty {
  background: none;
  cursor: default;
}

.calendar-day.today {
  border: 1px solid var(--accent);
  color: var(--accent);
}

.calendar-day.selected {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%) !important;
  color: var(--bg-main) !important;
  font-weight: 700;
}

.calendar-day.range-start, .calendar-day.range-end {
  background-color: var(--gold) !important;
  color: var(--bg-main) !important;
  font-weight: 700;
}

.calendar-day.range-between {
  background-color: rgba(191, 149, 63, 0.15);
  color: var(--gold-light);
}

.calendar-day.confirmed-tour {
  position: relative;
}

.calendar-day.confirmed-tour::after {
  content: '';
  position: absolute;
  bottom: 4px;
  width: 6px;
  height: 6px;
  background-color: var(--success);
  border-radius: 50%;
}

.calendar-legend {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  justify-content: center;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.legend-color {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

.legend-color.selected {
  background-color: var(--gold);
}

.legend-color.confirmed {
  background-color: var(--success);
}

.legend-color.range {
  background-color: rgba(191, 149, 63, 0.15);
  border: 1px solid var(--gold);
}

/* Formulario de reserva */
.booking-form-card {
  background-color: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--bg-main);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(191, 149, 63, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media(max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.price-summary {
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.summary-row.total {
  border-top: 1px solid var(--glass-border);
  padding-top: 15px;
  margin-top: 15px;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.2rem;
}

.summary-row.total span:last-child {
  color: var(--gold);
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  color: #fff !important;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0;
  animation: pulse-ring 2s infinite;
  pointer-events: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background-color: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--gold);
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: var(--box-shadow);
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
  display: block;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}



/* Footer */
footer {
  background-color: #020c1b;
  padding: 40px 5% 20px 5%;
  text-align: center;
  border-top: 1px solid var(--glass-border);
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 35px;
  height: 35px;
}

.footer-logo span {
  font-family: var(--font-title);
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-text {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 20px;
}

/* Animaciones */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Estilos de PWA Banner de Instalación */
.pwa-install-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--bg-card);
  border: 1px solid var(--gold);
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 999;
  max-width: 400px;
  animation: fadeInUp 0.5s ease-out;
  backdrop-filter: blur(10px);
}

.pwa-install-banner p {
  font-size: 0.85rem;
  color: var(--text-primary);
  flex-grow: 1;
}

.pwa-install-banner button {
  padding: 8px 12px;
  background: var(--gold);
  color: var(--bg-main);
  border: none;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: var(--transition);
}

.pwa-install-banner button:hover {
  background-color: var(--gold-light);
}

.pwa-install-banner .close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0 5px;
}

/* ==========================================================================
   Menú Móvil y Ajustes de Responsividad Premium
   ========================================================================== */

/* Botón Hamburguesa del Menú Móvil */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--text-primary);
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Animación del Botón Hamburguesa a "X" */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--gold);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background-color: var(--gold);
}

/* Overlay para cerrar el menú móvil al hacer clic fuera */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(2, 12, 27, 0.75);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Grid de Pasajeros */
.passenger-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 15px;
  margin-bottom: 0;
}

/* Adaptabilidad para Dispositivos Móviles (<= 768px) */
@media (max-width: 768px) {
  /* Cabecera / Navegación Móvil */
  header {
    height: 70px;
    padding: 0 20px;
  }

  .logo-img {
    width: 35px;
    height: 35px;
  }

  .logo-text {
    font-size: 1.05rem;
  }

  .logo-text span {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }

  .menu-toggle {
    display: flex;
  }

  /* Menú Desplegable Drawer */
  #nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 290px;
    height: 100vh;
    background-color: rgba(10, 25, 47, 0.96);
    backdrop-filter: blur(15px);
    border-left: 1px solid var(--glass-border);
    padding: 100px 30px 40px 30px;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1000;
    box-shadow: var(--box-shadow);
  }

  #nav-menu.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    width: 100%;
  }

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

  .nav-links a {
    font-size: 1.1rem;
    display: block;
    width: 100%;
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
  }

  .nav-links a:hover, .nav-links a.active {
    background-color: rgba(191, 149, 63, 0.08);
    color: var(--gold-light);
  }

  .nav-links a::after {
    display: none;
  }

  .btn-admin-nav {
    text-align: center;
    border-radius: 6px;
    padding: 12px !important;
    margin-top: 15px;
    border: 1px solid var(--gold);
    display: block;
  }

  /* Héroe / Presentación Móvil */
  .hero {
    height: 90vh;
    min-height: 500px;
    padding-top: 70px;
  }

  .hero h1 {
    font-size: 2.2rem !important;
    margin-bottom: 15px;
  }

  .hero p {
    font-size: 1rem !important;
    margin-bottom: 30px;
  }

  .btn-primary {
    padding: 14px 28px;
    font-size: 1rem;
  }

  /* Secciones y Contenedores */
  section {
    padding: 60px 4% 40px 4%;
  }

  .section-title {
    font-size: 1.8rem !important;
    margin-bottom: 2rem;
  }

  /* Tarjeta de Programa Activo */
  .active-program-card {
    padding: 20px !important;
    gap: 20px;
    border-radius: 8px;
  }

  .program-header {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .program-title-area h2 {
    font-size: 1.6rem !important;
    text-align: center;
  }

  .program-desc {
    font-size: 0.95rem;
    text-align: center;
    margin-top: 5px;
  }

  .program-price-tag {
    text-align: center;
    padding: 12px 20px;
  }

  .price-value {
    font-size: 1.6rem !important;
  }

  .price-room-options {
    justify-content: center;
    font-size: 0.8rem;
    gap: 10px;
  }

  /* Descarga de PDF */
  .active-program-card div[style*="text-align: right"] {
    text-align: center !important;
    margin-top: 0 !important;
    width: 100%;
  }

  .active-program-card div[style*="text-align: right"] a {
    display: block !important;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .inclusions-grid {
    gap: 15px;
  }

  .inclusion-box {
    padding: 15px;
  }

  /* Calendario Móvil */
  .calendar-card {
    padding: 15px 10px;
  }

  .calendar-header {
    margin-bottom: 15px;
  }

  .calendar-month-year {
    font-size: 1.05rem;
  }

  .calendar-weekdays {
    font-size: 0.75rem;
    margin-bottom: 5px;
  }

  .calendar-day {
    font-size: 0.8rem;
    border-radius: 4px;
  }

  .pax-badge {
    transform: scale(0.85);
    bottom: 0px !important;
  }

  .calendar-legend {
    gap: 10px;
  }

  .legend-item {
    font-size: 0.72rem;
  }

  /* Formulario de reserva */
  .booking-form-card {
    padding: 20px;
  }

  .price-summary h4 {
    font-size: 0.95rem;
  }

  .summary-row {
    font-size: 0.85rem;
  }

  .summary-row.total {
    font-size: 1.05rem;
  }

  /* Botón de WhatsApp flotante */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-icon {
    width: 24px;
    height: 24px;
  }

  /* Voucher y páginas de éxito */
  .voucher-container, .success-card {
    padding: 20px !important;
    margin-top: 90px !important;
  }

  .voucher-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .voucher-status {
    width: 100%;
    text-align: center;
  }

  .detail-item {
    padding: 12px;
  }

  .detail-item span {
    font-size: 0.75rem;
  }

  .detail-item strong {
    font-size: 0.95rem;
  }

  .emergencies-box {
    padding: 15px;
  }

  .emergencies-box h4 {
    font-size: 1rem;
  }

  .emergencies-box p {
    font-size: 0.85rem;
  }

  .emergencies-box p[style*="font-size: 1.1rem"] {
    font-size: 0.95rem !important;
  }

  .upload-section {
    padding: 20px;
  }

  .upload-section h3 {
    font-size: 1.1rem;
  }

  .pwa-install-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
  }
}

@media (max-width: 576px) {
  .passenger-grid {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }
  
  .passenger-card {
    padding: 10px !important;
  }
}
