/* Importar tipografía moderna limpia */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

/* ==========================================
   BARRA DE NAVEGACIÓN Y BOTONES ESTILO OSCURO
   ========================================== */

/* Fondo oscuro completo del menú */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0b0e14; /* Fondo azul/negro oscuro exacto */
    padding: 16px 40px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Alineación horizontal de las opciones */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px; /* Espaciado uniforme como en la imagen */
    margin: 0;
    padding: 0;
}

/* Estilo base del texto de los enlaces */
.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.25s ease-in-out;
}

/* EFECTO DE ILUMINACIÓN VERDE (HOVER & ACTIVE) */
.nav-links a:hover,
.nav-links a:focus,
.nav-links a.active {
    color: #2be072; /* Verde brillante de resalte */
    background-color: rgba(43, 224, 114, 0.08); /* Resplandor suave de fondo */
    text-shadow: 0 0 12px rgba(43, 224, 114, 0.6); /* Iluminación tipo neón */
}

/* FLECHA DEL MENÚ DESPLEGABLE */
.dropbtn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* DESPLEGABLE */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #0b0e14; /* Mantiene la estética oscura */
    min-width: 200px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    padding: 8px 0;
    list-style: none;
    margin-top: 12px;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content li a {
    display: block;
    padding: 10px 20px;
    color: #e0e0e0;
    border-radius: 0;
}

.dropdown-content li a:hover {
    color: #2be072;
    background-color: rgba(43, 224, 114, 0.12);
}