<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.banner {
    position: relative;
    width: 100%;
    min-height: 380px;
    background: url('../../public/image/portada/fondo.jpg') no-repeat center top;
    background-size: cover;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    padding-top: 20px;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.205); 
    z-index: 1; 
}

.text-overlay {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 32px;
    font-weight: normal;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2; 
}

.text-overlay::after {
    content: "";
    width: 80px;
    height: 0.5px;
    background: white;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .banner {
        min-height: 400px;
        font-size: 1.5rem;
        padding-top: 10px;
    }
}

@media (max-width: 480px) {
    .banner {
        min-height: 400px;
        font-size: 1.2rem;
        padding-top: 5px;
    }

    #logo {
        width: 70px;
    }
}


/*header --------------------------------------------------------------------------------------------*/
.navbar {
    background-color: #ffffff !important;
    padding: 10px 15px;
}

.dropdown-item:focus, .dropdown-item:active {
	background-color: transparent !important;
	color: black !important;
}


/*footer --------------------------------------------------------------------------------------------*/
/* footer personalizado */
.custom-footer {
    background-color: #ffffff;
    color: #000000; 
}

.custom-footer a {
    color: #000000;
    text-decoration: none;
    margin-right: 10px;
}

.custom-footer a:hover {
    color: #333333; 
}

.custom-footer .social-icon {
    width: 20px;
    height: 20px;
    margin-left: 8px;
    margin-right: 8px;
}

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