/* Estilos generales */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background-color: #056CAD;
}

/* Secciones */
.section {
    padding: 6rem 0;
}


/* Inicio */
#inicio {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../imgs/LUZ_puntofijo_comedor.webp') no-repeat center center/cover;
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
}

#inicio h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
}

/* Carreras */
.carrera {
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s;
    
}


.carrera:hover {
    transform: translateY(-5px);
}

/* Noticias */
.noticia {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    height: 100%;
}

/* Historia */
.historia-content {
    text-align: justify;
}

/* Contacto */
.info-contacto {
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
    height: 100%;
}

/* Footer */
footer {
    background-color: #056CAD;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Títulos de sección */
h2 {
    color: #056CAD;
}

/* Botones personalizados */
.btn-primary {
    background-color: #056CAD;
    border-color: #056CAD;
}

.btn-primary:hover {
    background-color: #004d99;
    border-color: #004d99;
}


/* Lead frase */
.lead {
    font-size: 1.5rem;
    /* italic */
    font-style: italic;
}


/* Colores de secciones */
#noticias {
    background-color: #056CAD;
}

#contacto {
    background-color: #056CAD;
}


/* iconos styles*/
i.bi{
    font-size: 2rem;
    color: #056CAD;
}


/* enlaces */
a{
    color: #056CAD;
    text-decoration: none;
}


.fadeIn {
    animation-name: fadeIn;
    animation-duration: 1s;
}


/* animate */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* animate color soft */
.navbar-brand:hover {
    filter: brightness(0.8);
}

/* mouse leave */
.navbar-brand {
    transition: all 0.3s ease;
}




.nav-link{
    color: #fff;
}