/* Paleta de colores de la marca */
:root {
    --color-morado: #73316e;
    --color-magenta: #c5256e;
    --color-rosa: #ea504e;
    --color-naranja-rojo: #e65232;
    --color-naranja: #f7941d;
    --color-cyan: #81c4ca;

    --primary-color: #73316e;
    --secondary-color: #81c4ca;
    --accent-color: #f7941d;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background: #ffffff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    /* Imagen de fondo colorida */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.fondo-1 body {
    background-image: url(img/fondo/SOLI.webp);
}

.fondo-2 body {
    background-image: url(img/fondo/MORELOS.webp);
}

.fondo-3 body {
    background-image: url(img/fondo/GUAYMAS.webp);
}

.fondo-4 body {
    background-image: url(img/fondo/FORUM.webp);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(115, 49, 110, 0.3);
    z-index: 0;
    pointer-events: none;
}

a {
    text-decoration: none;
    color: var(--color-naranja-rojo)
}

/* Separadores de secciones - más sutiles */
section {
    position: relative;
}

/*
section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%);
}*/

/* Remover separador del footer y banner */
.hero-section::after,
.footer::after {
    display: none;
}

/* Estilos del Navbar */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.98) !important;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--color-morado), var(--color-magenta), var(--color-rosa), var(--color-naranja), var(--color-cyan)) 1;
}

.navbar-brand-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-box {
    height: auto;
    padding-bottom: 0;
    margin-bottom: 0;
}

.logo-box img {
    height: 75px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(115, 49, 110, 0.5);
    margin-bottom: 0;
}


.sucursal-text {
    color: rgba(115, 49, 110, 0.5);
    font-size: 0.85rem;
    margin-top: 0.3rem;
    margin-left: 0.5rem;
    font-weight: 600;
    padding: 0 4px;
    margin: 0;
    line-height: 0.85rem;
}

/* Estilos del menú */
.navbar-nav {
    gap: 0.5rem;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
    padding: 0.7rem 1.2rem !important;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-magenta), var(--color-naranja));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--color-magenta) !important;
    background: rgba(197, 37, 110, 0.1);
}

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

.nav-link.active {
    color: var(--color-magenta) !important;
    background: rgba(197, 37, 110, 0.1);
}

/* Estilos del Carrusel */
.hero-section {
    margin-top: 0;
    position: relative;
    width: 100%;
    /* Aspect ratio 12:5 (1920:800) */
    padding-top: 41.67%;
    /* (800 / 1920) * 100 = 41.67% */
    overflow: hidden;
    background: #000;
}

/* El carrusel debe ocupar todo el espacio del contenedor */
.hero-section .carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-section .carousel-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-section .carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-section .carousel-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Imágenes del banner - ajustadas para cubrir todo el espacio */
.hero-section .carousel-image img,
.carousel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cubre todo el espacio manteniendo proporciones */
    object-position: center center;
    /* Centra la imagen */
}

/* video */
.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.carousel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: opacity 0.4s ease;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);

    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-size: 42px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: white;
    color: #000;
}

@media (max-width: 991px) {
    .video-play-btn {
        width: 85px;
        height: 85px;
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .video-play-btn {
        width: 75px;
        height: 75px;
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .video-play-btn {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}


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

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

/* Estilos de los indicadores del carrusel */
.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: white;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    opacity: 1;
    transform: scale(1.2);
}

/* Controles del carrusel */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 0.5rem;
}

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

/* Transición suave del carrusel */
.carousel-fade .carousel-item {
    opacity: 0;
    transition-duration: 1s;
    transition-property: opacity;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {

    .carousel-inner,
    .carousel-item {
        height: 400px;
    }

    .carousel-caption-custom h1 {
        font-size: 2rem;
    }

    .carousel-caption-custom p {
        font-size: 1rem;
    }

    .navbar-nav {
        margin-top: 1rem;
    }

    .nav-link {
        text-align: center;
    }

    .logo-box img {
        height: 60px;
    }

    .sucursal-text {
        font-size: 12px;
        font-weight: 700;
        padding-left: 0;
    }
}

@media (max-width: 576px) {

    .carousel-inner,
    .carousel-item {
        height: 300px;
    }

    .carousel-caption-custom h1 {
        font-size: 1.5rem;
    }
}

/* ===== SECCIÓN DE PRECIOS ===== */
.precios-section {
    background: transparent;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 5rem 0;
}

.precios-container {
    padding: 0;
}

/*
.section-title-card {
    background: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(115, 49, 110,0.3),rgba(197, 37, 110,0.3),rgba(234, 80, 78,0.3));
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    text-align: center;
    margin-bottom: 1rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
} */

.section-title-card .section-title {
    margin: 0;
    padding-bottom: 1rem;
}

/* Tarjetas de Precios */
.precio-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(115, 49, 110, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(15px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: visible;
    border: 3px solid transparent;
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
        linear-gradient(135deg, var(--color-morado), var(--color-cyan));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

/* Tarjetas Horizontales */
.precio-card-horizontal {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding: 1.8rem 2.5rem;
    text-align: left;
    min-height: 110px;
}

.precio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(197, 37, 110, 0.25);
    background-image: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
        linear-gradient(135deg, var(--color-magenta), var(--color-naranja));
}

.precio-card-destacado {

    border-width: 4px;
}

.precio-badge {
    position: absolute;
    top: 15px;
    right: -8px;
    background: linear-gradient(135deg, var(--color-rosa), var(--color-naranja));
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 20px 0 0 20px;
    box-shadow: 0 4px 15px rgba(234, 80, 78, 0.4);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.precio-img-container img {
    border-radius: 100%;
    object-fit: cover;
    border: 0.5px solid var(--text-light);
}

.precio-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/*
.precio-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-morado));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(129, 196, 202, 0.4);
    transition: all 0.4s ease;
    position: relative;
}

.precio-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-rosa), var(--color-naranja));
    opacity: 0;
    transition: opacity 0.4s ease;
}
*/
.precio-card:hover .precio-img-container img {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(247, 148, 29, 0.5);
}

.precio-card:hover .precio-icon::before {
    opacity: 1;
}

/*
.precio-icon i {
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 1;
}*/

.precio-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.precio-titulo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-morado), var(--color-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.2;
}

.precio-monto {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-magenta), var(--color-naranja));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    margin: 0;
    text-shadow: none;
}

.precio-descripcion {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-morado), var(--color-magenta), var(--color-rosa));
    -webkit-background-clip: text;
    -webkit-text-fill-color: white;
    background-clip: text;
    position: relative;
    padding: 1rem;
    display: inline-block;
}


