/* =========================
        IDIOMAS
========================= */

.idiomas{

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    margin-top: 12px;

    flex-direction: row;

    position: absolute;

    top: 48px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 10;
}

.header-right{

    position: relative;
}

.idioma-btn{

    width: 38px;
    height: 38px;

    border-radius: 50%;

    border: 2px solid var(--secundario);

    background: rgba(255,255,255,.45);

    color: var(--oscuro);

    font-size: 1.3rem;
    font-weight: 700;

    cursor: pointer;

    transition: .3s ease;

    backdrop-filter: blur(6px);

    box-shadow:
        0 4px 10px rgba(0,0,0,.08);
}

.idioma-btn:hover{

    transform: translateY(-3px);

    background: var(--secundario);

    color: white;

    box-shadow:
        0 8px 18px rgba(23,159,84,.25);
}

.idioma-btn.activo{

    background: var(--secundario);

    color: white;

    box-shadow:
        0 0 15px rgba(23,159,84,.35);
}

/* =========================
        RESPONSIVE MOBILE
========================= */

@media (max-width:768px){

    .idiomas{

        top: 24px;

        gap: 50px;
    }

    .idioma-btn{

        width: 32px;
        height: 32px;

        font-size: 1.1rem;
    }
}