/**
 * Estilos para enlaces externos
 */

/* Contenedor de enlaces externos */
.external-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Elementos de la lista */
.external-links li {
    margin: 0 10px;
}

/* Enlaces */
.external-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.external-links a:hover {
    color: #f43f5e; /* Color rosa */
}

/* Elementos de menú de enlaces externos */
.menu-item-external-link a {
    color: #fff;
    font-weight: 500;
}

.menu-item-external-link a:hover {
    color: #f43f5e; /* Color rosa */
}

/* Estilos específicos para la navegación superior */
.external-links-navigation {
    display: flex;
    align-items: center;
}

.external-links-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.external-links-menu li {
    margin: 0 10px;
}

.external-links-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.external-links-menu a:hover {
    color: #f43f5e; /* Color rosa */
}

/* Estilos para el contenedor de navegación superior */
#navigation-top-inner {
    justify-content: space-between;
    width: 100%;
    color: #f0f0f0;
    
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .external-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .external-links li {
        margin: 5px;
    }
    
    .external-links-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .external-links-menu li {
        margin: 5px;
    }
}

@media (max-width: 480px) {
    .external-links a,
    .external-links-menu a {
        font-size: 12px;
    }
}