.tabla-precios-wrapper {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.tabla-precios-wrapper:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.tabla-precios-img {
    border-radius: 8px;
    width: 100%;
    height: auto;
    display: block;
}

/* ===== TARJETA DE INFORMACIÓN ===== */
.info-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: 0 15px 50px rgba(115, 49, 110, 0.2);
    position: sticky;
    top: 100px;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
        linear-gradient(135deg, var(--color-cyan), var(--color-morado));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    backdrop-filter: blur(15px);
}

.info-card:hover {
    box-shadow: 0 20px 60px rgba(197, 37, 110, 0.3);
    transform: translateY(-5px);
    background-image: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
        linear-gradient(135deg, var(--color-magenta), var(--color-naranja));
}

.info-section {
    padding-bottom: 2rem;
    border-bottom: 2px dashed rgba(115, 49, 110, 0.2);
}

.info-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-title {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-morado), var(--color-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.info-title i {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-morado));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
}

/* Estilos de horarios */

.horario-item {
    padding: 4px 8px;
    border-bottom: 1px solid #eee;
    border-radius: 12px;
}

.horario-item:last-child {
    border-bottom: none;
}

.horario-item:hover {
    /*transform: scale(1.1);*/
    background: rgba(129, 196, 202, 0.2);
}

.dia {
    font-weight: 700;
    color: var(--color-morado);
}

/* Dirección */
.direccion {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1rem;
}

.direccion strong {
    color: var(--color-morado);
    font-size: 1.2rem;
    font-weight: 800;
}

/* Mapa */
.mapa-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(115, 49, 110, 0.2);
    border: 4px solid transparent;
    background-image: linear-gradient(white, white),
        linear-gradient(135deg, var(--color-cyan), var(--color-morado));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.mapa-iframe {
    display: block;
}

/* Botón del mapa */
.btn-mapa {
    display: inline-block;
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--color-magenta), var(--color-naranja));
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(197, 37, 110, 0.4);
}

.btn-mapa:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(247, 148, 29, 0.5);
    color: white;
}

.btn-mapa i {
    font-size: 1.2rem;
}

