.language-selector {
    display: flex;
    align-items: center;
}

.language-btn {
    background: none;
    border: none;
    border-left: 1px solid #d0d0d0;
    padding: 8px 16px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.language-btn:hover {
    color: var(--color-primary, #000);
}

.language-btn::after {
    display: none;
}

.dropdown-menu {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 4px 0;
    margin-top: 8px;
}

.dropdown-item {
    padding: 10px 16px;
    font-size: 14px;
    color: #333;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
    color: var(--color-primary, #000);
}

.dropdown-item form {
    width: 100%;
    margin: 0;
    padding: 0;
}

.dropdown-item button {
    width: 100%;
    padding: 10px 16px;
    margin: 0;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    font-size: 14px;
    color: #333;
    transition: all 0.2s ease;
}

.dropdown-item button:hover {
    background-color: #f5f5f5;
    color: var(--color-primary, #000);
}
.nav__menu {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    text-align: center;
    position: relative;
    color: #000;
    text-decoration: none;
}

/* Línea inferior animada (hover) */
.nav__menu::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -25px;
    width: 0;
    height: 4px;
    background-color: #E20000;
    transition: width 0.3s ease-in-out;
}

.nav__menu:hover::after {
   
    width: 100%;
}

/* Estado activo (mantiene el borde rojo visible) */
.active__header::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -25px;
    width: 100%;
    height: 4px;
    background-color: #E20000;
}

.active__header {
    font-weight: 700;

}

.nav__footer {
    color: white;
    text-decoration: none;
    margin-bottom: 6px;
    transition: color 0.3s ease-in-out;
    font-family: 'Open Sans';
    font-weight: 400;
    font-style: 'Regular';
    font-size: 16px;
    letter-spacing: 0%;

}
.nav__footer:hover {
    color: #E20000;
}

/* Newsletter */
.newsletter-form {
    max-width: 320px;
}
.newsletter-input {
    border: 1px solid #fff;
    border-radius: 30px;
    background: transparent;
    color: white;
    padding: 8px 45px 8px 15px;
}
.newsletter-input::placeholder {
    color: #ccc;
}
.newsletter-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: white;
    cursor: pointer;
}
.newsletter-btn:hover {
    color: #E20000;
}
