 body {
     /* Fondo por defecto - se mantendrá si no hay imágenes guardadas */
     background-image: url("/rebuildimages/external_reservation_default_background.png");
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     background-attachment: fixed;
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     margin: 0;
     padding: 0;
     display: flex;
     justify-content: center;
     align-items: center;
     font-family: Arial, sans-serif;
     /* Agregamos transición suave para el cambio de fondos */
     transition: background-image 1s ease-in-out;
 }

 /* Capa de opacidad - puedes controlarla desde el backend */
 body::before {
     content: "";
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     /* La opacidad se controlará dinámicamente */
     background-color: rgba(255, 255, 255, 0.9);
     z-index: -1;
     /* Agregar transición para cambios suaves */
     transition: background-color 0.3s ease;
 }

 /* Clases para diferentes estilos de fondo */
 .bg-cover {
     background-size: cover;
 }

 .bg-contain {
     background-size: contain;
 }

 .bg-fill {
     background-size: 100% 100%;
 }

 .booking-container * {
     box-sizing: border-box;
 }

 /* Contenedor principal centrado */
 .booking-container {
     text-align: center;
     background: transparent;
     padding: 10px 30px 10px 30px;
     border-radius: 15px;
     max-width: 90%;
     position: relative;
     width: 100%;
     display: flex;
     min-height: 100vh;
     max-height: 100vh;
 }

 /* Slides container */
 .slides-container {
     position: relative;
     overflow: hidden;
     min-height: 300px;
     display: flex;
     justify-content: center;
     padding: 0 4rem;
 }

 .slide {
     position: absolute;
     /* top: 0;
     left: 0; */
     width: 100%;
     opacity: 0;
     transform: translateX(50px);
     transition: all 0.4s ease-out;
     pointer-events: none;
     inset: 0;
     min-height: 100%;
     justify-content: center;
     display: flex;
     justify-content: center;
     flex-direction: column;
 }

 .slide.active {
     opacity: 1;
     transform: translateX(0);
     pointer-events: all;
     position: relative;
 }






 .card-container {
     border-radius: 12px;
     padding: 25px;
     max-width: 400px;
     width: 100%;
     margin: 0 auto;
     max-height: 100%;
     overflow: auto;


     /* Fondo blanco profesional y limpio */
     background: #fafafa;
     /* Blanco muy suave */
     border: 1px solid rgba(255, 255, 255, 0.3);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

     /* Alternativas profesionales que puedes usar: */
     /* background: #f8f9fa; */
     /* Blanco grisáceo muy suave */
     /* background: #fefefe; */
     /* Blanco casi puro pero no agresivo */
     /* background: #f5f5f5; */
     /* Blanco ligeramente cálido */
 }

 /* Si quieres casi invisible */
 .card-container.ultra-transparent {
     background: rgba(255, 255, 255, 0.08);
     backdrop-filter: blur(4px);
     -webkit-backdrop-filter: blur(4px);
 }

 /* Para fondos oscuros */
 .card-container.dark-bg {
     background: rgba(255, 255, 255, 0.12);
     backdrop-filter: blur(6px);
     -webkit-backdrop-filter: blur(6px);
 }






 /* Logo */
 .logo {
     margin-bottom: 20px;
 }

 .logo img {
     max-width: 250px;
     height: auto;
 }

 /* Botones de sedes */
 .locations {
     display: flex;
     flex-direction: column;
     gap: 12px;
     margin-bottom: 25px;
 }

 .location-btn {
     padding: 12px 20px;
     border: 2px solid #333;
     background: transparent;
     color: #333;
     border-radius: 8px;
     font-size: 15px;
     font-weight: bold;
     cursor: pointer;
     transition: all 0.3s ease;
     width: 100%;
 }

 .location-btn:hover {
     background: #333;
     color: white;
 }

 /* Redes sociales */
 .social-media {
     display: flex;
     justify-content: center;
     gap: 15px;
     margin-top: 20px;
 }

 .social-icon {
     width: 35px;
     height: 35px;
     border-radius: 50%;
     background: #333;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     text-decoration: none;
     font-size: 16px;
     transition: all 0.3s ease;
 }

 .social-icon:hover {
     transform: scale(1.1);
     background: #555;
 }

 /* Navegación entre slides */
 /* Navegación entre slides */
 .slide-nav {
     position: absolute;
     top: 50%;
     left: 0;
     right: 0;
     transform: translateY(-50%);
     display: flex;
     justify-content: space-between;
     padding: 0 10px;
     pointer-events: none;
     z-index: 100;
     /* Suficiente para superar el fondo */
 }

 .nav-btn {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: #fafafa;
     /* Mismo color que el card-container */
     border: 1px solid rgba(0, 0, 0, 0.1);
     color: #333;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s ease;
     font-size: 18px;
     pointer-events: all;
     z-index: 101;
     /* Un nivel por encima del contenedor */
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
 }

 .nav-btn:hover {
     background: #f0f0f0;
     /* Un tono un poco más oscuro al hover */
     box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
     transform: scale(1.05);
 }

 .nav-btn.hidden {
     opacity: 0;
     pointer-events: none;
 }

 slide3 .card-container {
     border-radius: 12px;
     padding: 25px;
     max-width: 400px;
     width: 100%;
     margin: 0 auto;
     background: #fafafa;
     border: 1px solid rgba(255, 255, 255, 0.3);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
 }

 .card-container.clean-white {
     background: #ffffff;
     border: 1px solid #f0f0f0;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
 }

 .card-container.warm-beige {
     background: #f9f7f4;
     border: 1px solid #f1ede5;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
 }

 .card-container.soft-gray {
     background: #f8f8f8;
     border: 1px solid #e8e8e8;
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
 }

 /* Contenedor principal */
 .reservation-details {
     width: 100%;
 }

 /* Cada item - alineación con space-between */
 .detail-item {
     /* margin-bottom: 15px; */
     padding: 10px;
     border-bottom: 1px solid #eee;
     display: flex;
     justify-content: space-between;
     /* Asegura espacio entre label y control */
     align-items: center;
     gap: 15px;
     /* Espacio consistente entre elementos */
 }

 /* Labels alineados a la izquierda */
 .detail-label {
     font-weight: bold;
     color: #555;
     flex-shrink: 0;
     /* Evita que se encojan */
 }

 /* Contenedores de controles alineados a la derecha */
 .flatpickr-input,
 .number-input-container {
     flex: 1;
     display: flex;
     justify-content: flex-end;
     /* Alinea el contenido a la derecha */
     min-width: 0;
     /* Permite que se ajuste */
 }

 /* Input de fecha - ocupa todo el espacio disponible */
 .flatpickr-input {
     text-align: right;
 }

 /* Contenedor de número - mantiene alineación derecha */
 .number-input-container {
     display: flex;
     align-items: center;
     background: transparent;
     justify-content: flex-end;
     gap: 5px;
 }

 /* Botones minimalistas */
 .number-btn {
     border: none;
     background: transparent;
     color: #555;
     font-size: 18px;
     width: 28px;
     height: 28px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: background-color 0.2s;
     border-radius: 50%;
     flex-shrink: 0;
 }

 .number-btn:hover {
     background: #f0f0f0;
 }

 .number-btn:active {
     background: #e0e0e0;
 }

 /* Input de número */
 .number-input-container .detail-value-input {
     width: 40px;
     text-align: center;
     margin: 0;
 }

 /* Mantener estilos originales de inputs */
 .detail-value-input {
     border: none;
     background: transparent;
     color: #333;
     font-family: inherit;
     font-size: inherit;
     padding: 0;
     margin: 0;
     outline: none;
     appearance: none;
     -webkit-appearance: none;
 }

 .detail-value-input[type="number"] {
     -moz-appearance: textfield;
 }

 .detail-value-input::-webkit-outer-spin-button,
 .detail-value-input::-webkit-inner-spin-button {
     -webkit-appearance: none;
     margin: 0;
 }



 /* Estilos específicos para la tarjeta de contacto - SLIDE3 */
 #slide3 .contact-card {
     border-radius: 15px;
     padding: 20px;
     /* Reducido de 30px */
     text-align: center;
     max-width: 900px;
     margin: 0 auto;
 }

 #slide3 .contact-title {
     color: #2c3e50;
     font-size: 22px;
     /* Reducido de 24px */
     margin-bottom: 15px;
     /* Reducido de 25px */
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 /* Estilos específicos para los detalles de contacto - SLIDE3 */
 #slide3 .contact-details {
     margin-bottom: 15px;
     /* Reducido de 25px */
 }

 #slide3 .contact-detail-item {
     display: flex;
     align-items: center;
     margin-bottom: 10px;
     /* Reducido de 15px */
     padding: 10px 12px;
     /* Reducido de 12px 15px */
     background-color: #f8f9fa;
     border-radius: 8px;
     transition: all 0.3s ease;
 }

 #slide3 .contact-detail-item:hover {
     background-color: #e9ecef;
     transform: translateX(5px);
 }

 #slide3 .contact-detail-icon {
     color: #4a6fa5;
     margin-right: 10px;
     /* Reducido de 12px */
     font-size: 16px;
     /* Reducido de 18px */
     width: 20px;
     /* Reducido de 24px */
     text-align: center;
 }

 #slide3 .contact-detail-value {
     color: #2c3e50;
     font-size: 14px;
     /* Reducido de 16px */
     font-weight: 500;
 }

 /* Estilos específicos para redes sociales - SLIDE3 */
 #slide3 .contact-social-media {
     margin-top: 20px;
     /* Reducido de 30px */
     padding-top: 15px;
     /* Reducido de 20px */
     border-top: 1px solid #eaeaea;
 }

 #slide3 .contact-social-title {
     color: #7f8c8d;
     margin-bottom: 12px;
     /* Reducido de 15px */
     font-size: 13px;
     /* Reducido de 14px */
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 #slide3 .contact-social-icons {
     display: flex;
     justify-content: center;
     gap: 12px;
     /* Reducido de 15px */
 }

 /* Manteniendo el estilo original de los iconos sociales - SLIDE3 */
 #slide3 .contact-social-icons .social-icon {
     width: 32px;
     /* Reducido de 35px */
     height: 32px;
     /* Reducido de 35px */
     border-radius: 50%;
     background: #333;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     text-decoration: none;
     font-size: 14px;
     /* Reducido de 16px */
     transition: all 0.3s ease;
 }

 #slide3 .contact-social-icons .social-icon:hover {
     transform: scale(1.1);
     background: #555;
 }

 /* Estructura de columnas para contacto y mapa - SLIDE3 */
 #slide3 .contact-content-wrapper {
     display: flex;
     gap: 20px;
     /* Reducido de 30px */
     margin-top: 15px;
     /* Reducido de 20px */
     flex-direction: row-reverse;
     align-items: flex-start;
 }

 #slide3 .contact-info-column {
     flex: 1;
     min-width: 0;
 }

 #slide3 .map-column {
     flex: 1;
     min-width: 0;
     max-width: 100%;
 }

 /* Estilos específicos para el contenedor del mapa - SLIDE3 */
 #slide3 .map-container {
     background: #f8f9fa;
     border-radius: 12px;
     padding: 15px;
     /* Reducido de 20px */
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
     width: 100%;
     box-sizing: border-box;
 }

 #slide3 .map-title {
     color: #2c3e50;
     font-size: 16px;
     /* Reducido de 18px */
     text-align: center;
     font-weight: 600;
     margin: 0px;
     margin-bottom: 10px;
     /* Añadido para separación */
 }

 /* Vista previa del mapa - SLIDE3 */
 #slide3 .map-preview {
     margin-bottom: 12px;
     /* Reducido de 15px */
     background: white;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
     min-height: 200px;
     /* Reducido de 250px */
     display: flex;
     align-items: center;
     justify-content: center;
 }

 /* Botones de ubicaciones - SLIDE3 */
 #slide3 .location-buttons {
     display: flex;
     flex-direction: column;
     gap: 8px;
     /* Reducido de 10px */
 }

 #slide3 .location-btn {
     padding: 8px 12px;
     /* Reducido de 10px 15px */
     background: white;
     border: 1px solid #e0e0e0;
     border-radius: 6px;
     cursor: pointer;
     font-size: 13px;
     /* Reducido de 14px */
     color: #2c3e50;
     transition: all 0.3s ease;
     text-align: left;
 }

 #slide3 .location-btn:hover {
     background: #e9ecef;
     border-color: #4a6fa5;
 }

 #slide3 .location-btn.active {
     background: #4a6fa5;
     color: white;
     border-color: #4a6fa5;
 }

 .selected-location-info {
     background: #f8f9fa;
     display: flex;
     gap: 10px;
 }

 .selected-location-name {
     margin: 0 0 5px 0;
     font-size: 16px;
     color: #2c3e50;
     font-weight: 600;
 }

 .selected-location-address {
     font-weight: 400;
 }













 /* CONTENEDOR DE HORARIOS - MANTIENE TU ESTILO ORIGINAL */