/* Responsive para la sección de precios */
@media (max-width: 991px) {
    .info-card {
        position: relative;
        top: 0;
        margin-top: 2rem;
    }

    .precios-section {
        min-height: auto;
        padding: 3rem 0;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .precio-card {
        margin-bottom: 1rem;
    }

    .precio-card-horizontal {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 0.2rem;
    }

    .precio-content {
        align-items: center;
        text-align: center;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .precio-titulo {
        font-size: 1.2rem;
    }

    .precio-monto {
        font-size: 1.8rem;

    }

    .precio-icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
    }

    .precio-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .precio-card-horizontal {
        padding: 1.2rem;
    }

    .precio-descripcion {
        font-size: 0.8rem;
    }
}

.info-card {
    padding: 1.5rem;
}

.info-title {
    font-size: 1.3rem;
}

.horario-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.mapa-container iframe {
    height: 250px;
}

@media (max-width: 576px) {
    .precios-container {
        padding: 1rem;
    }

    .tabla-precios-wrapper {
        padding: 1rem;
    }

    .info-card {
        padding: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* ===== SECCIÓN DE PROMOCIONES ===== */

.promociones-section {
    background: transparent;
    padding: 5rem 0;
    position: relative;
}

/* Wrapper del carrusel */
.promociones-carousel-wrapper {
    position: relative;
    padding: 0 60px;
}

/* Contenedor del carrusel */
.promociones-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 1rem 0;
}

/* Tarjeta de promoción */
.promo-card {
    min-width: calc(33.333% - 1.35rem);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(115, 49, 110, 0.2);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
        linear-gradient(135deg, var(--color-morado), var(--color-cyan));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(197, 37, 110, 0.35);
}

/* Banda superior */
.promo-banda {
    padding: 0.8rem 1.5rem;
    color: white;
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-banda i {
    font-size: 1.2rem;
}

.promo-banda-morado {
    background: linear-gradient(135deg, var(--color-morado), var(--color-magenta));
}

/* Contenido de la promoción */
.promo-contenido {
    padding: 1.8rem 2rem;
    flex-grow: 1;
}

.promo-titulo {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-morado), var(--color-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.promo-detalles {
    display: flex;
    flex-direction: COLUMN;
    gap: 1rem;
}

.promo-detalle i {
    font-size: 1.3rem;
    color: var(--color-morado);
}

.detalle-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detalle-valor {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 700;
}

/* Precio */
.promo-precio {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(247, 148, 29, 0.1), rgba(129, 196, 202, 0.1));
    border-top: 2px solid rgba(115, 49, 110, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.precio-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
}

.precio-valor {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-magenta), var(--color-naranja));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== SCROLL HORIZONTAL MEJORADO ===== */

/* Webkit (Chrome, Safari, Edge) */
.promociones-carousel::-webkit-scrollbar {
    height: 16px;
    /* Más grueso para mejor visibilidad */
}

.promociones-carousel::-webkit-scrollbar-track {
    background: linear-gradient(90deg,
            rgba(115, 49, 110, 0.08) 0%,
            rgba(129, 196, 202, 0.08) 50%,
            rgba(115, 49, 110, 0.08) 100%);
    border-radius: 20px;
    margin: 0 60px;
    /* Separación de los bordes */
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.8);
}

.promociones-carousel::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg,
            var(--color-morado) 0%,
            var(--color-magenta) 25%,
            var(--color-rosa) 50%,
            var(--color-naranja) 75%,
            var(--color-cyan) 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 2px 10px rgba(197, 37, 110, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.promociones-carousel::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg,
            var(--color-magenta) 0%,
            var(--color-rosa) 25%,
            var(--color-naranja) 50%,
            var(--color-cyan) 75%,
            var(--color-morado) 100%);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow:
        0 4px 15px rgba(247, 148, 29, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transform: scaleY(1.2);
}

.promociones-carousel::-webkit-scrollbar-thumb:active {
    background: linear-gradient(90deg,
            var(--color-cyan) 0%,
            var(--color-naranja) 50%,
            var(--color-magenta) 100%);
    box-shadow:
        0 2px 8px rgba(129, 196, 202, 0.5),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Firefox */
.promociones-carousel {
    scrollbar-width: auto;
    /* O 'thin' si prefieres más delgado */
    scrollbar-color: var(--color-magenta) rgba(115, 49, 110, 0.1);
}

/* Mejorar el scrollbar en Firefox con estilos adicionales */
@supports (scrollbar-color: auto) {
    .promociones-carousel {
        scrollbar-color:
            linear-gradient(90deg, var(--color-magenta), var(--color-naranja)) rgba(115, 49, 110, 0.1);
    }
}


/* ===== VERSIÓN ALTERNATIVA: SCROLLBAR CON ANIMACIÓN ===== */

/* Si quieres un scrollbar animado (descomenta esto y comenta el anterior) */

/*
.promociones-carousel::-webkit-scrollbar-thumb {
    background: linear-gradient(
        90deg,
        var(--color-morado),
        var(--color-magenta),
        var(--color-rosa),
        var(--color-naranja),
        var(--color-cyan),
        var(--color-morado)
    );
    background-size: 200% 100%;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 10px rgba(197, 37, 110, 0.4);
    animation: scrollbarGradient 3s linear infinite;
}

@keyframes scrollbarGradient {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}
*/


/* ===== VERSIÓN MINIMALISTA (Alternativa) ===== */

/* Si prefieres algo más sutil (descomenta esto y comenta el principal) */

/*
.promociones-carousel::-webkit-scrollbar {
    height: 8px;
}

.promociones-carousel::-webkit-scrollbar-track {
    background: transparent;
}

.promociones-carousel::-webkit-scrollbar-thumb {
    background: linear-gradient(
        90deg,
        var(--color-magenta),
        var(--color-naranja)
    );
    border-radius: 10px;
}

.promociones-carousel::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        90deg,
        var(--color-rosa),
        var(--color-cyan)
    );
}
*/


/* ===== SCROLLBAR CON PUNTOS EN LOS EXTREMOS ===== */

/* Indicadores visuales en los extremos */
.promociones-carousel-wrapper::before,
.promociones-carousel-wrapper::after {
    content: '';
    position: absolute;
    bottom: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-magenta), var(--color-naranja));
    box-shadow: 0 2px 8px rgba(197, 37, 110, 0.4);
    z-index: 5;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.promociones-carousel-wrapper::before {
    left: 50px;
}

.promociones-carousel-wrapper::after {
    right: 50px;
}

.promociones-carousel-wrapper:hover::before,
.promociones-carousel-wrapper:hover::after {
    opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .promo-card {
        min-width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .promociones-carousel-wrapper {
        padding: 0 50px;
    }

    .promo-card {
        min-width: calc(100% - 0rem);
    }

    .promo-titulo {
        font-size: 1.4rem;
    }

    .precio-valor {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .promociones-carousel-wrapper {
        padding: 0 40px;
    }

}

/* ===== SECCIÓN DE ATRACCIONES ===== */
.atracciones-section {
    background: transparent;
    padding: 5rem 0;
    position: relative;
}

.titulo-vertical {
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px 0 0 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.titulo-atracciones {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    writing-mode: horizontal-tb;
}

.descripcion-atracciones {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Carrusel de Atracciones */
#atraccionesCarousel {
    border-radius: 0 12px 12px 0;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

#atraccionesCarousel .carousel-inner {
    height: 500px;
}

#atraccionesCarousel .carousel-item {
    height: 500px;
}

.atraccion-slide {
    position: relative;
    height: 100%;
    width: 100%;
}

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

.atraccion-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 70%, transparent 100%);
    padding: 3rem 2.5rem 2rem;
    color: white;
}

.atraccion-caption h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.atraccion-caption p {
    font-size: 1.1rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
}

/* Indicadores personalizados para atracciones */
#atraccionesCarousel .carousel-indicators button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: white;
    opacity: 0.6;
    border: 2px solid white;
}

#atraccionesCarousel .carousel-indicators button.active {
    opacity: 1;
    background-color: var(--secondary-color);
    border-color: white;
    transform: scale(1.3);
}

/* Controles del carrusel de atracciones */
#atraccionesCarousel .carousel-control-prev-icon,
#atraccionesCarousel .carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
}

#atraccionesCarousel .carousel-control-prev-icon::before,
#atraccionesCarousel .carousel-control-next-icon::before {
    color: var(--primary-color);
}

/* ===== SECCIÓN DE SERVICIOS (TARJETAS) ===== */
.servicios-section {
    background: transparent;
    padding: 5rem 0;
    position: relative;
}

