.color-azul{
    color: #004BCA !important; /* 16cfdd  9ecbed*/
}
.color-azul-fondo{
    background-color: #004BCA !important;
    color: white !important;
}
.color-verde{
    color: #06A11D !important;
}
.color-verde-fondo{
    background-color: #06A11D !important;
    color: white !important;
}
.tec-peq{
    width: 30px;
}
.fondo{
    background-image: url('../img/fondoLap.png') !important;
    background-size: cover; /* Cubre todo el div */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* No repite */
    height: 500px; /* Altura necesaria */
    width: 100%;
    padding-right: 100px;
}

.fondo-gradiente-verde{
    background: linear-gradient(to right, #06A11D, #b4ebbd);
}
.fondo-gradiente-azul{
    background: linear-gradient(to right, #004BCA, #79a0e3);
}
.logoBlanco-Sent{
    height: 70px;
}

/* Ocultamos el ícono por defecto */
.navbar-toggler .navbar-toggler-icon {
    display: none;
}

/* Creamos nuestro propio ícono */
.navbar-toggler {
    font-size: 1.8rem;
    color: black !important;
    position: relative;
    border: 1px solid rgba(0,0,0,0.3); 
    padding: 0.5rem 1rem;
}

.navbar-toggler::after {
    content: "☰";
    font-size: 1.8rem;
}

.navbar-toggler[aria-expanded="true"]::after {
    content: "✕";
}

@media (max-width: 450px){
    .logoBlanco-Sent{
        height: 40px;
    }
}