/* ================= LOADER IDIOMA ================= */
.language-loader {
    position: fixed;
    inset: 0;
    background: rgba(17, 34, 24, 0.32);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 3000;
}

.language-loader.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.language-loader-box {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(31, 77, 46, 0.08);
    border-radius: 18px;
    padding: 22px 26px;
    min-width: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.language-loader-box p {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1f4d2e;
}

.language-spinner {
    width: 34px;
    height: 34px;
    border: 3px solid rgba(31, 77, 46, 0.18);
    border-top-color: #1f4d2e;
    border-radius: 50%;
    animation: spinLoader 0.8s linear infinite;
}

.section-title {
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 0;
    height: 4px;
    margin: 12px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #71c98a, #1f4d2e);
    transition: width 0.8s ease;
}

.section-title.show::after {
    width: 700px;
}