.servicios-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.servicio-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: 0 10px 40px rgba(115, 49, 110, 0.15);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
        linear-gradient(135deg, var(--color-morado), var(--color-cyan));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(15px);
}

.servicio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(197, 37, 110, 0.25);
    background-image: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
        linear-gradient(135deg, var(--color-magenta), var(--color-naranja));
}

.servicio-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--color-rosa), var(--color-naranja));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(234, 80, 78, 0.4);
    transition: all 0.4s ease;
}

.servicio-card:hover .servicio-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(247, 148, 29, 0.6);
}

.servicio-icon i {
    font-size: 2.8rem;
    color: white;
}

.servicio-titulo {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-morado), var(--color-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 1rem;
}

.servicio-descripcion {
    color: var(--text-dark);
    text-align: center;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.servicio-lista {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.servicio-lista li {
    padding: 0.7rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.servicio-lista li:hover {
    transform: translateX(10px);
}

.servicio-lista i {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-morado));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.servicio-botones {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
}

.btn-servicio {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--color-magenta), var(--color-naranja));
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(197, 37, 110, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-servicio:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(247, 148, 29, 0.5);
}

.btn-servicio i {
    font-size: 1.2rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: transparent;
    color: #128C7E;
    border: 3px solid transparent;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    background-image:
        linear-gradient(var(--bg-light), var(--bg-light)),
        linear-gradient(135deg, #25D366, #128C7E);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    color: white;
    background-image:
        linear-gradient(135deg, #25D366, #128C7E),
        linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    transform: translateY(-3px);
}

/* Responsive para Atracciones */
@media (max-width: 991px) {
    .titulo-vertical {
        border-radius: 12px 12px 0 0;
        padding: 2rem;
        margin-bottom: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    #atraccionesCarousel {
        border-radius: 0 0 12px 12px;
    }

    .titulo-atracciones {
        font-size: 2rem;
    }

    #atraccionesCarousel .carousel-inner,
    #atraccionesCarousel .carousel-item {
        height: 400px;
    }

    .atraccion-caption h3 {
        font-size: 1.5rem;
    }

    .atraccion-caption p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .titulo-atracciones {
        font-size: 1.8rem;
    }

    .descripcion-atracciones {
        font-size: 0.9rem;
    }

    #atraccionesCarousel .carousel-inner,
    #atraccionesCarousel .carousel-item {
        height: 350px;
    }

    .atraccion-caption {
        padding: 2rem 1.5rem 1.5rem;
    }

    .servicio-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .titulo-atracciones {
        font-size: 1.5rem;
    }

    #atraccionesCarousel .carousel-inner,
    #atraccionesCarousel .carousel-item {
        height: 300px;
    }

    .atraccion-caption h3 {
        font-size: 1.3rem;
    }

    .atraccion-caption p {
        font-size: 0.85rem;
    }

    .servicio-card {
        padding: 2rem 1.5rem;
    }

    .servicio-icon {
        width: 70px;
        height: 70px;
    }

    .servicio-icon i {
        font-size: 2rem;
    }
}

/* ===== SECCIÓN DE OPINIONES ===== */
.opiniones-section {
    background: transparent;
    padding: 5rem 0;
    position: relative;
}

.opiniones-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.opinion-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 10px 40px rgba(115, 49, 110, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    border: 3px solid transparent;
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
        linear-gradient(135deg, var(--color-morado), var(--color-cyan));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.opinion-card::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 20px;
    font-size: 150px;
    background: linear-gradient(135deg, var(--color-rosa), var(--color-naranja));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.15;
}

.opinion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(197, 37, 110, 0.25);
    background-image: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
        linear-gradient(135deg, var(--color-magenta), var(--color-naranja));
}

