/* Estilos del menú */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    padding: 10px 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    z-index: 1000; /* Asegura que el menú esté siempre sobre el resto del contenido */
}

.logo {
    width: 200px;
    margin-right: 50px;
}

.menu {
    display: flex;
    gap: 30px;
}

.menu-item {
    text-decoration: none;
    color: #002d80;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.menu-item:hover, .menu-item.active {
    background-color: #4e8c3b;
    color: white;
}

.join-button {
    background-color: #002d80;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    margin-right: 50px;
}

.join-button:hover {
    background-color: #001b4d;
}
