/* Header */
.header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 60px;
    width: 100%;
    padding: 0px 40px;
    box-sizing: border-box;
    background-color: transparent;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
}

.header.scrolled {
    background: rgba(2, 6, 23, 0.70);
    backdrop-filter: blur(6px);
}

.scrolledAbajo {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

.header_sin_alerta {
    top: 0px !important;
}

.header__menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.header__menu__op {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    height: 100%;
    color: white;
    cursor: pointer;
    position: relative;
    padding: 0px 16px;
    height: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    text-decoration: none;
}

.header__menu__op:hover {
    border-bottom: 1px solid white;
}

.header__menu__op p {
    margin: 0;
    color: white;
}

.header__menu__sub {
    display: none;
    flex-direction: column;
    gap: 12px;
    position: absolute;
    padding: 24px;
    background-color: white;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    top: 60px;
    left: 0px;
    box-shadow: 0px 4px 8px -2px rgba(71, 85, 105, 0.05), 0px 2px 4px -1px rgba(71, 85, 105, 0.05);
    color: rgba(100, 116, 139, 1);
    width: max-content;
    transition: display 0.3s ease-in-out;
}

.header__menu__sub a,
.header__menu__sub p {
    color: rgba(100, 116, 139, 1);
    text-decoration: none;
}

.header__menu__sub a:hover {
    color: #3A99C9;
}
.header__menu__sub p:hover {
    color: #3A99C9;
}
.header__btn__abrir{
    cursor: pointer;
    color: white;
}

.header__btn{
    display: none;
}
.header__menu__ocultar__web{
    display: none !important;
}
.header__separador{
    display: none;
}

@media (max-width: 1600px) {
    .header{
        gap: 20px;
        padding: 0px 20px;
    }
    .header__menu__op{
        padding: 0px 12px;
    }
}

@media (max-width: 1400px) {
    .header__menu__op{
        padding: 0px 10px;
    }
}

@media (max-width: 1200px) {  

}


@media (max-width: 992px) {  
    .header{
        grid-template-columns: 1fr auto 1px auto;
        gap: 20px;
        padding: 0px 16px;
    }
    .header__menu{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: fixed;
        background-color: white;
        top: 0px;
        width: 350px;
        height: 100vh;
        z-index: 10;
        padding: 72px 18px;
        right: -350px;
        transition: all 300ms;
    }
    .header__menu .header__menu__sub{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: fixed;
        background-color: white;
        top: 0px;
        width: 350px;
        height: 100vh;
        z-index: 10;
        padding: 72px 18px;
        right: -350px;
        transition: all 300ms !important;
        left: auto;
    }

    .header__menu .header__menu__op {
        color: #334155;
        height: 52px;
    }
    .header__menu__op p {
        color: #334155;
    }
    .header__menu__op__idioma p{
        color: white;
    }
    .header__menu__sub__idioma p{
        color: #334155 !important;
    }
    .header__btn{
        display: block;
    }
    .header__menu .iconoir-nav-arrow-down{
        transform: rotate(-90deg);
    }
    .header__menu .header__menu__op{
        width: 100%;
        justify-content: space-between;
    }
    .header__menu__ocultar__web{
        display: block;
    }
    .header__menu__ocultar__web{
        display: block !important;
    }
    .header__menu__titulo, .header__menu__titulo__responsivo{
        display: grid !important;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 10px;
        width: 100%;
        margin-bottom: 36px;
    }
    .header__menu__cerrar, .header__menu__cerrar__responsivo{
        color: #3A99C9;
        cursor: pointer;
    }
    .header__menu__op__idioma{
        padding: 0px;
    }
    .header__separador{
        display: block;
        width: 1px;
        height: 16px;
        background-color: white;
    }
    .header__menu__sub__responsivo a{
        height: 52px;
        gap: 0px;
        padding: 0px 16px;
    }
}


@media (max-width: 768px) {  

}


@media (max-width: 576px) {  
    
}