.rating {
    display: flex;
    gap: 0.4rem;
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.rating i {
    color: var(--color-naranja);
    font-size: 1.4rem;
    filter: drop-shadow(0 2px 4px rgba(247, 148, 29, 0.3));
}

.opinion-texto {
    color: var(--text-dark);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.cliente-info {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding-top: 1.5rem;
    border-top: 3px dashed rgba(115, 49, 110, 0.2);
    position: relative;
    z-index: 1;
}

.cliente-avatar {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    background: linear-gradient(135deg, var(--color-cyan), var(--color-morado));
    box-shadow: 0 6px 20px rgba(129, 196, 202, 0.4);
}

.cliente-avatar i {
    font-size: 2rem;
    color: white;
}

.cliente-datos {
    flex-grow: 1;
}

.cliente-nombre {
    font-size: 1.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-morado), var(--color-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.cliente-fecha {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 600;
}

/* ===== SECCIÓN DE PREGUNTAS FRECUENTES ===== */
.faq-section {
    background: transparent;
    padding: 5rem 0;
    position: relative;
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Estilos del Accordion */
.accordion {
    border-radius: 20px;
    overflow: visible;
}

.accordion-item {
    border: none;
    margin-bottom: 1.2rem;
    border-radius: 25px !important;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(115, 49, 110, 0.15);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 3px solid transparent;
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
        linear-gradient(135deg, var(--color-morado), var(--color-cyan));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.accordion-item:hover {
    box-shadow: 0 12px 40px rgba(197, 37, 110, 0.25);
    transform: translateX(10px);
    background-image: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
        linear-gradient(135deg, var(--color-magenta), var(--color-naranja));
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-button {
    background: transparent;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 1.8rem 2rem;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-morado), var(--color-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--color-magenta), var(--color-naranja));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c5256e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: scale(1.4);
    margin-left: auto;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f7941d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button i {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-morado));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) i {
    background: linear-gradient(135deg, var(--color-rosa), var(--color-naranja));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accordion-body {
    background: transparent;
    padding: 0 2rem 2rem 2rem;
    color: var(--text-dark);
    line-height: 1.9;
    font-size: 1.05rem;
    border-top: none;
}

/* Animación para el collapse */
.accordion-collapse {
    transition: all 0.3s ease-in-out;
}

/* Responsive para Opiniones */
@media (max-width: 768px) {
    .opinion-card {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }

    .opinion-texto {
        font-size: 0.95rem;
    }

    .cliente-avatar img {
        width: 50px;
        height: 50px;
    }

    .cliente-nombre {
        font-size: 1rem;
    }
}

/* Responsive para FAQ */
@media (max-width: 768px) {
    .accordion-button {
        font-size: 1rem;
        padding: 1.2rem 1.5rem;
    }

    .accordion-button i {
        font-size: 1.3rem;
    }

    .accordion-body {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {

    .opiniones-section,
    .faq-section {
        padding: 3rem 0;
    }

    .accordion-button {
        font-size: 0.95rem;
        padding: 1rem 1.2rem;
        flex-wrap: wrap;
    }

    .accordion-button i {
        font-size: 1.2rem;
        margin-right: 0.8rem !important;
    }

    .accordion-body {
        padding: 1.2rem;
    }
}

/* ===== FORMULARIO DE CONTACTO ===== */
/* Agrega estos estilos a tu archivo styles.css o home-styles.css */

.contacto-section {
    background: transparent;
    position: relative;
    z-index: 10;
    padding: 5rem 0;
}

.contacto-subtitulo {
    font-size: 1.2rem;
    color: var(--bg-light);
    font-weight: 600;
    padding-bottom: 1rem;
}

.formulario-contacto {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(115, 49, 110, 0.2);
    border: 3px solid transparent;
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
        linear-gradient(135deg, var(--color-morado), var(--color-cyan));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 5;
}

.form-label {
    font-weight: 700;
    color: var(--color-morado);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 3px solid transparent;
    border-radius: 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(115, 49, 110, 0.1);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-magenta);
    box-shadow: 0 6px 25px rgba(197, 37, 110, 0.3);
    transform: translateY(-2px);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #aaa;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23c5256e' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 16px 12px;
    padding-right: 3rem;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Botón de envío */
.btn-enviar {
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--color-magenta), var(--color-naranja));
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(197, 37, 110, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-enviar:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(247, 148, 29, 0.5);
}

.btn-enviar:active {
    transform: translateY(-1px);
}

.btn-enviar i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-enviar:hover i {
    transform: translateX(5px);
}

/* Mensaje de éxito */
.mensaje-exito {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(129, 196, 202, 0.4);
    border: 4px solid transparent;
    background-image: linear-gradient(rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.98)),
        linear-gradient(135deg, var(--color-cyan), var(--color-naranja));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    animation: slideIn 0.5s ease;
    position: relative;
    z-index: 10;
}

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

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

.icono-exito {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-morado));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(129, 196, 202, 0.7);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(129, 196, 202, 0);
    }
}

.icono-exito i {
    font-size: 3.5rem;
    color: white;
}

.mensaje-exito h3 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-morado), var(--color-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.mensaje-exito p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.btn-cerrar-exito {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-morado));
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(129, 196, 202, 0.4);
}

.btn-cerrar-exito:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(129, 196, 202, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .formulario-contacto {
        padding: 2rem 1.5rem;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }

    .btn-enviar {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .mensaje-exito {
        padding: 2rem 1.5rem;
    }

    .icono-exito {
        width: 80px;
        height: 80px;
    }

    .icono-exito i {
        font-size: 2.5rem;
    }

    .mensaje-exito h3 {
        font-size: 1.5rem;
    }
}


/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a252f 100%);
    color: white;
    position: relative;
}

.footer-content {
    padding: 4rem 0 2rem;
}

.footer-section {
    margin-bottom: 2rem;
}

/* Logo del Footer */
.footer-logo {
    margin-bottom: 1.5rem;
}

