/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&family=Herr+Von+Muellerhoff&display=swap'); */

html, body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.cintillo-ppal {
    background-color: #0B192C; 
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    min-height: 300px;
    height: auto;
    max-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative; 
    z-index: 1;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    text-align: center;
    /* animation: fadeIn 1s ease-in-out; */
    background-size: cover;  /* Ajuste para que el fondo cubra todo */
    background-position: center; /* Centra la imagen de fondo */
    background-repeat: no-repeat; /* Evita repeticiones */ 
}

.cintillo-ppal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    filter: grayscale(100%) opacity(70%) brightness(70%);
}

.cintillo-ppal .titulo {
    position: relative;
    color: #7394c2;;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.cintillo-ppal .subtitulo {
    position: relative;
    color: rgb(233, 229, 16);  /* #FAC921*/
    font-size: 42px;
    font-family: 'Herr Von Muellerhoff', cursive;
    margin-top: -10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.cintillo-ppal .descripcion {
    position: relative;
    color: white;
    font-size: 28px;
    font-weight: 400;
    max-width: 80%;
    margin-top: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    padding: 0 15px;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.cintillo-ppal .descripcion strong {
    font-weight: 700;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Media queries para dispositivos móviles */
@media (max-width: 768px) {
    .cintillo-ppal .titulo {
        font-size: 30px;
    }
    
    .cintillo-ppal .subtitulo {
        font-size: 32px;
    }
    
    .cintillo-ppal .descripcion {
        font-size: 18px;
        max-width: 95%;
        padding: 0 10px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .cintillo-ppal {
        min-height: 250px;
    }
    
    .cintillo-ppal .titulo {
        font-size: 24px;
    }
    
    .cintillo-ppal .subtitulo {
        font-size: 28px;
    }
    
    .cintillo-ppal .descripcion {
        font-size: 16px;
        max-width: 100%;
        line-height: 1.4;
    }
}
