<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*========================================================================
======================= BANNER PÃGINA INTERNA ============================
=========================================================================*/
.contenedorBanner{  
    height: 690px;
    margin-top: 60px;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Especificaciones del Texto */
.contenedorBanner h1{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 60px;
    line-height: 70px;
    color: #000000;
    mix-blend-mode: normal;
}

/* Ajustes Responsive */
@media screen and (max-width: 1500px){

    /* Centramos el texto y ajustamos la altura del Banner */
    .contenedorBanner{  
        display: flex;
        justify-content: center;
        align-items: center;

        height: 500px;
    }

    .contenedorBanner h1{     
        position: relative !important; /* Ajustamos la posiciÃ³n del texto a la posiciÃ³n del diseÃ±o */
        top: 0px !important;
        left: 0px !important;
        text-align: center;


        /* Colocamos un fondo detrÃ¡s del texto para que se pueda leer bien sin que moleste ls imagen */
        background: #FFF9;
        border-radius: 10px;
        padding: 8px;
        margin: 0px 20px;
    }

}

@media screen and (max-width: 992px){

    /* Reducimos un poco mÃ¡s la altura del Banner */
    .contenedorBanner{  
        height: 200px;
    }

    /* Reducimos un poco el tamaÃ±o de letra */
    .contenedorBanner h1{     
        font-size: 40px;
        line-height: 50px;        
    }

}

@media screen and (max-width: 700px){

    /* Reducimos mÃ¡s el tamaÃ±o de letra */
    .contenedorBanner h1{     
        font-size: 20px;
        line-height: 30px;    
    }

}

@media screen and (max-width: 300px){

    /* Reducimos aÃºn mÃ¡s el tamaÃ±o de letra */
    .contenedorBanner h1{     
        font-size: 15px;
        line-height: 25px;    
    }

}

@media screen and (max-width: 220px){

    /* Bajamos un poco el Banner ya que el monigote de inicio de sesiÃ³n salta de lÃ­nea y la barra del menÃº es mÃ¡s grande */
    .contenedorBanner{
        margin-top: 80px;
    }

}</pre></body></html>