.logo-box-footer {
    background: linear-gradient(135deg, var(--secondary-color), #5dade2);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.logo-text-footer {
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.sucursal-text-footer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-style: italic;
    display: block;
    margin-left: 0.3rem;
}

.footer-descripcion {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Redes Sociales */
.social-links {
    display: flex;
    gap: 1rem;
    padding-bottom: 12px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* Títulos del Footer */
.footer-titulo {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-titulo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* Enlaces del Footer */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 8px;
    color: var(--secondary-color);
}

.footer-links a::before {
    content: '›';
    margin-right: 8px;
    transition: margin-right 0.3s ease;
}

.footer-links a:hover::before {
    margin-right: 12px;
}

/* Información de Contacto */
.footer-contacto {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contacto li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-contacto i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contacto span {
    line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-bottom-links li {
    display: inline;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

/* Botón de Volver Arriba */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--text-dark);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #075E54;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.6);
}

/* Responsive para Footer */
@media (max-width: 768px) {
    .footer-content {
        padding: 3rem 0 1.5rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-titulo::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .footer-links a::before {
        content: '';
        margin-right: 0;
    }

    .footer-contacto li {
        justify-content: center;
        text-align: left;
    }

    .footer-bottom-links {
        margin-top: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .footer-content {
        padding: 2rem 0 1rem;
    }

    .footer-titulo {
        font-size: 1.1rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* ===== MODAL DE INFOGRAFÍAS ===== */

/* Fondo del modal */
.modal-backdrop.show {
    opacity: 0.8;
    background: linear-gradient(135deg, rgba(115, 49, 110, 0.9), rgba(129, 196, 202, 0.9));
}

/* Contenedor del modal */
.modal-infografia {
    aspect-ratio: 1;
    background: transparent;
    border: none;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 500px;
    /* Ajusta tamaño máximo */
    margin: auto;
    display: flex;
    flex-direction: column;
}

.modal-infografia .modal-header {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1050;
    padding: 0;
}

/* Botón de cerrar personalizado */
.btn-close-modal {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-magenta), var(--color-naranja));
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(197, 37, 110, 0.5);
}

.btn-close-modal:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 8px 30px rgba(247, 148, 29, 0.6);
}

.btn-close-modal i {
    color: white;
    font-size: 1.5rem;
}

/* Body del modal */
.modal-infografia .modal-body {
    border-radius: 25px;
    overflow: hidden;
    /*background: rgb(255, 255, 255);*/
    flex: 1;
    display: flex;
}

/* Carrusel dentro del modal */
.modal-infografia .carousel {
    border-radius: 25px;
    overflow: hidden;
    height: 100%;

}

.modal-infografia .carousel-inner {
    border-radius: 25px;
    height: 100%;

}

.modal-infografia .carousel-item {
    height: 100%;
}

/* Imágenes de infografías */
.infografia-img {
    width: 100%;
    height: 100%;
    /*max-height: 80vh;*/
    object-fit: contain;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 25px;
}

/* Indicadores del carrusel */
.modal-infografia .carousel-indicators {
    margin-bottom: 1.5rem;
}

.modal-infografia .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    opacity: 1;
    transition: all 0.3s ease;
}

.modal-infografia .carousel-indicators button.active {
    background: linear-gradient(135deg, var(--color-magenta), var(--color-naranja));
    transform: scale(1.3);
    border-color: white;
}

/* Controles del carrusel */
.modal-infografia .carousel-control-prev,
.modal-infografia .carousel-control-next {
    width: 60px;
    opacity: 1;
}

.modal-infografia .carousel-control-prev-icon,
.modal-infografia .carousel-control-next-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(197, 37, 110, 0.9);
    border-radius: 50%;
    padding: 12px;
    transition: all 0.3s ease;
}

.modal-infografia .carousel-control-prev:hover .carousel-control-prev-icon,
.modal-infografia .carousel-control-next:hover .carousel-control-next-icon {
    background: linear-gradient(135deg, var(--color-magenta), var(--color-naranja));
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(247, 148, 29, 0.5);
}

/* Animación de entrada del modal */
.modal.fade .modal-dialog {
    transition: transform 0.4s ease-out;
}

.modal.show .modal-dialog {
    transform: none;
}

/* Responsive */
@media (max-width: 768px) {
    /*.modal-lg {
        max-width: 95%;
        margin: 1rem auto;
    }
    
    .infografia-img {
        max-height: 70vh;
    }*/

    .btn-close-modal {
        width: 40px;
        height: 40px;
    }

    .btn-close-modal i {
        font-size: 1.2rem;
    }

    .modal-infografia .carousel-control-prev-icon,
    .modal-infografia .carousel-control-next-icon {
        width: 40px;
        height: 40px;
        padding: 10px;
    }
}

/* Para pantallas muy pequeñas */
@media (max-width: 576px) {
    /*.modal-lg {
        max-width: 100%;
        margin: 1rem;
    }
    
    .infografia-img {
        max-height: 60vh;
    }*/

    .modal-infografia .carousel-indicators button {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
}

/* Contenedor de Contacto */
.contacto-container-faq {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: 0 15px 50px rgba(115, 49, 110, 0.2);
    border: 3px solid transparent;
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
        linear-gradient(135deg, var(--color-morado), var(--color-cyan));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 5;
}

.contacto-header-faq {
    text-align: center;
}

.contacto-titulo-faq {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-morado), var(--color-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.contacto-descripcion-faq {
    color: var(--text-light);
    font-weight: 600;
}

/* Formulario */
.form-input-faq,
.form-select-faq,
.form-textarea-faq {
    width: 100%;
    padding: 0.9rem 1.3rem;
    border: 3px solid transparent;
    border-radius: 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(115, 49, 110, 0.1);
}

.form-input-faq:focus,
.form-select-faq:focus,
.form-textarea-faq:focus {
    outline: none;
    border-color: var(--color-magenta);
    box-shadow: 0 6px 25px rgba(197, 37, 110, 0.3);
    transform: translateY(-2px);
}

.form-select-faq {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23c5256e' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.3rem center;
    background-size: 16px 12px;
    padding-right: 3rem;
}

.form-textarea-faq {
    resize: vertical;
    min-height: 100px;
}

/* Botones de contacto */
.botones-contacto-faq {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-enviar-faq {
    padding: 1.1rem 2rem;
    background: linear-gradient(135deg, var(--color-magenta), var(--color-naranja));
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(197, 37, 110, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-enviar-faq:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(247, 148, 29, 0.5);
}

.btn-whatsapp-faq {
    /*width: fit-content;
    height: fit-content;
*/
    padding: 0.8rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    text-align: center;
}

.btn-whatsapp-faq:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.6);
    color: white;
}

.btn-whatsapp-faq i {
    font-size: 1.3rem;
}

/* Mensaje de éxito */
.mensaje-exito-faq {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 15px 50px rgba(129, 196, 202, 0.4);
    border: 4px solid transparent;
    background-image: linear-gradient(rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.98)),
        linear-gradient(135deg, var(--color-cyan), var(--color-naranja));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    animation: slideIn 0.5s ease;
}

.icono-exito-faq {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-morado));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.icono-exito-faq i {
    font-size: 2.5rem;
    color: white;
}

.mensaje-exito-faq h4 {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-morado), var(--color-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.btn-cerrar-exito-faq {
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-morado));
    color: white;
    border: none;
    border-radius: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-cerrar-exito-faq:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(129, 196, 202, 0.5);
}

/* Responsive */
@media (max-width: 768px) {

    .info-card-ubicacion,
    .contacto-container-faq {
        padding: 2rem 1.5rem;
    }

    .botones-contacto-faq {
        flex-direction: column;
    }

    .btn-enviar-faq,
    .btn-whatsapp-faq {
        width: 100%;
    }
}

.container-ubi {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    justify-content: center;
    padding: 48px 0;
}

.btn-ver-mas {
    background: none;
    border: none;
    color: var(--color-magenta);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-bottom: 10px;
}

/* ===== MODAL PARA DOCUMENTOS LEGALES ===== */

/* Fondo del modal */
.modal-backdrop.show {
    opacity: 0.85;
    background: linear-gradient(135deg, rgba(115, 49, 110, 0.9), rgba(129, 196, 202, 0.9));
}

/* Contenedor del modal */
.modal-documento {
    border-radius: 30px;
    border: 4px solid transparent;
    background-image: linear-gradient(white, white),
        linear-gradient(135deg, var(--color-morado), var(--color-cyan));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 25px 100px rgba(115, 49, 110, 0.5);
    overflow: hidden;
}

/* Header del modal */
.modal-header-documento {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1050;
    padding: 0;
}

/* Botón cerrar */
.btn-close-documento {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-magenta), var(--color-naranja));
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(197, 37, 110, 0.5);
}

