.titulo1 {
    
    font-family: "Montserrat", "Futura", "Century Gothic", sans-serif;
    font-weight: 900; 
    text-transform: uppercase; 
    letter-spacing: 0.05em; 
    text-align: center; 
    font-size: clamp(2rem, 5vw, 4.5rem); 
    color: var(--color-texto-dinamico, #000000); 
    margin-bottom: 30px; 
    margin-top: 0;
}

.titulo2 {
 
    font-family: "Montserrat", "Futura", "Century Gothic", sans-serif;
    font-weight: 900; 
    text-transform: uppercase; 
    letter-spacing: 0.05em; 
    text-align: center; 
    font-size: clamp(2rem, 5vw, 4.5rem); 
    color: var(--color-texto-dinamico, #000000); 
    margin-bottom: 30px; 
    margin-top: 0;
}



.ImagenesOwO {
    display: block;
    margin: 0 auto; 
    max-width: 80%; 
    height: auto; 
}



.btn-descarga {
    display: inline-block;
    background-color: #ba1616; 
    color: #ffffff;
    font-family: "Segoe UI", Arial, sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 12px 35px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease; 
}

.btn-descarga:hover {
    background-color: #8c1010; 
    color: #ffffff; 
}


/* --- CONTENEDOR CENTRAL --- */
.contenedor-info {
    max-width: 800px;
    margin: 0 auto; 
    padding: 20px; 
}

/* --- ESTILOS DEL SUBTÍTULO --- */
.subtitulo-info {
    font-family: "Segoe UI", Arial, sans-serif; 
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--color-texto-dinamico, #1a2b3c); 
    text-transform: uppercase;
    text-align: left; 
    margin-top: 0;
    margin-bottom: 15px;
}

/* --- ESTILOS DEL PÁRRAFO --- */
.texto-info {
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 1.1rem;
    line-height: 1.6; 
    color: var(--color-texto-dinamico, #333333);
    text-align: left; 
    margin: 0;
}


:root {
    --color-numeros-calendario: #333333;
}

[data-bs-theme="dark"] {
    --color-numeros-calendario: #e0e0e0;
}


.dia-calendario {
    color: var(--color-numeros-calendario);
    font-weight: 500; 
}

.calendario-noche {
    display: none; 
}

.calendario-dia {
    display: block; 
}


[data-bs-theme="dark"] .calendario-noche {
    display: block; 
}

[data-bs-theme="dark"] .calendario-dia {
    display: none;
}





/* --- CONTENEDOR PRINCIPAL DEL CARRUSEL --- */
.carrusel-wrapper {
    margin: 0 auto 50px auto;
    max-width: 1200px; 
    position: relative;
}


.carrusel-track {
    display: flex;
    overflow-x: auto; 
    scroll-snap-type: x mandatory; 
    scroll-behavior: smooth;
    gap: 20px; 
    padding: 20px 5%; 
    

    scrollbar-width: thin;
    scrollbar-color: #df127b #f1f1f1; 
}

/* Barra para Chrome/Safari/Edge */
.carrusel-track::-webkit-scrollbar { height: 12px; }
.carrusel-track::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; margin: 0 5vw; }
.carrusel-track::-webkit-scrollbar-thumb { background: #df127b; border-radius: 10px; border: 2px solid #f1f1f1; }
.carrusel-track::-webkit-scrollbar-thumb:hover { background: #ba1616; }


.carrusel-slide {

    flex: 0 0 92%; 

    max-width: 1000px; 
    
    scroll-snap-align: center; 
    transition: transform 0.3s ease;
}

.carrusel-slide img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 4px solid #df127b; 
    box-shadow: 0px 10px 20px rgba(0,0,0,0.2);
    display: block;
}

.carrusel-slide:hover {
    transform: scale(1.01); 
}


@media (min-width: 768px) {
    .carrusel-slide {
        flex: 0 0 85%; 
    }
}