.navbar-brand img {
    max-height: 45px;
    width: auto; /* Mantiene las proporciones del logo */
}

        @media (max-width: 576px) {
.nav-link img {
    width: 14px;
    height: 14px; /* Iconos más pequeños */
}
.nav-link {
    padding: 3px; /* Reduce el espacio interno */
    margin: 0; /* Elimina márgenes entre botones */
}
}
.mega-menu {
    max-width: 90%;
    width: auto; /* Permite que el menú se adapte al contenedor */
}
.dropdown-menu.mega-menu {
min-width: 800px; /* Adjust the width as needed */

}
.dropdown-item {
    border: none;
}
.dropdown-header {
    background-color: #f0f0f0;
    color: #333;
}
.dropdown-menu .dropdown-header {
    background-color: #f0f0f0;
    color: #333;
}
@media (max-width: 768px) {
    .dropdown-menu.mega-menu {
        min-width: 200px; /* Adjust the width as needed */
        
        }
        } 

    .custom-color {
    color: #494645 !important; /* Cambia al color deseado */
}

#mainNavbar {
width: 100%;
background-color: #f9f9fc; /* Cambiar el color aquí */
padding: 10px 20px;
margin-bottom: 0;
}
#mainNavbar .nav-link:hover {
    background-color: #e6e6e9da; /* Color al pasar el mouse */
    border-radius: 4px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    /* background-color: #da1313; */
    display: flex;
    flex-direction: column; 
    justify-content: flex-start;
    align-items: center; 
    min-height: 100vh;
    margin: 0;
    height: 100%;
    
overflow-x: hidden;
    padding: 0;
}

header {
    position: relative;
    width: 100vw;
    height: 60px;
    background: linear-gradient(135deg, #19274e, #35d8d8, #56058b);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* Estilo para la línea divisoria */
.divider {
    border-right: 1px solid #d3d0d0; /* Línea vertical */
}

.divider:last-child {
    border-right: none; /* Quitar la línea del último grupo */
}

/* Estilo para pantallas pequeñas */
@media (max-width: 768px) {
    .divider {
        border-right: none; /* Quitar línea vertical */
        border-bottom: 1px solid #e3f1f1; /* Línea horizontal */
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .divider:last-child {
        border-bottom: none; /* Quitar la última línea horizontal */
    }
}