.btn-close-documento:hover {
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 10px 35px rgba(247, 148, 29, 0.6);
}

.btn-close-documento i {
    color: white;
    font-size: 1.3rem;
}

/* Body del modal */
.modal-documento .modal-body {
    padding: 0;
    max-height: 75vh;
    overflow-y: auto;
}

/* ===== ESTILOS PARA EL CONTENIDO DEL DOCUMENTO ===== */

.documento-legal {
    padding: 3rem 3rem 2rem;
    color: var(--text-dark);
}

/* Header del documento */
.documento-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg,
            transparent 0%,
            var(--color-morado) 20%,
            var(--color-magenta) 40%,
            var(--color-rosa) 60%,
            var(--color-naranja) 80%,
            transparent 100%) 1;
}

.icono-documento {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--color-morado), var(--color-magenta));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(197, 37, 110, 0.4);
}

.icono-documento i {
    font-size: 3rem;
    color: white;
}

.documento-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-morado), var(--color-magenta), var(--color-rosa));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.fecha-actualizacion {
    color: var(--text-light);
    font-size: 1rem;
    font-style: italic;
}

/* Secciones del documento */
.seccion-legal {
    margin-bottom: 2.5rem;
}

.titulo-seccion {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.numero-seccion {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-morado));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(129, 196, 202, 0.4);
}