.time-slots-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 20px 0;
}

/* BOTONES DE HORARIO - MANTIENE TU ESTILO ORIGINAL */
.time-slot {
    padding: 12px 8px;
    border: 2px solid #333;
    background: transparent;
    color: #333;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-slot:hover {
    background: #f0f0f0;
}

.time-slot.selected {
    background: #333;
    color: white;
    border-color: #333;
}

/* SOLO CUANDO NO HAY HORARIOS - NUEVO COMPORTAMIENTO */
.time-slots-container.only-message {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    grid-template-columns: 1fr; /* Anula el grid de 3 columnas */
}

/* MENSAJE DE NO HORARIOS - SOLO SE MUESTRA CUANDO NO HAY TIME SLOTS */
.no-hours-message {
    display: none;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #e3e6f0;
    border-radius: 12px;
    color: #6c757d;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 400px;
    margin: 0; /* Quita el margin que tenía */
}

.no-hours-message::before {
    content: "⏰";
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
    opacity: 0.7;
    animation: subtle-bounce 2s infinite ease-in-out;
}

.time-slots-container.only-message .no-hours-message {
    display: block;
}

@keyframes subtle-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

 /* slide 5 - fin data */
 /* Estilos específicos para la Slide 5 - APARIENCIA MINIMALISTA */

 /* Scroll vertical para Slide 5 - MEJOR INTEGRACIÓN VISUAL */
 #slide5 .card-container {
     /* max-height: 80vh; */
     /* 80% del viewport height */
     overflow-y: auto;
     /* Scroll vertical */
     overflow-x: hidden;
     /* Evitar scroll horizontal */
     padding-right: 15px;
     /* MARGEN DERECHA AJUSTADA */
     scrollbar-gutter: stable;
     /* Espacio reservado para scrollbar */
 }

 /* Ajuste de ancho solo para pantallas grandes */
 @media (min-width: 1024px) {
     #slide5 .card-container {
         width: 90%;
         max-width: 650px;
         margin: 0 auto;
     }
 }

 /* Personalizar scrollbar para mejor integración visual */
 #slide5 .card-container::-webkit-scrollbar {
     width: 8px;
 }

 #slide5 .card-container::-webkit-scrollbar-track {
     background: transparent;
     margin: 8px 0;
 }

 #slide5 .card-container::-webkit-scrollbar-thumb {
     background: linear-gradient(135deg, #c1c1c1, #a8a8a8);
     border-radius: 8px;
     border: 2px solid transparent;
     background-clip: content-box;
 }

 #slide5 .card-container::-webkit-scrollbar-thumb:hover {
     background: linear-gradient(135deg, #a8a8a8, #909090);
     background-clip: content-box;
 }

 #slide5 .card-container::-webkit-scrollbar-thumb:active {
     background: linear-gradient(135deg, #909090, #787878);
     background-clip: content-box;
 }

 /* Para Firefox - scrollbar más integrada */
 #slide5 .card-container {
     scrollbar-width: thin;
     scrollbar-color: #c1c1c1 transparent;
 }

 /* Textarea con apariencia minimalista */
 .textarea-input {
     resize: vertical;
     min-height: 60px;
     border: none;
     background: transparent;
     color: #333;
     font-family: inherit;
     font-size: inherit;
     padding: 0;
     margin: 0;
     outline: none;
     appearance: none;
     -webkit-appearance: none;
     width: 100%;
     text-align: left;
 }

 .textarea-input:focus {
     background: transparent;
     outline: none;
 }

 /* Contenedor especial para textarea */
 .textarea-container {
     width: 100%;
     margin-top: 5px;
     text-align: right;
     /* Alineación a la derecha como los otros inputs */
 }

 /* Item de detalle con ancho completo para textarea */
 .detail-item-fullwidth {
     flex-direction: column !important;
     align-items: stretch !important;
     margin-bottom: 15px;
     padding: 10px;
     border-bottom: 1px solid #eee;
     display: flex;
     justify-content: space-between;
 }

 .detail-item-fullwidth .detail-label {
     /* margin-bottom: 8px;aa */
     width: 100%;
     font-weight: bold;
     color: #555;
     flex-shrink: 0;
 }

 /* Asegurar que los inputs mantengan la apariencia minimalista ORIGINAL */
 #slide5 .detail-value-input {
     border: none;
     background: transparent;
     color: #333;
     font-family: inherit;
     font-size: inherit;
     padding: 0;
     margin: 0;
     outline: none;
     appearance: none;
     -webkit-appearance: none;
     text-align: right;
     /* Alineación a la derecha */
     flex: 1;
 }

 #slide5 .detail-value-input-specific {
     border: none;
     background: transparent;
     color: #333;
     font-family: inherit;
     font-size: inherit;
     padding: 0;
     margin: 0;
     outline: none;
     appearance: none;
     -webkit-appearance: none;
     flex: 1;
 }

 #slide5 .detail-value-input:focus {
     background: transparent;
     outline: none;
 }

 #slide5 .detail-value-input::placeholder {
     color: #999;
 }

 /* Mantener los items normales con flex horizontal (ESTILO ORIGINAL) */
 #slide5 .detail-item {
     margin-bottom: 15px;
     padding: 10px;
     border-bottom: 1px solid #eee;
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 15px;
 }

 #slide5 .detail-label {
     font-weight: bold;
     color: #555;
     flex-shrink: 0;
 }

 /* Asegurar que el modal se mantenga fixed */
 #authModal {
     position: fixed !important;
     z-index: 1000 !important;
 }

 /* Responsive para diferentes alturas de pantalla */
 @media (max-height: 700px) {
     /* #slide5 .card-container {
        max-height: 75vh;
    } */
 }

 @media (max-height: 600px) {
     #slide5 .card-container {
         max-height: 70vh;
     }
 }

 @media (max-height: 500px) {
     #slide5 .card-container {
         max-height: 65vh;
     }
 }

 @media (max-height: 400px) {
     #slide5 .card-container {
         max-height: 60vh;
     }
 }

 /* Para pantallas muy pequeñas en landscape */
 @media (max-height: 300px) {
     #slide5 .card-container {
         max-height: 55vh;
     }
 }

 /* Asegurar que el contenido no se corte en móviles */
 @media (max-width: 768px) {
     #slide5 .card-container {
         padding-right: 15px;
         /* MARGEN DERECHA CONSISTENTE EN MÓVILES */
     }

     #slide5 .card-container::-webkit-scrollbar {
         width: 6px;
     }

     #slide5 .card-container::-webkit-scrollbar-track {
         margin: 4px 0;
     }
 }

 /* Para tablets y dispositivos medianos */
 /* @media (max-width: 1024px) and (min-height: 600px) {
     #slide5 .card-container {
         max-height: 75vh;
     }
 } */

 /* Estilos para la Slide 6 - Resumen de reserva */
 #slide6 .highlight-info {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
     gap: 12px;
     margin: 20px 0 25px 0;
 }

 #slide6 .highlight-card {
     background: rgba(0, 0, 0, 0.02);
     border: 1px solid rgba(0, 0, 0, 0.08);
     border-radius: 12px;
     padding: 16px;
     display: flex;
     flex-direction: row;
     align-items: center;
     justify-content: center;
     gap: 12px;
     transition: all 0.2s ease;
 }

 #slide6 .highlight-card:hover {
     background: rgba(0, 0, 0, 0.04);
     border-color: rgba(0, 0, 0, 0.12);
 }

 #slide6 .highlight-icon {
     font-size: 20px;
     color: #6c757d;
     flex-shrink: 0;
 }

 #slide6 .highlight-content {
     display: flex;
     flex-direction: column;
     gap: 4px;
     /* Aumentado de 2px a 4px para mejor espaciado */
     min-width: 0;
     align-items: center;
     /* Centrado para uniformidad */
     justify-content: center;
 }

 #slide6 .highlight-label {
     font-size: 11px;
     color: #6c757d;
     font-weight: 500;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     line-height: 1.2;
     /* Mejor control de altura */
 }

 #slide6 .highlight-value {
     font-size: 17px;
     color: #333;
     font-weight: 600;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
     line-height: 1.2;
     text-wrap: auto;
     /* Mejor control de altura */
 }

 /* ESPECÍFICO para tarjeta de fecha - mismo espaciado */
 #slide6 .date-card .date-content {
     display: flex;
     flex-direction: column;
     gap: 10px;
     /* Mismo gap que las demás */
     align-items: center;
     text-align: center;
 }

 #slide6 .highlight-day {
     font-size: 17px;
     /* Mismo tamaño que highlight-value */
     color: #333;
     font-weight: 700;
     line-height: 1.2;
     /* Mismo line-height */
 }

 #slide6 .highlight-month {
     font-size: 11px;
     color: #6c757d;
     font-weight: 500;
     text-transform: capitalize;
     line-height: 1.2;
     /* Mismo line-height */
 }

 /* Ocultar label "Hora" */
 #slide6 .highlight-card:nth-child(3) .highlight-label {
     display: none;
 }

 /* ESTILOS ESPECÍFICOS PARA LA TARJETA DE FECHA */
 #slide6 .date-card .date-content {
     display: flex;
     flex-direction: column;
     gap: 0px;
     align-items: center;
     text-align: center;
 }

 #slide6 .highlight-day {
     font-size: 18px;
     color: #333;
     font-weight: 700;
     line-height: 1;
     margin-bottom: 5px;
 }

 #slide6 .highlight-month {
     font-size: 13px;
     color: #6c757d;
     font-weight: 500;
     text-transform: capitalize;
     line-height: 1;
 }

 /* NUEVA SECCIÓN: Información del reservante LADO A LADO - ACTUALIZADO */
 #slide6 .reservant-info {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 25px;
     margin-top: 20px;
     padding: 0;
 }

 #slide6 .reservant-item {
     display: flex;
     align-items: center;
     gap: 8px;
     min-width: 0;
 }

 #slide6 .reservant-icon {
     font-size: 20px;
     color: #6c757d;
     flex-shrink: 0;
     font-weight: 600;
 }

 #slide6 .reservant-value {
     font-size: 16px;
     color: #333;
     font-weight: 600;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
     min-width: 0;
 }

 /* Estilos para la sección de resumen */
 #slide6 .reservation-summary {
     /* margin: 20px 0; */
     border-radius: 12px;
     padding: 15px;
     background-color: transparent;
 }

 /* NUEVO: Contenedor para motivo y observaciones lado a lado */
 #slide6 .summary-row {
     display: flex;
     gap: 15px;
     margin-bottom: 15px;
     flex-wrap: wrap;
 }

 #slide6 .summary-column {
     flex: 1;
     min-width: 250px;
 }

 /* Estilos actualizados para elementos con íconos - CENTRADO Y PEGADO */
 #slide6 .summary-with-icon {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     padding: 8px;
     height: 100%;
 }

 #slide6 .summary-icon {
     font-size: 20px;
     color: #6c757d;
     flex-shrink: 0;
 }

 #slide6 .summary-text {
     background: transparent;
     border: none;
     line-height: 1.4;
     color: #333;
     word-break: break-word;
     overflow-wrap: break-word;
     text-align: center;
 }

 #slide6 .summary-actions {
     display: flex;
     gap: 12px;
     margin-top: 25px;
 }

 #slide6 .location-btn {
     padding: 12px 24px;
     border-radius: 8px;
     border: none;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.2s ease;
     flex: 1;
 }

 #slide6 .location-btn.secondary {
     background-color: transparent;
     border: 1px solid #6c757d;
     color: #6c757d;
 }

 #slide6 .location-btn.secondary:hover {
     background-color: #6c757d;
     color: white;
     border-color: #6c757d;
 }

 #slide6 .location-btn {
     background-color: #333;
     color: white;
 }

 #slide6 .location-btn:hover {
     background-color: #555;
 }

 #slide6 .card-container {
     max-width: 600px;
     padding: 30px;
     background: white;
     border-radius: 16px;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
     width: 100%;
 }

 #slide6 .summary {
     text-align: center;
 }

 /* Responsive para móviles */
 .slide-auth-container {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 15px;
     margin-bottom: 20px;
     padding: 15px;
     background: #f8f9fa;
     border-radius: 8px;
     border: 1px solid #e9ecef;
 }




 /* Estilos para la tarjeta de políticas */
 .policies-card {
     background: linear-gradient(135deg, rgba(234, 245, 255, 0.8) 0%, rgba(214, 236, 255, 0.9) 100%);
     border: 1px solid rgba(59, 130, 246, 0.2);
     border-radius: 14px;
     padding: 22px;
     box-shadow: 0 6px 16px rgba(59, 130, 246, 0.08);
     transition: all 0.3s ease;
     animation: float 4s ease-in-out infinite;
     position: relative;
     overflow: hidden;
 }

 .policies-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 3px;
     background: linear-gradient(90deg, #3b82f6, #60a5fa, #93c5fd);
     opacity: 0.7;
 }

 .policies-card:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
     border-color: rgba(59, 130, 246, 0.3);
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-5px);
     }
 }

 .policies-header {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 15px;
 }

 .policies-icon {
     font-size: 24px;
     color: #3b82f6;
     flex-shrink: 0;
     filter: drop-shadow(0 2px 3px rgba(59, 130, 246, 0.2));
 }

 .policies-title {
     font-size: 17px;
     color: #1e40af;
     font-weight: 650;
     margin: 0;
     text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
 }

 .policies-content {
     margin-left: 36px;
 }

 .policies-description {
     font-size: 14px;
     color: #374151;
     line-height: 1.55;
     margin: 0;
 }

 /* ============================================= */
 /* ESTILOS COMPACTOS PARA SELECTOR DE CONFIRMACIÓN - CORREGIDO */
 /* ============================================= */

 .confirmation-method-selector {
     margin: 15px 0;
     padding: 16px;
     background: rgba(0, 0, 0, 0.02);
     border: 1px solid rgba(0, 0, 0, 0.08);
     border-radius: 10px;
     box-sizing: border-box;
     /* Asegurar que el padding se incluya en el ancho */
 }

 .confirmation-title {
     font-size: 15px;
     color: #333;
     font-weight: 600;
     margin-bottom: 6px;
     line-height: 1.2;
 }

 .confirmation-description {
     font-size: 13px;
     color: #6c757d;
     margin-bottom: 12px;
     line-height: 1.3;
 }

 .confirmation-methods-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
     gap: 10px;
     width: 100%;
     /* Asegurar que ocupe el 100% del contenedor */
     box-sizing: border-box;
 }

 .confirmation-method-card {
     position: relative;
     width: 100%;
     /* Asegurar que cada card ocupe el 100% de su celda */
     box-sizing: border-box;
 }

 .confirmation-radio {
     position: absolute;
     opacity: 0;
 }

 .confirmation-label {
     display: block;
     cursor: pointer;
     padding: 12px;
     background: white;
     border: 1.5px solid #e9ecef;
     border-radius: 8px;
     transition: all 0.2s ease;
     height: 100%;
     width: 100%;
     /* Asegurar que el label ocupe todo el ancho disponible */
     box-sizing: border-box;
     /* Incluir padding y border en el ancho total */
 }

 .confirmation-radio:checked+.confirmation-label {
     border-color: #333;
     background: rgba(51, 51, 51, 0.03);
     box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
 }

 .confirmation-method-content {
     display: flex;
     align-items: center;
     gap: 10px;
     width: 100%;
     /* Asegurar que el contenido ocupe todo el ancho */
     box-sizing: border-box;
 }

 .confirmation-icon {
     font-size: 20px;
     flex-shrink: 0;
 }

 .whatsapp-icon {
     color: #25D366;
 }

 .email-icon {
     color: #EA4335;
 }

 .confirmation-method-info {
     display: flex;
     flex-direction: column;
     gap: 2px;
     min-width: 0;
     flex: 1;
     width: calc(100% - 30px);
     /* Restar el espacio del icono y gap */
     box-sizing: border-box;
 }

 .confirmation-method-name {
     font-size: 13px;
     font-weight: 600;
     color: #333;
     line-height: 1.2;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
 }

 .confirmation-method-value {
     font-size: 11px;
     color: #6c757d;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
     line-height: 1.2;
 }

 /* Efectos hover más sutiles */
 .confirmation-label:hover {
     border-color: #adb5bd;
     transform: translateY(-1px);
 }

 .confirmation-radio:checked+.confirmation-label:hover {
     border-color: #333;
 }

 /* ============================================= */
 /* SCROLL VERTICAL PARA LA SLIDE 6 - MEJORADO */
 /* ============================================= */

 #slide6 .card-container-with-sidebar {
     max-height: 85vh;
     overflow-y: auto;
     overflow-x: hidden;
     box-sizing: border-box;
     /* Importante para calcular correctamente el tamaño */
 }

 /* Scrollbar personalizado que respeta bordes redondeados */
 #slide6 .card-container-with-sidebar::-webkit-scrollbar {
     width: 6px;
 }

 #slide6 .card-container-with-sidebar::-webkit-scrollbar-track {
     background: rgba(0, 0, 0, 0.02);
     border-radius: 0 8px 8px 0;
     margin: 10px 0;
 }

 #slide6 .card-container-with-sidebar::-webkit-scrollbar-thumb {
     background: rgba(0, 0, 0, 0.15);
     border-radius: 3px;
     transition: background 0.2s ease;
 }

 #slide6 .card-container-with-sidebar::-webkit-scrollbar-thumb:hover {
     background: rgba(0, 0, 0, 0.25);
 }

 /* Para Firefox */
 #slide6 .card-container-with-sidebar {
     scrollbar-width: thin;
     scrollbar-color: rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.02);
 }

 /* Asegurar que el contenido interno mantenga el padding correcto */
 #slide6 .card-container-with-sidebar .main-content,
 #slide6 .card-container-with-sidebar .payment-sidebar {
     padding-right: 8px;
     /* Un poco más de espacio para el scroll */
     box-sizing: border-box;
 }

 /* Contenedor principal del contenido en slide6 */
 #slide6 .main-content {
     width: 100%;
     box-sizing: border-box;
 }

 /* ============================================= */
 /* RESPONSIVE MEJORADO */
 /* ============================================= */

 @media (max-width: 480px) {
     .confirmation-methods-grid {
         grid-template-columns: 1fr;
         gap: 8px;
     }

     .confirmation-method-selector {
         margin: 12px 0;
         padding: 14px;
         width: 100%;
         /* Asegurar ancho completo en móviles */
     }

     .confirmation-label {
         padding: 10px;
         width: 100%;
     }

     .confirmation-method-content {
         gap: 8px;
         width: 100%;
     }

     .confirmation-icon {
         font-size: 18px;
     }

     .confirmation-title {
         font-size: 14px;
     }

     .confirmation-description {
         font-size: 12px;
     }

     .confirmation-method-info {
         width: calc(100% - 26px);
         /* Ajustar para móviles */
     }

     /* Ajustar altura máxima en móviles */
     #slide6 .card-container-with-sidebar {
         max-height: 80vh;
     }

     /* Asegurar que en móviles todo quepa bien */
     #slide6 .main-content {
         padding: 0 5px;
         /* Pequeño ajuste para móviles */
     }

     .slide-auth-container {
         flex-direction: column;
     }
 }

 /* Para pantallas muy pequeñas */
 @media (max-height: 700px) {
     #slide6 .card-container-with-sidebar {
         max-height: 75vh;
     }

     .confirmation-method-selector {
         margin: 10px 0;
         padding: 12px;
     }
 }

 /* Para tablets y pantallas medianas */
 @media (min-width: 481px) and (max-width: 768px) {
     .confirmation-methods-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 10px;
     }

     .confirmation-method-info {
         width: calc(100% - 30px);
     }
 }

 /* Asegurar que no haya desbordamiento en el contenedor principal */
 .booking-container {
     overflow: hidden;
     box-sizing: border-box;
 }

 .slides-container {
     position: relative;
     box-sizing: border-box;
     flex: 1;
     justify-content: center;
     align-content: center;
     padding: 0rem;
     /* display: grid; */
 }

 /* Mantener la apariencia de las esquinas redondeadas con scroll */
 #slide6 .card-container-with-sidebar {
     border-radius: 16px;
     position: relative;
     box-sizing: border-box;
 }

 /* Efecto de desvanecimiento en los bordes del scroll - MEJORADO */
 #slide6 .card-container-with-sidebar::before {
     content: '';
     position: absolute;
     top: 0;
     right: 0;
     width: 8px;
     /* Un poco más ancho para mejor visibilidad */
     height: 100%;
     background: linear-gradient(to bottom,
             rgba(255, 255, 255, 0.2) 0%,
             transparent 15%,
             transparent 85%,
             rgba(255, 255, 255, 0.2) 100%);
     pointer-events: none;
     border-radius: 0 16px 16px 0;
     z-index: 2;
 }

 /* Asegurar que todos los elementos dentro respeten el box-sizing */
 #slide6 .card-container-with-sidebar * {
     box-sizing: border-box;
 }

 /* Estilos específicos para el grid dentro del selector */
 .confirmation-method-selector .confirmation-methods-grid {
     max-width: 100%;
     margin: 0 auto;
 }

 /* Prevenir que las cards se expandan más allá del contenedor */
 .confirmation-method-card {
     max-width: 100%;
     min-width: 0;
     /* Permitir que se reduzcan si es necesario */
 }

 /* Asegurar que el texto no cause desbordamiento */
 .confirmation-method-name,
 .confirmation-method-value {
     max-width: 100%;
     overflow: hidden;
 }

 /* Estilos adicionales para el contenedor principal de slide6 */
 #slide6 {
     width: 100%;
     box-sizing: border-box;
 }

 #slide6 .card-container-with-sidebar {
     width: 100%;
     display: flex;
     flex-wrap: wrap;
     gap: 20px;
 }

 #slide6 .main-content {
     flex: 1;
 }

 #slide6 .payment-sidebar {
     flex: 0 0 300px;
     /* Ancho fijo para el sidebar de pago */
 }

 /* Responsive para el layout de slide6 - CORREGIDO */
 @media (max-width: 768px) {
     #slide6 .card-container-with-sidebar {
         flex-direction: column;
         max-height: none;
         overflow: visible;
     }

     #slide6 .payment-sidebar {
         flex: 0 0 auto;
         width: 100%;
         order: 2;
         /* Mover el pago al final */
         margin-top: 15px;
     }

     #slide6 .main-content {
         order: 1;
         /* Contenido principal primero */
         max-height: none;
         overflow: visible;
     }

     /* Centrar contenido del pago en responsive */
     #slide6 .advance-payment {
         width: 100%;
         display: flex;
         justify-content: center;
     }

     #slide6 .Advance-payment-container {
         width: 100%;
         max-width: 400px;
         text-align: center;
     }

     #slide6 .title-with-icon {
         justify-content: center;
     }
 }

 /* Para tablets específicamente */
 @media (min-width: 481px) and (max-width: 768px) {
     #slide6 .Advance-payment-container {
         max-width: 450px;
     }
 }

 /* Para móviles pequeños */
 @media (max-width: 480px) {
     #slide6 .Advance-payment-container {
         max-width: 100%;
         padding: 0 10px;
     }

     #slide6 .payment-sidebar {
         margin-top: 10px;
     }
 }




 /* ============================================= */
 /* ESTILOS PARA CHECKBOXES MÚLTIPLES */
 /* ============================================= */

 .confirmation-checkbox {
     position: absolute;
     opacity: 0;
 }

 .confirmation-checkbox:checked+.confirmation-label {
     border-color: #333;
     background: rgba(51, 51, 51, 0.03);
     box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
 }

 .confirmation-checkbox:checked+.confirmation-label::after {
     content: '✓';
     position: absolute;
     top: 8px;
     right: 8px;
     width: 18px;
     height: 18px;
     background: #333;
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 12px;
     font-weight: bold;
 }

 /* Efectos hover para checkboxes */
 .confirmation-label:hover {
     border-color: #adb5bd;
     transform: translateY(-1px);
 }

 .confirmation-checkbox:checked+.confirmation-label:hover {
     border-color: #333;
 }

 /* Indicador visual cuando ambos están seleccionados */
 .confirmation-method-card.multiple-selected .confirmation-label {
     border-color: #4a90e2;
     background: rgba(74, 144, 226, 0.05);
 }

 /* Estilos compactos para la Slide 7 - Confirmación de éxito */
 #slide7 .card-container {
     max-width: 850px;
     padding: 18px;
     background: white;
     border-radius: 14px;
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
     width: 100%;
 }

 #slide7 .success-icon {
     margin: 2px 0 6px 0;
     animation: bounceIn 0.5s ease-out;
 }

 #slide7 .success-icon i {
     font-size: 52px;
     color: #10b981;
 }

 #slide7 h2 {
     color: #10b981;
     margin: 4px 0 8px 0;
     font-size: 22px;
     font-weight: 600;
     text-align: center;
 }

 #slide7 .success-message {
     color: #6b7280;
     margin-bottom: 16px;
     text-align: center;
     font-size: 14px;
     line-height: 1.4;
 }

 /* Contenedor principal lado a lado */
 #slide7 .success-content-wrapper {
     display: grid;
     grid-template-columns: 1fr 260px;
     gap: 16px;
     align-items: start;
     margin: 14px 0;
 }

 /* Columna de detalles de reserva */
 #slide7 .reservation-details-column {
     display: flex;
     flex-direction: column;
     gap: 14px;
 }

 /* ===== INFORMACIÓN DESTACADA - TODAS CENTRADAS HORIZONTALMENTE ===== */
 #slide7 .highlight-info {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 8px;
     margin: 0;
 }

 #slide7 .highlight-card {
     background: rgba(0, 0, 0, 0.02);
     border: 1px solid rgba(0, 0, 0, 0.06);
     border-radius: 10px;
     padding: 10px 8px;
     display: flex;
     align-items: center;
     /* Centrado vertical */
     justify-content: center;
     /* CENTRADO HORIZONTAL */
     gap: 8px;
     /* Espacio entre ícono y contenido */
     min-height: 65px;
     transition: all 0.2s ease;
     text-align: center;
     /* Texto centrado */
 }

 #slide7 .highlight-card:hover {
     background: rgba(0, 0, 0, 0.03);
 }

 #slide7 .highlight-icon {
     font-size: 18px;
     color: #10b981;
     flex-shrink: 0;
     width: 24px;
     text-align: center;
 }

 #slide7 .highlight-content {
     display: flex;
     flex-direction: column;
     align-items: center;
     /* CENTRADO en lugar de flex-start */
     text-align: center;
     /* Texto centrado */
     flex: 1;
 }

 #slide7 .highlight-value {
     font-size: 16px;
     font-weight: 700;
     color: #1f2937;
     line-height: 1.1;
 }

 #slide7 .highlight-label {
     font-size: 11px;
     color: #6b7280;
     margin-top: 2px;
 }

 /* Clase específica para la card de fecha - ya no necesita align-items: center */
 #slide7 .date-content {
     /* align-items: center; - Ya no necesario porque todas están centradas */
 }

 #slide7 .highlight-day {
     font-size: 20px;
     font-weight: 700;
     color: #10b981;
     line-height: 1;
 }

 #slide7 .highlight-month {
     font-size: 11px;
     color: #6b7280;
     text-transform: capitalize;
     margin-top: 1px;
 }

 /* ===== INFORMACIÓN DEL RESERVANTE - DISEÑO HORIZONTAL MEJORADO ===== */
 #slide7 .reservant-info-horizontal {
     display: flex;
     flex-wrap: wrap;
     gap: 12px;
     padding: 14px;
     background: rgba(0, 0, 0, 0.015);
     border-radius: 10px;
     border: 1px solid rgba(0, 0, 0, 0.04);
     justify-content: center;
     align-items: center;
 }

 #slide7 .reservant-item-horizontal {
     display: flex;
     align-items: center;
     gap: 6px;
     flex: 1;
     min-width: 120px;
     max-width: 200px;
     justify-content: center;
     padding: 4px 8px;
 }

 #slide7 .reservant-icon-horizontal {
     color: #10b981;
     font-size: 14px;
     flex-shrink: 0;
     width: 16px;
     text-align: center;
 }

 #slide7 .reservant-value-horizontal {
     color: #374151;
     font-size: 13px;
     font-weight: 500;
     text-align: center;
     word-break: break-word;
     flex: 1;
 }

 /* Número de reserva */
 #slide7 .reservation-number {
     background: rgba(16, 185, 129, 0.08);
     border: 1px solid rgba(16, 185, 129, 0.15);
     border-radius: 10px;
     padding: 10px 14px;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 6px;
     font-size: 13px;
 }

 #slide7 .reservation-number i {
     color: #6b7280;
     font-size: 14px;
 }

 #slide7 .reservation-number strong {
     color: #10b981;
     font-size: 14px;
 }

 /* ===== ESTILOS PARA POLÍTICAS ===== */
 #slide7 .slide7-policies-wrapper {
     height: 100%;
 }

 #slide7 .slide7-policy-container {
     background: linear-gradient(135deg, #f8fbff 0%, #f0f7ff 100%);
     border: 1px solid #e0edff;
     border-radius: 10px;
     padding: 12px;
     height: 100%;
     display: flex;
     flex-direction: column;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
 }

 #slide7 .slide7-policy-header {
     margin-bottom: 8px;
     padding: 0;
 }

 #slide7 .slide7-policy-heading {
     color: #0369a1;
     font-size: 13px;
     font-weight: 600;
     margin: 0;
     line-height: 1.2;
     display: flex;
     align-items: flex-start;
     gap: 6px;
     text-align: left;
 }

 #slide7 .slide7-policy-heading-icon {
     color: #0ea5e9;
     font-size: 14px;
     flex-shrink: 0;
     margin-top: 0;
     line-height: 1;
 }

 #slide7 .slide7-policy-body {
     flex: 1;
     display: flex;
     align-items: flex-start;
 }

 #slide7 .slide7-policy-text {
     color: #475569;
     font-size: 11px;
     line-height: 1.3;
     margin: 0;
     white-space: pre-line;
     text-align: left;
     width: 100%;
 }

 /* Botón de finalizar */
 #slide7 .success-actions {
     display: flex;
     justify-content: center;
     margin-top: 18px;
 }

 #slide7 .location-btn.primary {
     background: #10b981;
     border: none;
     padding: 10px 32px;
     font-size: 14px;
     font-weight: 600;
     color: white;
     border-radius: 8px;
     transition: all 0.2s ease;
     cursor: pointer;
 }

 #slide7 .location-btn.primary:hover {
     background: #059669;
     transform: translateY(-1px);
 }

 #slide7 .location-btn.secondary {
     background: #6b7280;
     border: none;
     padding: 10px 32px;
     font-size: 14px;
     font-weight: 600;
     color: white;
     border-radius: 8px;
     transition: all 0.2s ease;
     cursor: pointer;
 }

 #slide7 .location-btn.secondary:hover {
     background: #4b5563;
     transform: translateY(-1px);
 }


 /* Animación de entrada */
 @keyframes bounceIn {
     0% {
         opacity: 0;
         transform: scale(0.3);
     }

     50% {
         opacity: 1;
         transform: scale(1.02);
     }

     100% {
         opacity: 1;
         transform: scale(1);
     }
 }



 /* ===== ESTILOS PARA COMPONENTE DE RESUMEN DE PAGOS ===== */
 #slide6 .advance-payment {
     margin: 25px 0;
     padding: 20px;
     background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
     border: 1px solid #e0e7ff;
     border-radius: 16px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
 }

 #slide6 .Advance-payment-container {
     width: 100%;
 }

 #slide6 .advance-payment-title {
     font-size: 22px;
     font-weight: 700;
     color: #2563eb;
     margin: 0;
     text-align: center;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 0;
 }

 #slide6 .advance-payment-title::before {
     content: none;
     font-size: 24px;
 }

 #slide6 .advance-payment-info {
     font-size: 15px;
     color: #64748b;
     text-align: center;
     margin-bottom: 20px;
     line-height: 1.5;
     padding: 0 10px;
 }

 #slide6 .advance-payment-data {
     background: white;
     padding: 20px;
     border-radius: 12px;
     border: 1px solid #e2e8f0;
     margin-top: 15px;
 }

 #slide6 .advance-payment-subtitle {
     font-size: 18px;
     font-weight: 600;
     color: #1e293b;
     margin-bottom: 20px;
     text-align: center;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     flex-wrap: wrap;
 }

 #slide6 .amount-title {
     color: #475569;
     font-weight: 500;
 }

 #slide6 .amount-value {
     color: #059669;
     font-weight: 700;
     font-size: 20px;
     background: #ecfdf5;
     padding: 4px 12px;
     border-radius: 8px;
     border: 1px solid #d1fae5;
 }

 /* ===== NUEVOS ESTILOS PARA RESUMEN DE PAQUETES ===== */
 #slide6 .packages-summary {
     /* margin-bottom: 20px; */
     padding: 5px;
     background: #f8f9fa;
     border-radius: 8px;
     border-left: 4px solid #4a6fa5;
 }

 #slide6 .packages-title {
     margin: 0 0 10px 0;
     color: #2c3e50;
     font-size: 16px;
     font-weight: 600;
 }

 #slide6 .packages-list {
     margin-bottom: 10px;
 }

 #slide6 .package-item {
     display: block;
     /* CAMBIO: de flex a block para que el precio vaya debajo */
     padding: 5px 0;
     border-bottom: 1px solid #e9ecef;
 }

 #slide6 .package-item:last-child {
     border-bottom: none;
 }

 #slide6 .package-name {
     color: #555;
     font-size: 14px;
     font-weight: 500;
     display: block;
     /* CAMBIO: para que ocupe toda la línea */
     margin-bottom: 4px;
 }

 #slide6 .package-price {
     color: #4a6fa5;
     font-weight: 600;
     font-size: 14px;
     display: block;
     /* CAMBIO: para que vaya debajo del nombre */
     padding-left: 10px;
 }

 #slide6 .packages-total {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 10px 0;
     border-top: 2px solid #dee2e6;
     margin-top: 10px;
 }

 #slide6 .packages-total-label {
     color: #2c3e50;
     font-weight: 600;
     font-size: 15px;
 }

 #slide6 .packages-total-value {
     color: #4a6fa5;
     font-weight: bold;
     font-size: 16px;
 }

 /* ===== ESTILOS PARA SECCIONES DE PAGO ===== */
 #slide6 .advance-payment-section {
     /* padding: 15px 0; */
     border-bottom: 1px solid #e9ecef;
     margin-bottom: 15px;
 }

 #slide6 .total-payment-section {
     padding: 10px 0;
     border-top: 2px solid #4a6fa5;
     margin-top: 15px;
 }

 #slide6 .total-payment-title {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin: 0;
 }

 #slide6 .total-label {
     color: #2c3e50;
     font-size: 18px;
 }

 #slide6 .total-value {
     color: #10b981;
     font-size: 24px;
     font-weight: bold;
 }

 #slide6 .payment-method-section {
     padding-top: 10px;
     border-top: 1px solid #e9ecef;
 }

 /* ===== ESTILOS PARA SELECTOR DE GATEWAY ===== */
 #slide6 .gateway-title {
     font-size: 16px;
     font-weight: 600;
     color: #374151;
     margin-bottom: 8px;
     display: block;
 }

 #slide6 .gateway-select {
     width: 100%;
     max-width: 300px;
     padding: 12px 16px;
     border: 2px solid #e5e7eb;
     border-radius: 10px;
     font-size: 15px;
     font-weight: 500;
     color: #374151;
     background: white;
     cursor: pointer;
     transition: all 0.3s ease;
     appearance: none;
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
     background-repeat: no-repeat;
     background-position: right 16px center;
     background-size: 16px;
 }

 #slide6 .gateway-select:hover {
     border-color: #2563eb;
     box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
 }

 #slide6 .gateway-select:focus {
     outline: none;
     border-color: #2563eb;
     box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
 }

 /* ===== ESTILOS PARA ALERTAS ===== */
 #slide6 .alert {
     padding: 16px;
     border-radius: 10px;
     margin: 15px 0;
     font-size: 14px;
     line-height: 1.5;
     text-align: center;
 }

 #slide6 .alert-danger {
     background-color: #fef2f2;
     border: 1px solid #fecaca;
     color: #dc2626;
 }

 #slide6 .alert-warning {
     background-color: #fffbeb;
     border: 1px solid #fed7aa;
     color: #ea580c;
 }

 /* ===== ESTILOS PARA TRANSFERENCIA BANCARIA (si la descomentas) ===== */
 #slide6 .bank-transfer-title {
     font-size: 18px;
     font-weight: 700;
     color: #2563eb;
     margin: 20px 0 10px 0;
     text-align: center;
 }

 #slide6 .bank-transfer-subtitle {
     color: #475569;
     font-weight: 600;
     min-width: 140px;
     display: inline-block;
 }

 #slide6 .bank-detail {
     margin: 8px 0;
     padding: 8px 0;
     border-bottom: 1px solid #f1f5f9;
 }

 #slide6 .bank-detail:last-child {
     border-bottom: none;
 }

 #slide6 .bank-detail i {
     color: #64748b;
     font-style: normal;
 }

 #slide6 .contact-info {
     text-align: center;
     font-style: italic;
     color: #94a3b8;
     margin-top: 15px;
     font-size: 14px;
 }

 /* ===== EFECTOS DE TRANSICIÓN ===== */
 #slide6 .advance-payment {
     transition: all 0.3s ease;
 }

 #slide6 .advance-payment:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
 }

 /* ===== ESTILOS PARA TABLAS (si las necesitas) ===== */
 #slide6 tr {
     display: block;
     margin: 15px 0;
 }

 #slide6 td {
     display: block;
     width: 100%;
 }

 #slide6 .mt-5 {
     margin-top: 1rem;
 }

 .svg-wrapper {
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .success-svg {
     width: 40px;
     height: auto;
 }

 .title-with-icon {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     margin-bottom: 20px;
 }

 /* ===== RESPONSIVE PARA RESUMEN DE PAGOS ===== */
 @media (max-width: 768px) {
     #slide6 .packages-summary {
         padding: 10px;
     }

     #slide6 .package-item {
         padding: 6px 0;
     }

     #slide6 .package-name,
     #slide6 .package-price {
         font-size: 13px;
     }

     #slide6 .packages-total-label,
     #slide6 .packages-total-value {
         font-size: 14px;
     }

     #slide6 .total-value {
         font-size: 20px;
     }

     #slide6 .advance-payment-data {
         padding: 15px;
     }
 }

 @media (max-width: 480px) {
     #slide6 .packages-summary {
         padding: 8px;
     }

     #slide6 .packages-title {
         font-size: 15px;
     }

     #slide6 .package-name,
     #slide6 .package-price {
         font-size: 12px;
     }

     #slide6 .total-label {
         font-size: 16px;
     }

     #slide6 .total-value {
         font-size: 18px;
     }

     #slide6 .advance-payment {
         padding: 15px;
     }

     #slide6 .advance-payment-title {
         font-size: 20px;
     }
 }

 /* ===== LAYOUT CON SIDEBAR PARA SLIDE 6 ===== */
 #slide6 .card-container-with-sidebar {
     max-width: 1000px;
     padding: 30px;
     background: white;
     border-radius: 16px;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 320px;
     /* Por defecto 2 columnas */
     gap: 30px;
     align-items: start;
     transition: all 0.3s ease;
     /* Suave transición */
 }

 /* Cuando NO hay pago - una sola columna centrada */
 #slide6 .card-container-with-sidebar.no-payment {
     grid-template-columns: 1fr;
     max-width: 600px;
     /* Más estrecho como antes */
 }

 #slide6 .card-container-with-sidebar.no-payment .payment-sidebar {
     display: none;
     /* Oculta completamente el sidebar */
 }

 #slide6 .main-content {
     display: flex;
     flex-direction: column;
 }

 #slide6 .payment-sidebar {
     position: sticky;
     top: 20px;
     height: fit-content;
 }

 /* ===== ESTILOS ACTUALIZADOS PARA EL COMPONENTE DE PAGO EN SIDEBAR ===== */
 #slide6 .advance-payment {
     margin: 0;
     padding: 20px;
     background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
     border: 1px solid #e0e7ff;
     border-radius: 16px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
 }

 #slide6 .title-with-icon {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     margin-bottom: 12px;
 }

 #slide6 .success-svg {
     width: 28px;
     height: 28px;
     flex-shrink: 0;
 }

 #slide6 .advance-payment-title {
     font-size: 20px;
     font-weight: 700;
     color: #2563eb;
     margin: 0;
     text-align: center;
 }

 #slide6 .advance-payment-info {
     font-size: 14px;
     color: #64748b;
     text-align: center;
     margin-bottom: 15px;
     line-height: 1.4;
 }

 #slide6 .advance-payment-data {
     background: white;
     padding: 15px;
     border-radius: 10px;
     border: 1px solid #e2e8f0;
     margin-top: 12px;
 }

 #slide6 .advance-payment-subtitle {
     font-size: 16px;
     font-weight: 600;
     color: #1e293b;
     margin-bottom: 15px;
     text-align: center;
     display: flex;
     flex-direction: column;
     gap: 8px;
 }

 #slide6 .amount-value {
     font-size: 18px;
     padding: 4px 10px;
 }




 /* ===== ESTILOS GENERALES RESPONSIVE ===== */

 /* Asegurar que las slides se vean completas en móvil */
 @media (max-width: 768px) {
     .booking-container {
         min-height: 100vh;
         padding: 0 10px 0 10px;
         display: flex;
         flex-direction: column;
         max-width: unset;
     }

     .slides-container {
         flex: 1;
         display: flex;
         align-items: center;
         justify-content: center;
     }

     .slide {
         width: 100%;
         min-height: auto;
         display: flex;
         flex-direction: column;
         justify-content: center;
         padding: 20px 0;
         max-height: calc(100vh - 20px);
         overflow-y: auto;
     }

     /* Slide 6 con scroll desde el inicio */
     .slide#slide6 {
         justify-content: flex-start;
         align-items: flex-start;
         padding: 10px 0;
     }

     .card-container {
         width: 100%;
         max-width: 100%;
         margin: 0 auto;
         padding: 15px;
         box-sizing: border-box;
         min-height: auto;
         height: auto;
     }
 }

 /* Botón de navegación en esquina superior izquierda para móvil */
 @media (max-width: 768px) {
     .slide-nav {
         position: fixed;
         top: 35px;
         left: 5px;
         z-index: 9;
     }

     .nav-btn {
         width: 40px;
         height: 40px;
         border-radius: 50%;
         background: rgba(255, 255, 255, 0.9);
         border: 1px solid rgba(0, 0, 0, 0.1);
         display: flex;
         align-items: center;
         justify-content: center;
         cursor: pointer;
         box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
     }

     .nav-btn:not(.hidden) {
         display: flex !important;
     }

     .nav-btn i {
         font-size: 18px;
         color: #333;
     }
 }

 /* Grid de selección de horarios - ajustado para móvil */
 @media (max-width: 768px) {
     .time-slots-container {
         grid-template-columns: repeat(3, 1fr);
         gap: 8px;
         padding: 10px 0;
     }

     .time-slot {
         padding: 8px 4px;
         font-size: 12px;
         min-height: 35px;
         border-radius: 6px;
         display: flex;
         align-items: center;
         justify-content: center;
         text-align: center;
     }
 }

 /* Responsive específico para slide3 */
 @media (max-width: 768px) {
     #slide3 .contact-content-wrapper {
         flex-direction: column-reverse;
         gap: 15px;
         /* Reducido de 20px */
     }

     #slide3 .map-column {
         min-width: auto;
         max-width: 100%;
         width: 100%;
     }

     #slide3 .contact-card {
         padding: 15px;
         /* Reducido de 20px */
     }

     #slide3 .contact-title {
         font-size: 18px;
         /* Reducido de 20px */
     }

     #slide3 .contact-detail-item {
         flex-direction: column;
         text-align: center;
         padding: 12px;
         /* Reducido de 15px */
     }

     #slide3 .contact-detail-icon {
         margin-right: 0;
         margin-bottom: 6px;
         /* Reducido de 8px */
     }

     #slide3 .location-buttons {
         flex-direction: row;
         flex-wrap: wrap;
     }

     #slide3 .location-btn {
         flex: 1;
         min-width: 110px;
         /* Reducido de 120px */
         text-align: center;
     }

     #slide3 .contact-social-icons {
         flex-wrap: wrap;
     }
 }

 @media (max-width: 480px) {
     #slide3 .contact-card {
         padding: 12px;
         /* Reducido de 15px */
     }

     #slide3 .map-container {
         padding: 12px;
         /* Reducido de 15px */
     }

     #slide3 .location-buttons {
         flex-direction: column;
     }

     #slide3 .location-btn {
         min-width: auto;
     }

     /* Grid de horarios más pequeño en pantallas muy pequeñas */
     .time-slots-container {
         grid-template-columns: repeat(2, 1fr);
         gap: 6px;
     }

     .time-slot {
         padding: 6px 3px;
         font-size: 11px;
         min-height: 32px;
     }
 }

 /* Responsive para móviles - Slide 4 (horarios) */
 @media (max-width: 480px) {
     .time-slots-container {
         grid-template-columns: repeat(2, 1fr);
     }

     .time-slot {
         padding: 10px 5px;
         font-size: 13px;
     }
 }

 /* Responsive para móviles - Slide 5 */
 @media (max-width: 480px) {
     #slide5 .detail-item {
         flex-direction: column;
         align-items: stretch;
         gap: 8px;
     }

     #slide5 .detail-item .detail-label {
         text-align: left;
     }

     #slide5 .detail-value-input {
         text-align: left;
     }

     .textarea-container {
         text-align: left;
     }

     .detail-item-fullwidth {
         gap: 8px;
     }
 }

 /* Responsive para Slide 6 */
 @media (max-width: 620px) {
     #slide6 .card-container {
         max-width: 90%;
         margin: 0 auto;
         padding: 20px;
     }

     #slide6 .highlight-info {
         grid-template-columns: 1fr;
         gap: 8px;
         margin: 15px 0 15px 0;
     }

     #slide6 .highlight-card {
         padding: 12px;
         gap: 10px;
     }

     #slide6 .highlight-icon {
         font-size: 18px;
     }

     /* #slide6 .highlight-value {
        font-size: 13px;
    } */

     #slide6 .highlight-day {
         font-size: 16px;
     }

     #slide6 .highlight-month {
         font-size: 10px;
     }

     /* Ajustes responsive para información del reservante */
     #slide6 .reservant-info {
         flex-direction: column;
         gap: 15px;
         align-items: center;
     }

     #slide6 .reservant-item {
         gap: 8px;
     }

     #slide6 .reservant-icon {
         font-size: 18px;
     }

     #slide6 .reservant-value {
         font-size: 14px;
         white-space: normal;
         text-overflow: clip;
     }

     #slide6 .summary-row {
         flex-direction: column;
         gap: 10px;
     }

     #slide6 .summary-column {
         min-width: 100%;
     }

     #slide6 .summary-with-icon {
         gap: 10px;
         padding: 8px;
     }

     #slide6 .summary-icon {
         font-size: 18px;
     }

     #slide6 .summary-actions {
         flex-direction: column;
     }
 }

 /* Ajustes para tablets - Slide 6 */
 @media (min-width: 621px) and (max-width: 768px) {
     #slide6 .card-container {
         max-width: 520px;
     }

     #slide6 .reservant-info {
         gap: 20px;
     }

     #slide6 .reservant-value {
         font-size: 14px;
     }
 }

 /* Para pantallas muy pequeñas - Slide 6 */
 @media (max-width: 380px) {
     #slide6 .reservant-info {
         gap: 12px;
     }

     #slide6 .reservant-item {
         flex-direction: column;
         text-align: center;
         gap: 4px;
     }

     #slide6 .reservant-icon {
         font-size: 16px;
     }

     #slide6 .reservant-value {
         font-size: 13px;
     }
 }

 /* Responsive para móviles - Políticas */
 @media (max-width: 620px) {
     .policies-card {
         padding: 18px;
         margin: 18px 0;
         animation: float-mobile 4s ease-in-out infinite;
     }

     @keyframes float-mobile {

         0%,
         100% {
             transform: translateY(0);
         }

         50% {
             transform: translateY(-3px);
         }
     }

     .policies-header {
         gap: 10px;
         margin-bottom: 12px;
     }

     .policies-icon {
         font-size: 22px;
     }

     .policies-title {
         font-size: 16px;
     }

     .policies-content {
         margin-left: 32px;
     }

     .policies-description {
         font-size: 13.5px;
     }
 }

 /* Para pantallas muy pequeñas - Políticas */
 @media (max-width: 380px) {
     .policies-header {
         flex-direction: row;
         text-align: left;
         gap: 10px;
     }

     .policies-content {
         margin-left: 0;
         text-align: left;
     }

     .policies-card {
         padding: 16px;
     }
 }

 /* ===== RESPONSIVE SLIDE 7 ===== */
 @media (max-width: 768px) {
     #slide7 .card-container {
         max-width: 95%;
         padding: 16px;
     }

     #slide7 .success-content-wrapper {
         grid-template-columns: 1fr;
         gap: 14px;
     }

     #slide7 .slide7-policies-wrapper {
         order: -1;
     }

     #slide7 .slide7-policy-container {
         height: auto;
         padding: 10px;
     }

     #slide7 .slide7-policy-heading {
         font-size: 12px;
         gap: 5px;
     }

     #slide7 .slide7-policy-heading-icon {
         font-size: 13px;
     }

     #slide7 .slide7-policy-text {
         font-size: 10px;
     }

     /* Highlight cards en tablet */
     #slide7 .highlight-info {
         grid-template-columns: repeat(3, 1fr);
     }

     /* Reservant info horizontal en tablet */
     #slide7 .reservant-info-horizontal {
         gap: 10px;
         padding: 12px;
     }

     #slide7 .reservant-item-horizontal {
         min-width: 110px;
         max-width: 180px;
     }
 }

 @media (max-width: 620px) {
     #slide7 .card-container {
         padding: 14px;
         max-width: 92%;
     }

     #slide7 .success-icon i {
         font-size: 46px;
     }

     #slide7 h2 {
         font-size: 20px;
         margin: 2px 0 6px 0;
     }

     #slide7 .success-message {
         font-size: 13px;
         margin-bottom: 14px;
     }

     #slide7 .success-content-wrapper {
         gap: 12px;
         margin: 10px 0;
     }

     /* Highlight cards en móvil - una columna */
     #slide7 .highlight-info {
         grid-template-columns: 1fr;
         gap: 6px;
     }

     #slide7 .highlight-card {
         padding: 8px 10px;
         min-height: 55px;
         gap: 10px;
         justify-content: flex-start;
         /* En móvil alineado a izquierda */
     }

     #slide7 .highlight-icon {
         font-size: 16px;
         width: 20px;
     }

     #slide7 .highlight-content {
         align-items: flex-start;
         /* En móvil alineado a izquierda */
         text-align: left;
     }

     #slide7 .highlight-value {
         font-size: 15px;
     }

     #slide7 .highlight-day {
         font-size: 18px;
     }

     /* Reservant info horizontal en móvil - 2 columnas */
     #slide7 .reservant-info-horizontal {
         grid-template-columns: repeat(2, 1fr);
         display: grid;
         gap: 8px;
         padding: 10px;
     }

     #slide7 .reservant-item-horizontal {
         min-width: auto;
         max-width: none;
         flex-direction: column;
         gap: 4px;
         text-align: center;
         padding: 6px;
         justify-content: center;
     }

     #slide7 .reservant-icon-horizontal {
         font-size: 13px;
         width: auto;
     }

     #slide7 .reservant-value-horizontal {
         font-size: 12px;
     }

     #slide7 .reservation-number {
         padding: 8px 12px;
         font-size: 12px;
     }

     #slide7 .slide7-policy-container {
         padding: 8px;
     }

     #slide7 .slide7-policy-heading {
         font-size: 11px;
         gap: 4px;
     }

     #slide7 .slide7-policy-heading-icon {
         font-size: 12px;
     }

     #slide7 .slide7-policy-text {
         font-size: 9px;
         line-height: 1.2;
     }

     #slide7 .success-actions {
         margin-top: 16px;
     }

     #slide7 .location-btn.primary {
         padding: 9px 24px;
         width: 100%;
         max-width: 280px;
         font-size: 13px;
     }
 }

 @media (max-width: 380px) {
     #slide7 h2 {
         font-size: 18px;
     }

     #slide7 .success-message {
         font-size: 12px;
     }

     #slide7 .highlight-card {
         min-height: 50px;
     }

     #slide7 .highlight-value {
         font-size: 14px;
     }

     #slide7 .highlight-day {
         font-size: 16px;
     }

     /* Reservant info en móviles pequeños - una columna */
     #slide7 .reservant-info-horizontal {
         grid-template-columns: 1fr;
         gap: 6px;
     }

     #slide7 .reservant-item-horizontal {
         flex-direction: row;
         justify-content: flex-start;
         text-align: left;
         padding: 4px;
     }

     #slide7 .slide7-policy-heading {
         font-size: 10px;
     }

     #slide7 .slide7-policy-text {
         font-size: 8px;
     }
 }

 /* ===== RESPONSIVE PARA COMPONENTE DE PAGO ===== */
 @media (max-width: 620px) {
     #slide6 .advance-payment {
         margin: 20px 0;
         padding: 15px;
     }

     #slide6 .advance-payment-title {
         font-size: 19px;
         flex-direction: column;
         gap: 5px;
     }

     #slide6 .advance-payment-subtitle {
         font-size: 16px;
         flex-direction: column;
         gap: 10px;
     }

     #slide6 .amount-value {
         font-size: 18px;
         padding: 6px 14px;
     }

     #slide6 .gateway-select {
         max-width: 100%;
         font-size: 14px;
     }

     #slide6 .advance-payment-data {
         padding: 15px;
     }
 }

 @media (min-width: 621px) and (max-width: 768px) {
     #slide6 .advance-payment {
         margin: 22px 0;
         padding: 18px;
     }

     #slide6 .advance-payment-title {
         font-size: 20px;
     }
 }

 /* ===== RESPONSIVE PARA LAYOUT CON SIDEBAR ===== */
 @media (max-width: 900px) {
     #slide6 .card-container-with-sidebar {
         grid-template-columns: 1fr;
         gap: 20px;
         max-width: 600px;
     }

     #slide6 .card-container-with-sidebar.no-payment {
         max-width: 600px;
         /* Mantiene el mismo ancho en móvil */
     }

     #slide6 .payment-sidebar {
         position: static;
         order: -1;
     }

     #slide6 .advance-payment {
         margin-bottom: 0;
     }
 }

 @media (max-width: 620px) {
     #slide6 .card-container-with-sidebar {
         padding: 20px;
         max-width: 95%;
     }

     #slide6 .card-container-with-sidebar.no-payment {
         max-width: 95%;
         /* Responsive también para sin pago */
         padding: 20px;
     }

     #slide6 .title-with-icon {
         gap: 6px;
     }

     #slide6 .success-svg {
         width: 24px;
         height: 24px;
     }

     #slide6 .advance-payment-title {
         font-size: 18px;
     }
 }



 /* Estilos para la nueva Slide 8 */
 #slide8 .additional-services-content {
     text-align: center;
     margin-bottom: 15px;
 }

 #slide8 .services-description {
     color: #666;
     font-size: 15px;
     margin-bottom: 20px;
 }

 /* CONTENEDOR PRINCIPAL MÁS ANCHO - COMO SLIDE 6 */
 #slide8 .card-container {
     max-width: 1000px;
     width: 100%;
     margin: 0 auto;
 }

 /* CONTENEDOR DEL CARRUSEL */
 #slide8 .services-carousel-container {
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
     max-width: 900px;
     margin: 20px auto;
     padding: 0 50px;
 }

 /* BOTONES DEL CARRUSEL */
 #slide8 .carousel-btn {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: #4a6fa5;
     color: white;
     border: none;
     border-radius: 50%;
     width: 40px;
     height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
     z-index: 10;
 }

 #slide8 .carousel-btn:hover {
     background: #3a5a85;
     transform: translateY(-50%) scale(1.1);
 }

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

 #slide8 .carousel-prev {
     left: 0;
 }

 #slide8 .carousel-next {
     right: 0;
 }

 #slide8 .carousel-btn i {
     font-size: 20px;
     font-weight: bold;
 }

 /* CAMBIO IMPORTANTE: Grid por Flexbox para evitar espacios vacíos */
 #slide8 .services-grid {
     display: flex;
     /* Cambiado de grid a flex */
     gap: 25px;
     padding: 30px 10px;
     max-height: 220px;
     /* AUMENTADO de 200px a 220px */
     overflow-x: auto;
     /* Cambiado a auto para scroll cuando sea necesario */
     overflow-y: hidden;
     scroll-behavior: smooth;
     width: 100%;
     scrollbar-width: none;
     /* Ocultar scrollbar en Firefox */
     -ms-overflow-style: none;
     /* Ocultar scrollbar en IE/Edge */
 }

 /* Ocultar scrollbar en Webkit (Chrome, Safari) */
 #slide8 .services-grid::-webkit-scrollbar {
     display: none;
 }

 /* Cards de servicios MÁS GRANDES */
 #slide8 .service-card {
     background: transparent;
     border-radius: 12px;
     overflow: visible;
     /* Cambiado de vuelta a visible */
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     border: 2px solid #f8f9fa;
     display: flex;
     flex-direction: column;
     cursor: pointer;
     position: relative;
     padding: 0;
     height: 160px;
     width: 280px;
     flex-shrink: 0;
 }

 #slide8 .service-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
     border-color: #4a6fa5;
 }

 #slide8 .service-card.selected {
     border-color: #4a6fa5;
     background: transparent;
 }

 /* Título flotante arriba - MITAD FUERA, MITAD DENTRO */
 #slide8 .service-title {
     position: absolute;
     top: 0;
     left: 50%;
     transform: translateX(-50%) translateY(-50%);
     /* Restaurado */
     background: white;
     color: #2c3e50;
     font-size: 14px;
     font-weight: 600;
     margin: 0;
     padding: 6px 16px;
     border-radius: 18px;
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
     white-space: nowrap;
     z-index: 2;
     border: 2px solid #f8f9fa;
 }

 #slide8 .service-card:hover .service-title {
     border-color: #4a6fa5;
     background: #f8f9fa;
 }

 /* Imagen del servicio MÁS GRANDE */
 #slide8 .service-image {
     height: 100%;
     overflow: hidden;
     background: transparent;
     border-radius: 10px;
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 #slide8 .service-image img {
     width: 100%;
     height: 100%;
     object-fit: contain;
     /* Cambiado de cover a contain */
     transition: transform 0.3s ease;
 }

 #slide8 .service-card:hover .service-image img {
     transform: scale(1.08);
 }

 /* Precio flotante abajo - MITAD FUERA, MITAD DENTRO */
 #slide8 .service-price {
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%) translateY(50%);
     /* Restaurado */
     background: #4a6fa5;
     color: white;
     font-size: 15px;
     font-weight: bold;
     margin: 0;
     padding: 6px 18px;
     border-radius: 18px;
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
     white-space: nowrap;
     z-index: 2;
 }



 #slide8 .service-card:hover .service-price {
     background: #3a5a85;
 }

 #slide8 .service-card.selected .service-price {
     background: #2c4a65;
 }

 /* Contenido de la card */
 #slide8 .service-content {
     padding: 0;
     flex-grow: 1;
     display: flex;
     flex-direction: column;
     height: 100%;
 }

 /* Acciones */
 #slide8 .services-actions {
     display: flex;
     gap: 15px;
     justify-content: center;
     align-items: center;
     /* Alinea verticalmente los botones */
     margin-top: 30px;
     flex-wrap: nowrap;
     /* Evita que se envuelvan a otra línea */
 }

 #slide8 .services-actions .location-btn {
     min-width: 160px;
     flex: 0 0 auto;
     /* Evita que los botones se estiren o encojan */
 }

 /* RESPONSIVE - ACTUALIZADO */
 @media (max-width: 900px) {
     #slide8 .services-carousel-container {
         padding: 0 40px;
         max-width: 700px;
     }

     #slide8 .services-grid {
         gap: 20px;
         max-height: 170px;
         /* AUMENTADO de 150px a 170px */
     }

     #slide8 .service-card {
         height: 120px;
         width: 220px;
         padding-top: 16px;
         padding-bottom: 16px;
     }

     #slide8 .carousel-btn {
         width: 35px;
         height: 35px;
     }

     #slide8 .carousel-btn i {
         font-size: 18px;
     }

     #slide8 .service-title {
         font-size: 12px;
         padding: 5px 12px;
     }

     #slide8 .service-price {
         font-size: 13px;
         padding: 5px 14px;
     }
 }

 @media (max-width: 768px) {
     #slide8 .services-carousel-container {
         padding: 0 35px;
         max-width: 500px;
     }

     #slide8 .services-grid {
         gap: 15px;
         max-height: 150px;
         /* AUMENTADO de 130px a 150px */
     }

     #slide8 .service-card {
         height: 100px;
         width: 180px;
         padding-top: 14px;
         padding-bottom: 14px;
     }

     #slide8 .carousel-btn {
         width: 30px;
         height: 30px;
     }

     #slide8 .carousel-btn i {
         font-size: 16px;
     }

     #slide8 .service-title {
         font-size: 11px;
         padding: 4px 10px;
     }

     #slide8 .service-price {
         font-size: 12px;
         padding: 4px 12px;
     }
 }

 /* Estilos para arrastre */
 #slide8 .services-grid.dragging {
     cursor: grabbing;
     scroll-behavior: auto;
 }

 #slide8 .services-grid {
     cursor: grab;
     user-select: none;
 }

 #slide8 .services-grid:active {
     cursor: grabbing;
 }

 /* Mejorar la experiencia táctil en móviles */
 #slide8 .services-grid {
     -webkit-overflow-scrolling: touch;
     touch-action: pan-x;
 }

 /* Mensaje cuando no hay servicios */
 #slide8 .no-services-message {
     text-align: center;
     padding: 40px;
     color: #666;
     font-style: italic;
     font-size: 16px;
     background: #f8f9fa;
     border-radius: 10px;
     margin: 20px 0;
 }

 /* Modal para detalles del servicio */
 /* Modal para detalles del servicio */
 .service-modal {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     display: none;
     align-items: center;
     justify-content: center;
     z-index: 1000;
     padding: 20px;
 }

 .service-modal.active {
     display: flex;
 }

 .service-modal-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.7);
     backdrop-filter: blur(4px);
 }

 .service-modal-content {
     position: relative;
     background: white;
     border-radius: 16px;
     max-width: 500px;
     width: 100%;
     max-height: 90vh;
     overflow-y: auto;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
     animation: modalSlideIn 0.3s ease-out;
 }

 @keyframes modalSlideIn {
     from {
         opacity: 0;
         transform: translateY(-30px) scale(0.9);
     }

     to {
         opacity: 1;
         transform: translateY(0) scale(1);
     }
 }

 .service-modal-close {
     position: absolute;
     top: 15px;
     right: 15px;
     background: #f8f9fa;
     border: none;
     border-radius: 50%;
     width: 36px;
     height: 36px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s ease;
     z-index: 10;
     color: #666;
 }

 .service-modal-close:hover {
     background: #e9ecef;
     color: #333;
     transform: scale(1.1);
 }

 .service-modal-header {
     padding: 25px 25px 0;
     border-bottom: 1px solid #e9ecef;
     margin-bottom: 20px;
 }

 .service-modal-header h2 {
     margin: 0;
     color: #2c3e50;
     font-size: 24px;
     font-weight: 600;
 }

 .service-modal-body {
     padding: 0 25px;
 }

 /* CONTENEDOR PRINCIPAL DE IMAGEN - RESTAURADO */
 .service-modal-image {
     width: 100%;
     height: 200px;
     border-radius: 12px;
     overflow: hidden;
     margin-bottom: 20px;
     background: #f8f9fa;
     position: relative;
 }

 /* ESTILOS PARA LOGO (cuando no hay carrusel) */
 .service-logo-container {
     width: 100%;
     height: 100%;
     display: none;
     align-items: center;
     justify-content: center;
     padding: 20px;
 }

 .service-logo-container.show {
     display: flex;
 }

 #modal-service-logo {
     max-width: 100%;
     max-height: 100%;
     width: auto;
     height: auto;
     object-fit: contain;
 }

 /* ESTILOS ORIGINALES DEL CARRUSEL - RESTAURADOS */
 .image-carousel {
     display: flex;
     width: 100%;
     height: 100%;
     transition: transform 0.3s ease;
 }

 .carousel-slide {
     min-width: 100%;
     height: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .carousel-slide img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 /* CONTROLES DEL CARRUSEL - RESTAURADOS */
 .carousel-control {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: rgba(0, 0, 0, 0.5);
     border: none;
     border-radius: 50%;
     width: 40px;
     height: 40px;
     color: white;
     cursor: pointer;
     z-index: 5;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: background 0.3s ease;
 }

 .carousel-control:hover {
     background: rgba(0, 0, 0, 0.7);
 }

 .carousel-control.prev {
     left: 10px;
 }

 .carousel-control.next {
     right: 10px;
 }

 .carousel-control:disabled {
     opacity: 0.5;
     cursor: not-allowed;
 }

 /* INDICADORES DEL CARRUSEL - RESTAURADOS */
 .carousel-indicators {
     position: absolute;
     bottom: 10px;
     left: 50%;
     display: flex;
     gap: 5px;
     z-index: 5;
 }

 .carousel-indicator {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     border: none;
     background: rgba(255, 255, 255, 0.5);
     cursor: pointer;
     transition: background 0.3s ease;
 }

 .carousel-indicator.active {
     background: white;
 }

 /* Clase para múltiples imágenes (comportamiento original) */
 .service-modal-image.multiple-images .carousel-control,
 .service-modal-image.multiple-images .carousel-indicators {
     display: flex;
 }

 .service-modal-image:not(.multiple-images) .carousel-control,
 .service-modal-image:not(.multiple-images) .carousel-indicators {
     display: none;
 }

 .service-modal-info h3 {
     margin: 0 0 15px 0;
     color: #2c3e50;
     font-size: 20px;
     font-weight: 600;
 }

 .service-modal-description {
     color: #666;
     line-height: 1.6;
     margin-bottom: 20px;
     font-size: 15px;
 }

 .service-modal-price {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 15px;
     background: #f8f9fa;
     border-radius: 10px;
     margin-bottom: 10px;
 }

 .price-label {
     color: #666;
     font-weight: 500;
 }

 .price-value {
     color: #4a6fa5;
     font-size: 20px;
     font-weight: bold;
 }

 .service-modal-actions {
     padding: 20px 25px;
     display: flex;
     gap: 15px;
     border-top: 1px solid #e9ecef;
     margin-top: 10px;
 }

 .service-modal-actions .location-btn {
     flex: 1;
     min-width: auto;
 }

 /* Responsive */
 @media (max-width: 768px) {
     .service-modal-image {
         min-height: 150px;
     }

     #modal-service-logo,
     .carousel-slide img {
         max-height: 200px;
     }

     .service-logo-container,
     .carousel-slide {
         padding: 15px;
     }
 }

 @media (max-width: 480px) {
     .service-modal-image {
         min-height: 120px;
     }

     #modal-service-logo,
     .carousel-slide img {
         max-height: 150px;
     }

     .service-logo-container,
     .carousel-slide {
         padding: 10px;
     }
 }

 /* Responsive para el modal */
 @media (max-width: 768px) {
     .service-modal {
         padding: 10px;
         box-sizing: border-box;
     }

     .service-modal-content {
         max-width: calc(100% - 20px);
         /* Asegura que no toque los bordes */
         width: calc(100% - 20px);
         max-height: 90vh;
         /* Un poco menos para mejor visualización */
         margin: 0 auto;
         /* Centrado */
         box-sizing: border-box;
     }

     .service-modal-header {
         padding: 20px 20px 0;
     }

     .service-modal-body {
         padding: 0 20px;
         box-sizing: border-box;
     }

     .service-modal-actions {
         padding: 15px 20px;
         flex-direction: column;
         box-sizing: border-box;
     }

     .service-modal-image {
         height: 160px;
     }

     /* Asegurar que el contenido no se desborde */
     .service-modal-header h2 {
         font-size: 20px;
         word-wrap: break-word;
     }

     .service-modal-info h3 {
         font-size: 18px;
         word-wrap: break-word;
     }

     .service-modal-description {
         font-size: 14px;
         word-wrap: break-word;
     }
 }

 /* Para pantallas muy pequeñas (móviles pequeños) */
 @media (max-width: 480px) {
     .service-modal {
         padding: 5px;
     }

     .service-modal-content {
         max-width: calc(100% - 10px);
         width: calc(100% - 10px);
         max-height: 85vh;
     }

     .service-modal-header {
         padding: 15px 15px 0;
     }

     .service-modal-body {
         padding: 0 15px;
     }

     .service-modal-actions {
         padding: 12px 15px;
     }

     .service-modal-image {
         height: 140px;
     }

     .service-modal-header h2 {
         font-size: 18px;
     }

     .service-modal-info h3 {
         font-size: 16px;
     }
 }



 /* Carrusel de imágenes en el modal */
 .service-modal-image {
     position: relative;
     width: 100%;
     height: 270px;
     border-radius: 12px;
     overflow: hidden;
     margin-bottom: 20px;
     background: #f8f9fa;
 }

 .image-carousel {
     position: relative;
     width: 100%;
     height: 100%;
     display: flex;
     transition: transform 0.4s ease-in-out;
 }

 .carousel-slide {
     min-width: 100%;
     height: 100%;
     flex-shrink: 0;
 }

 .carousel-slide img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 /* Controles del carrusel */
 .carousel-control {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: rgba(255, 255, 255, 0.8);
     border: none;
     border-radius: 50%;
     width: 36px;
     height: 36px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s ease;
     color: #333;
     z-index: 5;
     opacity: 0;
 }

 .service-modal-image:hover .carousel-control {
     opacity: 1;
 }

 .carousel-control:hover {
     background: rgba(255, 255, 255, 0.95);
     transform: translateY(-50%) scale(1.1);
 }

 .carousel-control.prev {
     left: 10px;
 }

 .carousel-control.next {
     right: 10px;
 }

 .carousel-control:disabled {
     opacity: 0.3;
     cursor: not-allowed;
     transform: translateY(-50%) scale(1);
 }

 /* Indicadores de puntos */
 .carousel-indicators {
     position: absolute;
     bottom: 10px;
     left: 0;
     right: 0;
     display: flex;
     justify-content: center;
     gap: 8px;
     z-index: 5;
 }

 .carousel-indicator {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.5);
     border: none;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .carousel-indicator.active {
     background: rgba(255, 255, 255, 0.95);
     transform: scale(1.2);
 }

 /* Mostrar controles cuando hay múltiples imágenes */
 .service-modal-image.multiple-images .carousel-control {
     opacity: 1;
 }

 /* Responsive para el carrusel */
 @media (max-width: 768px) {
     .service-modal-image {
         height: 160px;
     }

     .carousel-control {
         width: 32px;
         height: 32px;
         opacity: 1;
         /* Siempre visibles en móvil */
     }
 }

 @media (max-width: 480px) {
     .service-modal-image {
         height: 140px;
     }

     .carousel-control {
         width: 28px;
         height: 28px;
     }

     .carousel-indicator {
         width: 6px;
         height: 6px;
     }
 }

 /* ===== COMPONENTE DE MÚLTIPLES PAQUETES SELECCIONADOS ===== */
 .selected-packages-container {
     margin: 20px 0;
     animation: slideDown 0.3s ease-out;
 }

 .selected-packages-title {
     text-align: center;
     color: #2c3e50;
     font-size: 18px;
     font-weight: 600;
     margin-bottom: 15px;
 }

 .selected-packages-list {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     /* 3 columnas fijas */
     gap: 8px;
     max-width: 700px;
     margin: 0 auto;
     justify-items: center;
 }

 .selected-package-card {
     display: flex;
     align-items: center;
     background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
     border: 2px solid #4a6fa5;
     border-radius: 12px;
     padding: 6px 8px;
     box-shadow: 0 2px 8px rgba(74, 111, 165, 0.15);
     position: relative;
     animation: slideInRight 0.3s ease-out;
     width: 100%;
     max-width: 220px;
     min-width: 180px;
     box-sizing: border-box;
 }

 @keyframes slideInRight {
     from {
         opacity: 0;
         transform: translateX(-10px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 .selected-package-image {
     width: 40px;
     height: 40px;
     border-radius: 8px;
     overflow: hidden;
     margin-right: 10px;
     flex-shrink: 0;
     border: 2px solid white;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
 }

 .selected-package-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .selected-package-info {
     flex-grow: 1;
     min-width: 0;
 }

 .selected-package-info h4 {
     margin: 0 0 3px 0;
     color: #2c3e50;
     font-size: 13px;
     font-weight: 600;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
 }

 .selected-package-price {
     color: #4a6fa5;
     font-size: 13px;
     font-weight: bold;
 }

 .selected-package-remove {
     background: #e74c3c;
     color: white;
     border: none;
     border-radius: 50%;
     width: 26px;
     height: 26px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s ease;
     flex-shrink: 0;
     margin-left: 10px;
     font-size: 12px;
 }

 .selected-package-remove:hover {
     background: #c53030;
     transform: scale(1.1);
 }

 .selected-package-remove:active {
     transform: scale(0.95);
 }

 /* Botón de continuar con paquetes */
 #continue-with-package {
     background: #10b981;
     border-color: #10b981;
 }

 #continue-with-package:hover {
     background: #0da271;
     border-color: #0da271;
 }

 /* Total de paquetes */
 .selected-packages-total {
     text-align: center;
     margin-top: 15px;
     padding: 10px;
     background: #f8f9fa;
     border-radius: 8px;
     border: 1px solid #e9ecef;
 }

 .selected-packages-total span {
     font-weight: bold;
     color: #4a6fa5;
 }

 /* ===== LÓGICA PARA DIFERENTES CANTIDADES DE PAQUETES ===== */

 /* Para 1 paquete - ocupa 1 columna y se centra */
 .selected-packages-list:has(.selected-package-card:only-child) {
     grid-template-columns: 1fr;
     max-width: 300px;
 }

 /* Para 2 paquetes - ocupan 2 columnas centradas */
 .selected-packages-list:has(.selected-package-card:nth-child(2):last-child) {
     grid-template-columns: repeat(2, 1fr);
     max-width: 500px;
 }

 /* Para 3 paquetes - ocupan 3 columnas */
 .selected-packages-list:has(.selected-package-card:nth-child(3):last-child) {
     grid-template-columns: repeat(3, 1fr);
     max-width: 700px;
 }

 /* Para 4+ paquetes - se mantiene en 3 columnas pero con filas adicionales */
 .selected-packages-list:has(.selected-package-card:nth-child(4)) {
     grid-template-columns: repeat(3, 1fr);
     max-width: 700px;
 }

 /* ===== RESPONSIVE ===== */

 @media (max-width: 768px) {
     .selected-packages-list {
         grid-template-columns: repeat(2, 1fr);
         /* 2 columnas en tablet */
         max-width: 500px;
         gap: 8spx;
     }

     .selected-package-card {
         padding: 6px 8px;
         max-width: 200px;
         min-width: 160px;
     }

     .selected-package-image {
         width: 35px;
         height: 35px;
         margin-right: 8px;
     }

     .selected-package-info h4 {
         font-size: 12px;
     }

     .selected-package-price {
         font-size: 12px;
     }

     .selected-package-remove {
         width: 24px;
         height: 24px;
         margin-left: 8px;
     }

     /* Ajustes responsive para diferentes cantidades */
     .selected-packages-list:has(.selected-package-card:only-child) {
         grid-template-columns: 1fr;
         max-width: 250px;
     }

     .selected-packages-list:has(.selected-package-card:nth-child(2):last-child) {
         grid-template-columns: repeat(2, 1fr);
         max-width: 400px;
     }

     .selected-packages-list:has(.selected-package-card:nth-child(3)) {
         grid-template-columns: repeat(2, 1fr);
         max-width: 500px;
     }
 }

 @media (max-width: 600px) {
     .selected-packages-list {
         grid-template-columns: 1fr;
         /* 1 columna en móviles pequeños */
         max-width: 300px;
         gap: 8px;
     }

     .selected-package-card {
         padding: 6px 8px;
         max-width: 160px;
         min-width: 140px;
         margin: 0 auto;
         /* Centrar en móvil */
     }

     .selected-package-image {
         width: 32px;
         height: 32px;
         margin-right: 6px;
     }

     .selected-package-info h4 {
         font-size: 11px;
     }

     .selected-package-price {
         font-size: 11px;
     }

     .selected-package-remove {
         width: 22px;
         height: 22px;
         margin-left: 6px;
         font-size: 10px;
     }

     /* En móviles, todos los casos son 1 columna */
     .selected-packages-list:has(.selected-package-card:only-child),
     .selected-packages-list:has(.selected-package-card:nth-child(2):last-child),
     .selected-packages-list:has(.selected-package-card:nth-child(3)),
     .selected-packages-list:has(.selected-package-card:nth-child(4)) {
         grid-template-columns: 1fr;
         max-width: 300px;
     }
 }

 @media (max-width: 480px) {
     .selected-packages-list {
         max-width: 280px;
     }

     .selected-package-card {
         padding: 5px 6px;
         max-width: 140px;
         min-width: 120px;
     }

     .selected-package-image {
         width: 28px;
         height: 28px;
         margin-right: 5px;
     }

     .selected-package-info h4 {
         font-size: 10px;
     }

     .selected-package-price {
         font-size: 10px;
     }

     .selected-package-remove {
         width: 20px;
         height: 20px;
         margin-left: 5px;
     }

     .selected-packages-title {
         font-size: 16px;
     }
 }



 /* Nuevas clases para los botones de servicios */
 .services-action-btn {
     padding: 12px 20px;
     border: 2px solid #333;
     background: transparent;
     color: #333;
     border-radius: 8px;
     font-size: 15px;
     font-weight: bold;
     cursor: pointer;
     transition: all 0.3s ease;
     min-width: 160px;
     /* Ancho fijo en lugar de 100% */
     flex: 0 0 auto;
     /* Mantiene el tamaño fijo */
 }

 .services-action-btn:hover {
     background: #333;
     color: white;
 }

 /* Estilos específicos para el botón primario */
 .services-action-btn.primary {
     background: #4a6fa5;
     border-color: #4a6fa5;
     color: white;
 }

 .services-action-btn.primary:hover {
     background: #3a5a85;
     border-color: #3a5a85;
 }

 /* Estilos específicos para el botón secundario */
 .services-action-btn.secondary {
     background: transparent;
     border-color: #666;
     color: #666;
 }

 .services-action-btn.secondary:hover {
     background: #666;
     color: white;
 }

 /* Acciones */
 #slide8 .services-actions {
     display: flex;
     gap: 15px;
     justify-content: center;
     align-items: center;
     margin-top: 30px;
     flex-wrap: nowrap;
 }

 /* Responsive para los botones */
 @media (max-width: 480px) {
     .services-action-btn {
         min-width: 140px;
         padding: 10px 16px;
         font-size: 14px;
     }

     #slide8 .services-actions {
         gap: 10px;
     }
 }





 
 /* Contenedor principal de información bancaria */
 .bank-transfer-info {
     margin-top: 20px;
     padding: 15px;
     background: #f8f9fa;
     border-radius: 8px;
     border-left: 4px solid #4a90e2;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
     animation: slideDown 0.3s ease-out;
 }

 .bank-transfer-info:hover {
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
 }

 /* Animación de entrada */
 @keyframes slideDown {
     from {
         opacity: 0;
         transform: translateY(-8px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* Título de la sección */
 .bank-transfer-info>div:first-child {
     font-size: 16px;
     font-weight: 700;
     margin-bottom: 10px;
     color: #2c3e50;
 }

 /* Línea separadora superior */
 .bank-transfer-info>hr:first-of-type {
     margin: 8px 0;
     border: none;
     height: 1px;
     background: #dee2e6;
 }

 /* Cada fila de información */
 .bank-transfer-info>div[style*="margin-bottom: 8px"] {
     margin-bottom: 6px !important;
     padding: 0 !important;
     background: transparent !important;
     border: none !important;
     line-height: 1.6;
 }

 /* Labels (strong tags) */
 .bank-transfer-info strong {
     font-weight: 600;
     color: #495057;
     font-size: 14px;
 }

 /* Valores (i tags) */
 .bank-transfer-info i {
     font-style: normal !important;
     color: #212529 !important;
     font-size: 14px;
     font-weight: 400;
     margin-left: 4px;
 }

 /* Línea separadora inferior */
 .bank-transfer-info>hr:last-of-type {
     margin: 10px 0;
     border: none;
     height: 1px;
     background: #dee2e6;
 }

 /* Mensaje de contacto - El texto especial */
 .bank-transfer-info>div:last-child {
     font-size: 14px !important;
     font-weight: 600 !important;
     color: #27ae60 !important;
     /* Verde elegante */
     margin-top: 10px !important;
     padding: 10px 12px !important;
     background: linear-gradient(135deg, #e8f8f0 0%, #d4edda 100%) !important;
     border-radius: 6px !important;
     border: 1px solid #b8e6cc !important;
     text-align: center !important;
     box-shadow: 0 1px 3px rgba(39, 174, 96, 0.1) !important;
 }

 /* Alternativa con color azul (comenta el verde y descomenta esto si prefieres azul) */
 /*
.bank-transfer-info > div:last-child {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #2563eb !important;
    margin-top: 10px !important;
    padding: 10px 12px !important;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%) !important;
    border-radius: 6px !important;
    border: 1px solid #93c5fd !important;
    text-align: center !important;
    box-shadow: 0 1px 3px rgba(37, 99, 235, 0.1) !important;
}
*/

 /* Responsivo para móviles */
 @media (max-width: 768px) {
     .bank-transfer-info {
         padding: 12px;
         margin-top: 15px;
     }

     .bank-transfer-info>div:first-child {
         font-size: 15px;
     }

     .bank-transfer-info strong,
     .bank-transfer-info i {
         font-size: 13px;
     }

     .bank-transfer-info>div:last-child {
         font-size: 13px !important;
         padding: 8px 10px !important;
     }
 }


 /* Contenedor principal - se adapta cuando hay mensaje */
