body {
   font-family: "Plus Jakarta Sans", sans-serif;
}

/* Estilos para hacer el Header Transparente y sobre el Carousel */
.header-transparent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050; /* Asegura que esté por encima del carousel */
    background-color: transparent !important;
    box-shadow: none !important; /* Elimina la sombra de la clase shadow */
}

.header-solid {
    background-color: #fff;
    position: relative;
    width: 100%;
    z-index: 1050;
}

.header-solid .nav__menu {
    color: #000;
}

.header-solid .language-btn {
    color: #000;
}

.language-selector {
    display: flex;
    align-items: center;
}

.language-btn {
    background: none;
    border: none;
    border-left: 1px solid #d0d0d0;
    padding: 8px 16px;
    color: #fff;
    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: 'Plus Jakarta Sans', sans-serif;
        text-transform: uppercase;
        font-weight: 400;
        font-style: 'Regular';
        font-size: 14px;
        line-height: 150%;
        letter-spacing: 0%;
        text-align: center;
        color: #fff;

}

.nav__menu:hover {
    color: #ed1b24;
}




.active__header {
    font-weight: 700;

}

.text-seccion{
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    font-style: 'SemiBold';
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
    color: white;
    text-transform: uppercase;

}

.nav__footer {

    color: white;
    text-decoration: none;
    margin-bottom: 6px;
    transition: color 0.3s ease-in-out;
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0%;

}
.nav__footer:hover {
    color: #000;
}

/* 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: #127EC0;
    cursor: pointer;
}
.newsletter-btn:hover {
    color: #127EC0;
}
