
.menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
    background-color: #858585;
}
.menu__item {
    flex-grow: 1;
    margin: 0;
    padding: 0;
    text-align: center;
    box-sizing: border-box;
}
.menu__item a {
    display: block;
    padding: 4px 20px; /* Ajusta estos valores para cambiar el tamaño de los botones */
    text-decoration: none;
    text-align: center;
    box-sizing: border-box; /* Asegura que el padding y border se incluyan en el tamaño total del botón */
    border-right: 2px solid white; /* Añade la línea blanca entre los botones */
    height: 100%;
    width: 100%;
    background-color: #737373; /* Color de fondo de los botones */
    color: white; /* Cambiado a blanco */
}
.menu__item:last-child a {
    border-right: none; 
}
.menu__item.active a {
    font-weight: bold;           
    color: #FFFFFF;
    background-color: #DAAA3E;
}
a.active {
    font-weight: bold;
    color: #FFFFFF;
    background-color: #DAAA3E;
}
.menu__item a, .menu__item.active a {
    display: inline-block;
    align-items: center;
    justify-content: center;
    height: 100%;
}

    /* Estilos responsivos para pantallas móviles */
/* Estilos responsivos para pantallas móviles */
/*@media (max-width: 768px) {*/
@media (min-width: 50px) and (max-width: 591.98px) {
    .menu {
        
        flex-direction: column !important; 
    }
    .menu__item {
        flex-grow: 0 !important;
        border-bottom: 2px solid white !important; 
        border-right: none !important;
    }
    .menu__item a {
        width: 100% !important;
        color: white !important;
    }
    .menu__item.active a {
        color: white !important; 
    }
}
@media (min-width: 592px) {
    .menu {
        display: flex !important;
        
    }
   
}