.titulo-seccion h3 {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-morado), var(--color-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.contenido-seccion {
    padding-left: 5rem;
}

.contenido-seccion p {
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

.contenido-seccion strong {
    color: var(--color-morado);
    font-weight: 700;
}

/* Lista destacada con íconos */
.lista-destacada {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.lista-destacada li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem 1.2rem;
    background: linear-gradient(90deg,
            rgba(129, 196, 202, 0.1) 0%,
            transparent 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.lista-destacada li:hover {
    background: linear-gradient(90deg,
            rgba(129, 196, 202, 0.2) 0%,
            rgba(247, 148, 29, 0.1) 100%);
    transform: translateX(5px);
}

.lista-destacada li i {
    color: var(--color-cyan);
    font-size: 1.3rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.lista-destacada li span {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Lista simple */
.lista-simple {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.lista-simple li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Notas informativas */
.nota-informativa,
.nota-advertencia,
.caja-importante,
.caja-seguridad,
.caja-neutral {
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nota-informativa {
    background: linear-gradient(135deg, rgba(129, 196, 202, 0.15), rgba(129, 196, 202, 0.05));
    border-left: 5px solid var(--color-cyan);
}

.nota-advertencia {
    background: linear-gradient(135deg, rgba(234, 80, 78, 0.15), rgba(234, 80, 78, 0.05));
    border-left: 5px solid var(--color-rosa);
}

.caja-importante {
    background: linear-gradient(135deg, rgba(247, 148, 29, 0.15), rgba(247, 148, 29, 0.05));
    border-left: 5px solid var(--color-naranja);
}

.caja-seguridad {
    background: linear-gradient(135deg, rgba(115, 49, 110, 0.15), rgba(115, 49, 110, 0.05));
    border-left: 5px solid var(--color-morado);
}

.caja-neutral {
    background: linear-gradient(135deg, rgba(102, 102, 102, 0.1), rgba(102, 102, 102, 0.05));
    border-left: 5px solid #666;
}

.nota-informativa i,
.nota-advertencia i,
.caja-importante i,
.caja-seguridad i,
.caja-neutral i {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.nota-informativa i {
    color: var(--color-cyan);
}

.nota-advertencia i {
    color: var(--color-rosa);
}

.caja-importante i {
    color: var(--color-naranja);
}

.caja-seguridad i {
    color: var(--color-morado);
}

.caja-neutral i {
    color: #666;
}

.nota-informativa p,
.nota-advertencia p,
.caja-importante p,
.caja-seguridad p,
.caja-neutral p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Tarjetas de finalidad */
.tarjetas-finalidad {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.tarjeta-finalidad {
    padding: 1.5rem;
    background: linear-gradient(135deg,
            rgba(197, 37, 110, 0.1),
            rgba(129, 196, 202, 0.1));
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tarjeta-finalidad:hover {
    transform: translateY(-5px);
    border-color: var(--color-magenta);
    box-shadow: 0 10px 30px rgba(197, 37, 110, 0.3);
}

.tarjeta-finalidad i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--color-magenta), var(--color-naranja));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.tarjeta-finalidad p {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
}

/* Enlaces externos (plataformas sociales) */
.enlaces-externos {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.enlace-plataforma {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(115, 49, 110, 0.1), rgba(129, 196, 202, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.enlace-plataforma:hover {
    transform: scale(1.05);
    border-color: var(--color-cyan);
    box-shadow: 0 5px 20px rgba(129, 196, 202, 0.4);
}

.enlace-plataforma i {
    font-size: 1.8rem;
    color: var(--color-morado);
}

.enlace-plataforma span {
    font-weight: 700;
    color: var(--text-dark);
}

/* Texto secundario */
.texto-secundario {
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: italic;
}

/* Footer del documento */
.footer-documento {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg,
            rgba(129, 196, 202, 0.15),
            rgba(247, 148, 29, 0.15));
    border-radius: 20px;
    text-align: center;
    border: 3px solid transparent;
    background-image:
        linear-gradient(white, white),
        linear-gradient(135deg, var(--color-cyan), var(--color-naranja));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.footer-icono {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-morado));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-icono i {
    font-size: 2.5rem;
    color: white;
}

.footer-documento p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--color-morado);
}

/* Footer del modal */
.modal-footer-documento {
    padding: 1.5rem 2rem;
    border-top: 3px solid rgba(115, 49, 110, 0.1);
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
}

.btn-cerrar-documento {
    padding: 1.1rem 3rem;
    background: linear-gradient(135deg, var(--color-magenta), var(--color-naranja));
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(197, 37, 110, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cerrar-documento:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(247, 148, 29, 0.6);
}

.btn-cerrar-documento i {
    font-size: 1.3rem;
}

/* Loading spinner */
.loading-documento {
    text-align: center;
    padding: 4rem 2rem;
}

.spinner-documento {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border: 6px solid rgba(115, 49, 110, 0.2);
    border-top-color: var(--color-magenta);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-documento p {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Scroll personalizado */
.modal-documento .modal-body::-webkit-scrollbar {
    width: 12px;
}

.modal-documento .modal-body::-webkit-scrollbar-track {
    background: rgba(115, 49, 110, 0.1);
    border-radius: 10px;
}

.modal-documento .modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--color-magenta), var(--color-naranja));
    border-radius: 10px;
}

.modal-documento .modal-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--color-morado), var(--color-magenta));
}

/* Responsive */
@media (max-width: 991px) {
    .contenido-seccion {
        padding-left: 0;
    }

    .titulo-seccion {
        gap: 1rem;
    }

    .numero-seccion {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .modal-lg {
        max-width: 95%;
        margin: 1rem;
    }

    .documento-legal {
        padding: 2rem 1.5rem 1.5rem;
    }

    .icono-documento {
        width: 70px;
        height: 70px;
    }

    .icono-documento i {
        font-size: 2.5rem;
    }

    .documento-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .documento-header h2 {
        font-size: 2rem;
    }

    .btn-close-documento {
        width: 45px;
        height: 45px;
    }

    .btn-close-documento i {
        font-size: 1.1rem;
    }

    .titulo-seccion h3 {
        font-size: 1.3rem;
    }

    .tarjetas-finalidad {
        grid-template-columns: 1fr;
    }

    .enlaces-externos {
        flex-direction: column;
    }

    .btn-cerrar-documento {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ===== BANNER DE DESCARGA APP ===== */

.app-banner {
    background: linear-gradient(135deg, var(--color-morado), var(--color-magenta));
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(115, 49, 110, 0.3);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

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

.app-banner.hidden {
    animation: slideUp 0.3s ease forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

.app-banner-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

/* Ícono */
.app-banner-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-banner-icon i {
    font-size: 1.5rem;
    color: white;
}

/* Texto */
.app-banner-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex-grow: 1;
}

.app-banner-title {
    color: white;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
}

.app-banner-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Botones de tiendas */
.app-banner-buttons {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
}

.app-store-btn,
.play-store-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-store-btn:hover,
.play-store-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.app-store-btn i,
.play-store-btn i {
    font-size: 1.8rem;
}

.store-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.store-disponible {
    font-size: 0.65rem;
    font-weight: 600;
    opacity: 0.9;
}

.store-nombre {
    font-size: 0.9rem;
    font-weight: 800;
}

/* Botón cerrar */
.app-banner-close {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-banner-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.app-banner-close i {
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 991px) {
    .app-banner {
        padding: 0.7rem 0;
    }

    .app-banner-content {
        gap: 1rem;
    }

    .app-banner-icon {
        width: 40px;
        height: 40px;
    }

    .app-banner-icon i {
        font-size: 1.3rem;
    }

    .app-banner-title {
        font-size: 0.9rem;
    }

    .app-banner-subtitle {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .app-banner-subtitle {
        display: none;
        /* Ocultar subtítulo en móvil */
    }

    .app-banner-buttons {
        gap: 0.5rem;
    }

    .app-store-btn,
    .play-store-btn {
        padding: 0.4rem 0.8rem;
        gap: 0.5rem;
    }

    .app-store-btn i,
    .play-store-btn i {
        font-size: 1.5rem;
    }

    .store-disponible {
        font-size: 0.55rem;
    }

    .store-nombre {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .app-banner-content {
        gap: 0.8rem;
    }

    .app-banner-icon {
        display: none;
        /* Ocultar ícono en móviles pequeños */
    }

    .store-text {
        display: none;
        /* Solo mostrar íconos */
    }

    .app-store-btn,
    .play-store-btn {
        padding: 0.5rem;
        min-width: 45px;
        justify-content: center;
    }

    .app-store-btn i,
    .play-store-btn i {
        font-size: 1.4rem;
        margin: 0;
    }

    .app-banner-close {
        width: 30px;
        height: 30px;
    }
}
.app-footer-buttons{
    display: flex;
    flex-direction: row;
    gap: 5px;
}
@media (max-width:768px) {
    .app-footer-buttons{
        display: flex;
    justify-content: center; /* centra horizontal */
    align-items: center;
    }
    .app-footer-buttons .app-store-btn,
    .app-footer-buttons .play-store-btn{
        justify-content: center;
    }
    
}