/* =========================================
   PALETA OFICIAL PROYECTO SION
   Origen: logo oficial de la ORG
   Aprobada: 16 mayo 2026
   ========================================= */

/* ============================================================
   1. VARIABLES CSS
   ============================================================ */
:root {
    /* Primarios */
    --sion-primary: #F5A524; /* Dorado — figuras del logo */
    --sion-primary-h: #C07A0F; /* Hover / texto sobre dorado */
    --sion-dark: #1B3F7A; /* Azul ONG — PROYECTO SION */
    --sion-secondary: #4C89C0; /* Azul claro — subtítulo */
    /* Variantes oscuras */
    --sion-dark2: #132D57; /* Gradiente hero, variantes */
    --sion-darkest: #0A1C38; /* Footer, CTA donaciones */
    /* Superficie */
    --sion-light: #EEF2F7; /* Secciones alternas */
    /* Bootstrap 5 overrides */
    --bs-primary: #1B3F7A;
    --bs-primary-rgb: 27, 63, 122;
    --bs-warning: #F5A524;
    --bs-body-bg: #F8F9FA;
}


/* ============================================================
   2. BASE
   ============================================================ */
* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #222;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden; /* evita scroll horizontal y gestos táctiles "rotos" en móvil */
}

/* Imágenes responsive por defecto — reglas más específicas (galería, etc.) la sobreescriben */
img {
    max-width: 100%;
    height: auto;
}

/* sticky-top ya ocupa su espacio — no necesita padding-top */
main {
    flex: 1;
}


/* ============================================================
   3. NAVBAR
   ============================================================ */
.sion-navbar {
    background: var(--sion-dark);
    padding: 14px 0;
}

/* Logo navbar */
.sion-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.sion-navbar-logo {
    height: 48px;
    width: auto;
}

.sion-navbar-brand-text {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Links de navegación */
.sion-navbar .nav-link {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 0.9rem;
    margin: 0 4px;
    transition: color 0.2s ease;
}

    .sion-navbar .nav-link:hover {
        color: var(--sion-primary) !important;
    }

    /* Link activo: color dorado + subrayado inferior */
    .sion-navbar .nav-link.sion-nav-active {
        color: var(--sion-primary) !important;
        border-bottom: 1.5px solid var(--sion-primary);
        padding-bottom: calc(0.45rem - 1.5px); /* compensa el border para no mover el layout */
    }

/* Botón hamburguesa animado ☰ → ✕ */
.sion-ham {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}

    .sion-ham:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .sion-ham span {
        display: block;
        width: 22px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform-origin: center;
    }

    /* Estado abierto: líneas se convierten en X */
    .sion-ham.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .sion-ham.is-open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .sion-ham.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }


/* Botón "Donar" — píldora dorada.
   Usa texto #fff (Botón primario usa #fff según tabla de uso, sección 5 del doc oficial) */
.btn-dona {
    background: var(--sion-primary) !important;
    color: #fff !important;
    border-radius: 25px;
    padding: 6px 22px !important;
    font-weight: 600;
    transition: background 0.2s ease;
}

    .btn-dona:hover,
    .btn-dona.btn-dona-active {
        background: var(--sion-primary-h) !important;
        color: #fff !important;
    }


/* ============================================================
   4. BOTONES SION (para páginas públicas)
   ============================================================ */

/* Primario — píldora dorada. Texto blanco según tabla oficial (sección 5) */
.btn-sion-primary {
    background: var(--sion-primary);
    color: #fff;
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s ease;
}

    .btn-sion-primary:hover {
        background: var(--sion-primary-h);
        color: #fff;
        text-decoration: none;
    }

/* Secundario — contorno blanco (para usar sobre fondos oscuros como el hero) */
.btn-sion-outline {
    background: transparent;
    color: #fff;
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s ease;
}

    .btn-sion-outline:hover {
        border-color: #fff;
        color: #fff;
        text-decoration: none;
    }

/* Grande — CTA de donación */
.btn-sion-grande {
    background: var(--sion-primary);
    color: #fff;
    padding: 16px 50px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    display: inline-block;
    text-decoration: none;
    transition: background 0.2s ease;
}

    .btn-sion-grande:hover {
        background: var(--sion-primary-h);
        color: #fff;
        text-decoration: none;
    }


/* ============================================================
   5. FOOTER
   Footer usa --sion-darkest (#0A1C38) — ver tabla de uso oficial
   ============================================================ */
.sion-footer {
    background: var(--sion-darkest);
    color: rgba(255, 255, 255, 0.55);
    padding: 40px 0;
    font-size: 0.85rem;
    text-align: center;
}

    .sion-footer a {
        color: var(--sion-primary);
        text-decoration: none;
    }

        .sion-footer a:hover {
            color: var(--sion-primary-h);
            text-decoration: underline;
        }

.sion-footer-logo {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.sion-footer-copy {
    margin-top: 16px;
    margin-bottom: 0;
}

.sion-footer-social {
    font-size: 1.4rem;
    text-decoration: none !important;
}

.sion-footer-social:hover {
    opacity: 0.8;
}


/* ============================================================
   6. SECCIONES REUTILIZABLES (Index, Nosotros, etc.)
   ============================================================ */
.sion-seccion {
    padding: 80px 0;
}

.sion-seccion-alt {
    background: var(--sion-light);
}

/* h2 usa --sion-dark; body text #495057 — según tabla oficial */
.sion-seccion h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--sion-dark);
}

.sion-seccion p {
    color: #495057;
    font-size: 1rem;
    line-height: 1.8;
}

/* Eyebrow / badge — fondo claro, texto dorado */
.sion-badge {
    background: #EBF3FB;
    color: var(--sion-primary);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
}

/* Placeholder de imagen en secciones */
.sion-seccion-img {
    border-radius: 16px;
    overflow: hidden;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EBF3FB;
    font-size: 5rem;
}

.sion-seccion-img-real {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
}

    .sion-seccion-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


/* ============================================================
   7. CONTADORES
   Fondo: --sion-primary.
   Texto: --sion-dark (NO blanco — regla WCAG, sección 4 del doc oficial)
   ============================================================ */
.sion-contadores {
    background: var(--sion-primary);
    padding: 60px 0;
}

.sion-contador-numero {
    font-size: 3.5rem;
    font-weight: 800; /* Inter 800 — mayor impacto visual que 700 */
    line-height: 1;
    display: block;
    color: var(--sion-dark); /* azul sobre dorado: ratio 4.9:1, pasa WCAG AA */
}

.sion-contador-etiqueta {
    font-size: 0.95rem;
    color: var(--sion-dark);
    opacity: 0.8;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ============================================================
   8. UTILIDADES SION
   ============================================================ */
.text-sion-primary {
    color: var(--sion-primary) !important;
}

.text-sion-dark {
    color: var(--sion-dark) !important;
}

.text-sion-secondary {
    color: var(--sion-secondary) !important;
}

.bg-sion-dark {
    background-color: var(--sion-dark) !important;
}

.bg-sion-darkest {
    background-color: var(--sion-darkest) !important;
}

.bg-sion-primary {
    background-color: var(--sion-primary) !important;
}


/* ============================================================
   9. FOCUS VISIBLE (accesibilidad)
   ============================================================ */
:focus-visible {
    outline: 3px solid var(--sion-primary);
    outline-offset: 2px;
}
/* ============================================================
   10. HERO — Index.cshtml
   ============================================================ */
.sion-hero {
    background: linear-gradient(135deg, var(--sion-dark) 30%, var(--sion-dark2) 100%);
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

    /* Imagen decorativa semitransparente — lado derecho.*/
    /*    .sion-hero::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: 45%;
        height: 100%;
        background-image: var(--hero-bg, url('/images/hero-bg.jpeg'));
        background-size: cover;
        background-position: center;
        opacity: 0.2;
        pointer-events: none;
    }*/
    /*    .sion-hero::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-image: url('/images/hero-bg.jpeg');
        background-size: cover;
        background-position: center top;
        opacity: 0.15;
        pointer-events: none;
    }*/
    /*    .sion-hero::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(to right, var(--sion-dark) 0%, transparent 40%), linear-gradient(to bottom, var(--sion-dark) 0%, transparent 30%), url('/images/hero-bg.jpeg');
        background-size: cover;
        background-position: center top;
        opacity: 0.5;
        pointer-events: none;
    }*/
    /*    .sion-hero::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(to right, var(--sion-dark) 40%, transparent 75%), linear-gradient(to bottom, transparent 50%, var(--sion-dark) 100%), url('/images/hero-bg.jpeg');
        background-size: cover;
        background-position: center top;
        opacity: 0.55;
        pointer-events: none;
    }*/
    .sion-hero::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: 55%;
        height: 100%;
        background-image: linear-gradient(to right, var(--sion-dark) 0%, transparent 90%), linear-gradient(to bottom, var(--sion-dark) 0%, transparent 30%), var(--hero-bg, url('/images/hero-bg.jpeg'));
        background-size: cover;
        background-position: center top;
        opacity: 0.6;
        pointer-events: none;
    }

.sion-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.sion-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 0;
}

.sion-hero p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    margin: 1.2rem 0 2rem;
    max-width: 520px;
}

.sion-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

@media (max-width: 991.98px) {
    .sion-hero {
        min-height: 70vh;
    }

        .sion-hero::after {
            display: none;
        }

        .sion-hero h1 {
            font-size: 2.2rem;
        }

    .sion-hero-content {
        padding: 60px 0;
    }
}
/* ============================================================
   11. CTA DONACIÓN — Index.cshtml
   ============================================================ */
.sion-cta {
    background: var(--sion-dark2);
    padding: 80px 0;
    text-align: center;
}

    .sion-cta h2 {
        color: #fff;
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .sion-cta p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 1rem;
        margin: 0 auto 2rem;
        max-width: 560px;
    }

.sion-cta-montos .sion-monto-btn {
    text-decoration: none;
}

.sion-cta-montos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.sion-monto-btn {
    background: transparent;
    border: 2px solid var(--sion-primary);
    color: var(--sion-primary);
    border-radius: 25px;
    padding: 10px 28px;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

    .sion-monto-btn:hover,
    .sion-monto-btn.active {
        background: var(--sion-primary);
        color: #fff;
    }
/* ============================================================
   12. PAGE HERO — páginas internas (Nosotros, Galería, etc.)
   ============================================================ */
.sion-page-hero {
    background: linear-gradient(135deg, var(--sion-dark) 60%, var(--sion-dark2) 100%);
    padding: 70px 0 60px;
    position: relative;
    overflow: hidden;
}

    .sion-page-hero::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: 40%;
        height: 100%;
        background: url('/images/hero-bg.jpg') center / cover;
        opacity: 0.12;
        pointer-events: none;
    }

.sion-page-hero-content {
    position: relative;
    z-index: 2;
}

.sion-page-hero h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
}

.sion-page-hero p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    max-width: 500px;
    margin-top: 10px;
}


/* ============================================================
   13. MISIÓN / VISIÓN cards
   ============================================================ */
.sion-mv-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e8e8e8;
    padding: 32px 28px;
    height: 100%;
}

.sion-mv-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #EBF3FB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.sion-mv-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sion-dark);
    margin-bottom: 10px;
}

.sion-mv-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}


/* ============================================================
   14. VALORES
   ============================================================ */
.sion-valor-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.sion-valor-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #EBF3FB;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.sion-valor-titulo {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--sion-dark);
    margin-bottom: 4px;
}

.sion-valor-desc {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}


/* ============================================================
   15. EQUIPO / JUNTA DIRECTIVA
   ============================================================ */
.sion-equipo-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e8e8e8;
    padding: 28px 24px;
    text-align: center;
}

.sion-equipo-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--sion-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--sion-dark); /* azul sobre dorado — WCAG AA */
    margin: 0 auto 14px;
}

/* Variantes de color para los placeholders */
.sion-avatar-alt1 {
    background: var(--sion-secondary);
    color: #fff;
}

.sion-avatar-alt2 {
    background: var(--sion-dark2);
    color: #fff;
}

.sion-avatar-alt3 {
    background: var(--sion-dark);
    color: #fff;
}

.sion-equipo-nombre {
    font-size: 1rem;
    font-weight: 600;
    color: var(--sion-dark);
}

.sion-equipo-cargo {
    font-size: 0.8rem;
    color: #999;
    margin-top: 4px;
}

/* ============================================================
   16. GALERÍA
   ============================================================ */
.sion-galeria-thumb {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .sion-galeria-thumb:hover {
        transform: scale(1.03);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    }

    .sion-galeria-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
/* ============================================================
   17. GLIGHTBOX — personalización completa
   ============================================================ */

/* Fondo overlay */
.goverlay {
    background: rgba(5, 15, 30, 0.96) !important;
}

/* Caption */
.gslide-description {
    background: #F5A524 !important;
    backdrop-filter: blur(4px);
    text-align: center !important;
}

.gslide-title {
    font-family: 'Inter', 'Segoe UI', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: rgba(10, 28, 56, 0.92) !important;
    margin: 0 !important;
}

.gslide-desc {
    display: none !important;
}

/* Botones siguiente / anterior */
.gbtn.gnext,
.gbtn.gprev {
    background: #F5A524 !important;
    border-radius: 50% !important;
    width: 48px !important;
    height: 48px !important;
    opacity: 1 !important;
}

    .gbtn.gnext:hover,
    .gbtn.gprev:hover {
        background: #C07A0F !important;
    }

    .gbtn.gnext svg path,
    .gbtn.gprev svg path {
        fill: #1B3F7A !important;
    }

/* Botón cerrar */
.gbtn.gclose {
    background: rgba(10, 28, 56, 0.85) !important;
    border-radius: 50% !important;
    opacity: 1 !important;
}

    .gbtn.gclose:hover {
        background: #F5A524 !important;
    }

    .gbtn.gclose svg path {
        fill: #fff !important;
    }
/* ============================================================
   18. FORMULARIO DE CONTACTO
   ============================================================ */
.sion-form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--sion-dark);
    margin-bottom: 6px;
    display: block;
}

.sion-form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #dde3ea;
    border-radius: 10px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    color: #222;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

    .sion-form-control:focus {
        border-color: var(--sion-primary);
        box-shadow: 0 0 0 3px rgba(245, 165, 36, 0.15);
    }

    .sion-form-control.is-invalid {
        border-color: #dc3545;
    }

.sion-form-error {
    font-size: 0.8rem;
    color: #dc3545;
    margin-top: 4px;
    display: block;
}


/* ============================================================
   19. INFO DE CONTACTO
   ============================================================ */
.sion-contacto-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.sion-contacto-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #EBF3FB;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.sion-contacto-titulo {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--sion-dark);
    margin-bottom: 2px;
}

.sion-contacto-desc {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

    .sion-contacto-desc a {
        color: var(--sion-secondary);
        text-decoration: none;
    }

        .sion-contacto-desc a:hover {
            color: var(--sion-primary);
            text-decoration: underline;
        }
/* ============================================================
   20. MAPA GOOGLE MAPS
   ============================================================ */
.sion-mapa {
    border-radius: 14px;
    overflow: hidden;
    margin-top: 8px;
}

    .sion-mapa iframe {
        width: 100%;
        height: 260px;
        border: 0;
        display: block;
    }
/* ============================================================
   21. DONACIONES
   ============================================================ */
.sion-dona-montos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sion-dona-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.sion-dona-prefix {
    position: absolute;
    left: 14px;
    font-weight: 600;
    color: #666;
    font-size: 1rem;
}

.sion-dona-input {
    padding-left: 28px !important;
}

.sion-dona-seguro {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 12px;
}

/* Resultado donación */
.sion-dona-exito {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #eaf7ef;
    border: 1px solid #a8d5b5;
    border-radius: 10px;
    padding: 16px 20px;
    color: #1e6e3a;
    font-size: 0.9rem;
}

.dona-exito-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.sion-dona-error {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fdecea;
    border: 1px solid #f5c6c2;
    border-radius: 10px;
    padding: 16px 20px;
    color: #c0392b;
    font-size: 0.9rem;
}

.sion-dona-nota {
    font-size: 0.85rem;
    color: #777;
}

    .sion-dona-nota a {
        color: var(--sion-secondary);
        text-decoration: none;
    }

        .sion-dona-nota a:hover {
            color: var(--sion-primary);
        }

/* Impacto */
.sion-impacto-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.sion-impacto-monto {
    min-width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--sion-primary);
    color: var(--sion-dark);
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sion-impacto-titulo {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--sion-dark);
    margin-bottom: 2px;
}

.sion-impacto-desc {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.sion-dona-confianza {
    background: var(--sion-light);
    border-radius: 12px;
    padding: 20px 24px;
}

    .sion-dona-confianza p {
        font-size: 0.875rem;
        color: #555;
        margin: 0 0 8px;
    }

        .sion-dona-confianza p:last-child {
            margin-bottom: 0;
        }

/* ============================================================
   22. BANNER DE NOTIFICACIÓN
   ============================================================ */
.sion-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 14px 0;
    font-size: 0.95rem;
    animation: sionBannerSlide 0.4s ease;
}

@keyframes sionBannerSlide {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.sion-banner-exito {
    background: var(--sion-primary);
    color: var(--sion-dark);
}

.sion-banner-error {
    background: #8b1a1a;
    color: #fff;
}

    .sion-banner-error a {
        color: var(--sion-primary);
    }

.sion-banner-close {
    background: transparent;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
    padding: 0 0 0 16px;
    flex-shrink: 0;
}

    .sion-banner-close:hover {
        opacity: 1;
    }
/* ============================================================
   SECTION 23 — PANEL ADMINISTRATIVO
   ============================================================ */

.sion-admin-body {
    display: flex;
    min-height: 100vh;
    background: #f4f6f9;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    margin: 0; padding: 0;
}

/* SIDEBAR */
.sion-admin-sidebar {
    width: 240px;
    min-height: 100vh;
    background: var(--sion-dark);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0;
    z-index: 200;
    transition: transform 0.3s ease;
}
.sion-admin-brand {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
}
.sion-admin-brand span {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    font-weight: 400;
    letter-spacing: 0;
    display: block;
    margin-top: 2px;
}
.sion-admin-menu { padding: 16px 0; flex: 1; overflow-y: auto; }
.sion-admin-menu-label {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 12px 24px 4px;
}
.sion-admin-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.15s;
    border-left: 3px solid transparent;
    cursor: pointer;
}
.sion-admin-menu-item:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
    text-decoration: none;
}
.sion-admin-menu-item.active {
    background: rgba(245,165,36,0.1);
    color: var(--sion-primary);
    border-left-color: var(--sion-primary);
}
.sion-admin-menu-icon { font-size: 1.1rem; width: 20px; text-align: center; }

/* Usuario al fondo del sidebar */
.sion-admin-sidebar-user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.sion-admin-avatar {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--sion-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}
.sion-admin-user-info { flex: 1; min-width: 0; }
.sion-admin-user-name {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sion-admin-user-role { color: rgba(255,255,255,0.4); font-size: 0.7rem; }
.sion-admin-logout-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.3);
    font-size: 1rem;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
}
.sion-admin-logout-btn:hover { color: #fff; }

/* MAIN */
.sion-admin-main {
    margin-left: 240px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.sion-admin-topbar {
    background: #fff;
    padding: 14px 28px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 16px;
    position: sticky;
    top: 0;
    z-index: 100;
}
.sion-admin-topbar-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--sion-dark);
    line-height: 1.2;
}
.sion-admin-topbar-sub { font-size: 0.75rem; color: #888; }
.sion-admin-ver-sitio {
    font-size: 0.8rem;
    color: var(--sion-primary);
    text-decoration: none;
    white-space: nowrap;
}
.sion-admin-ver-sitio:hover { text-decoration: underline; }
.sion-admin-toggle {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--sion-dark);
}
.sion-admin-content { padding: 28px; flex: 1; }

/* STAT CARDS */
.sion-admin-stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    border: 1px solid #e9ecef;
    height: 100%;
}
.sion-admin-stat-label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.sion-admin-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--sion-dark);
    margin: 4px 0;
    line-height: 1;
}
.sion-admin-stat-sub { font-size: 0.75rem; color: #aaa; }
.sion-admin-stat-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* CARD GENÉRICA */
.sion-admin-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    overflow: hidden;
}
.sion-admin-card-header {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sion-admin-card-title { font-size: 0.9rem; font-weight: 600; color: var(--sion-dark); }
.sion-admin-card-body { padding: 20px; }
.sion-admin-btn {
    background: var(--sion-primary);
    color: #fff;
    border: none;
    padding: 7px 16px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-block;
}
.sion-admin-btn:hover { background: #d99a3a; color: #fff; text-decoration: none; }

/* TABLE */
.sion-admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}
.sion-admin-table th {
    padding: 10px 16px;
    text-align: left;
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #f0f0f0;
}
.sion-admin-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #f9f9f9;
    color: #333;
    vertical-align: middle;
}
.sion-admin-table tr:last-child td { border-bottom: none; }
.sion-admin-table tbody tr:hover td { background: #fafafa; }

/* BADGES */
.sion-admin-badge {
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 500;
}
.sion-admin-badge-completado { background: #e6f4ea; color: #2d7a3a; }
.sion-admin-badge-pendiente  { background: #fff8e1; color: #d99a3a; }
.sion-admin-badge-revertido  { background: #fce8e6; color: #c0392b; }

/* EMPTY STATE */
.sion-admin-empty {
    text-align: center;
    color: #aaa;
    font-size: 0.85rem;
    padding: 32px 20px;
}

/* LOGIN */
.sion-admin-login-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: var(--sion-dark);
}
.sion-admin-login-box {
    background: #fff;
    border-radius: 16px;
    padding: 40px 36px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    position: relative; /* ← agregá esto */
    z-index: 1;
}
.sion-admin-login-logo { text-align: center; margin-bottom: 28px; }
.sion-admin-login-title { font-size: 1rem; color: var(--sion-muted); margin-top: 8px; }
.sion-admin-login-error {
    background: #fff0f0;
    color: #c0392b;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.88rem;
    margin-bottom: 20px;
}
/* LOGIN WAVES */
.sion-login-waves {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    pointer-events: none;
    overflow: hidden;
    line-height: 0;
    z-index: 0;
}

.sion-login-wave {
    display: block;
    width: 200%;
}

.sion-login-wave--blue {
    fill: var(--sion-secondary);
    opacity: 0.35;
    height: 170px;
    animation: sionWave 9s ease-in-out infinite alternate;
}

.sion-login-wave--gold {
    fill: var(--sion-primary);
    opacity: 0.5;
    height: 120px;
    margin-top: -80px;
    animation: sionWave 12s ease-in-out infinite alternate-reverse;
}

@keyframes sionWave {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-15%);
    }
}
/* RESPONSIVE */
@media (max-width: 991px) {
    .sion-admin-sidebar { transform: translateX(-100%); }
    .sion-admin-sidebar.open { transform: translateX(0); }
    .sion-admin-main { margin-left: 0; }
}
/* TABLA ADMIN GENÉRICA */
.sion-admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.sion-admin-table thead th {
    padding: 10px 16px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #999;
    border-bottom: 1px solid #f0f0f0;
    background: #fafafa;
}

.sion-admin-table tbody tr {
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.15s;
}

.sion-admin-table tbody tr:last-child {
    border-bottom: none;
}

.sion-admin-table tbody tr:hover {
    background: #fafafa;
}

.sion-admin-table tbody td {
    padding: 12px 16px;
    vertical-align: middle;
}

.sion-table-row-inactive {
    opacity: 0.5;
}

.sion-table-text {
    font-size: 0.875rem;
    color: var(--sion-dark);
    font-weight: 500;
}

.sion-table-hint {
    font-size: 0.78rem;
    color: #999;
}

/* THUMBNAIL GALERÍA ADMIN */
.galeria-admin-thumb {
    width: 54px;
    height: 54px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--sion-light);
    flex-shrink: 0;
}

.galeria-admin-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* LOGS AUDITORÍA */
.logs-filter-bar {
    padding: 12px 20px 0;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 16px;
}

.logs-filter-form {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

    .logs-filter-form .sion-form-label {
        white-space: nowrap;
        font-size: 0.82rem;
        color: #555;
        margin: 0;
    }

    .logs-filter-form .sion-form-control {
        max-width: 160px;
        margin-bottom: 0;
    }

.logs-search-bar {
    padding: 12px 20px 16px;
}

    .logs-search-bar .sion-form-control {
        max-width: 380px;
        margin-bottom: 0;
    }

.logs-table-wrap {
    overflow-x: auto;
}

.log-fecha {
    display: block;
}

.log-hora {
    font-size: 0.78rem;
    color: #aaa;
    display: block;
}

.log-email {
    font-size: 0.8rem;
    word-break: break-all;
}

.log-detalle {
    font-size: 0.82rem;
    color: #444;
}

/* Badges de acción */
.log-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.log-badge-danger  { background: #fdecea; color: #c0392b; }
.log-badge-success { background: #eaf7ef; color: #1e8449; }
.log-badge-info    { background: #ebf3fb; color: #1B3F7A; }
.log-badge-default { background: #f4f4f4; color: #666; }

.logs-count-footer {
    padding: 10px 20px;
    font-size: 0.8rem;
    color: #999;
    border-top: 1px solid #f0f0f0;
}

/* GALERÍA ADMIN — BÚSQUEDA Y PAGINACIÓN */
.galeria-search-bar {
    padding: 12px 20px 16px;
}

.galeria-search-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .galeria-search-form .sion-form-control {
        max-width: 320px;
        margin-bottom: 0;
    }

.galeria-paginacion {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 16px 20px 12px;
    flex-wrap: wrap;
}

.pag-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 34px;
    padding: 0 10px;
    border-radius: 6px;
    border: 1px solid #d0d7e3;
    background: #fff;
    color: var(--sion-dark);
    font-size: 0.83rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}

    .pag-btn:hover:not(.disabled):not(.active) {
        background: var(--sion-light);
        border-color: var(--sion-secondary);
        color: var(--sion-dark);
    }

    .pag-btn.active {
        background: var(--sion-dark);
        border-color: var(--sion-dark);
        color: #fff;
        cursor: default;
    }

    .pag-btn.disabled {
        color: #b0b8c9;
        cursor: not-allowed;
        background: #f7f9fc;
    }

.pag-ellipsis {
    padding: 0 4px;
    color: #999;
    font-size: 0.85rem;
    line-height: 34px;
}

.pag-info {
    margin-left: auto;
    font-size: 0.8rem;
    color: #888;
}

/* SECCIONES CRUD */
.seccion-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: opacity 0.2s;
}

    .seccion-row:last-child {
        border-bottom: none;
    }

    .seccion-row:hover {
        background: #fafafa;
    }

    .seccion-row.inactiva {
        opacity: 0.5;
    }

.seccion-orden {
    font-size: 0.72rem;
    color: #bbb;
    min-width: 24px;
    text-align: center;
}

.drag-handle {
    cursor: grab;
}

.drag-handle:active {
    cursor: grabbing;
}

.seccion-row-ghost {
    opacity: 0.4;
    background: #EBF3FB;
}

.seccion-thumb {
    width: 54px;
    height: 54px;
    border-radius: 8px;
    background: var(--sion-light);
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #aaa;
}

    .seccion-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.seccion-info {
    flex: 1;
    min-width: 0;
}

.seccion-titulo {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--sion-dark);
}

.seccion-desc {
    font-size: 0.75rem;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 280px;
}

.badge-estilo {
    display: inline-block;
    font-size: 0.68rem;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 500;
    margin-top: 4px;
}

.badge-img-der {
    background: #e8eef8;
    color: #1a4a8a;
}

.badge-img-izq {
    background: #e8f4e8;
    color: #1a6a2a;
}

.badge-txt-solo {
    background: #f5f0ff;
    color: #5a2d9a;
}

.btn-sion-row-edit {
    background: none;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.75rem;
    color: #555;
    cursor: pointer;
    white-space: nowrap;
}

    .btn-sion-row-edit:hover {
        border-color: var(--sion-primary);
        color: var(--sion-primary);
    }

.btn-sion-row-del {
    background: none;
    border: 1px solid #fce8e6;
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 0.75rem;
    color: #c0392b;
    cursor: pointer;
}

    .btn-sion-row-del:hover {
        background: #fce8e6;
    }

/* TOAST */
.sion-toast {
    position: fixed;
    top: 24px;
    right: 24px;
    background: #fff;
    border-radius: 10px;
    padding: 14px 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.14);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.87rem;
    color: #222;
    max-width: 340px;
    border-left: 4px solid #ccc;
    transition: opacity 0.3s, transform 0.3s;
    animation: toastEntrada 0.3s ease;
}

.sion-toast.exito { border-left-color: #2d7a3a; }
.sion-toast.error { border-left-color: #c0392b; }

.sion-toast-icon {
    font-size: 1rem;
    font-weight: 700;
}

.sion-toast.exito .sion-toast-icon { color: #2d7a3a; }
.sion-toast.error .sion-toast-icon { color: #c0392b; }

.sion-toast-close {
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    font-size: 0.75rem;
    margin-left: auto;
    padding: 0 2px;
}

.sion-toast-close:hover { color: #555; }

@keyframes toastEntrada {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* MODAL */
.sion-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 200;
    align-items: center;
    justify-content: center;
}

    .sion-modal-overlay.show {
        display: flex;
    }

.sion-modal-box {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    width: 480px;
    max-width: 95vw;
    max-height: 90vh;
    overflow-y: auto;
}

.sion-modal-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--sion-dark);
    margin-bottom: 20px;
}

.sion-modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.estilo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-top: 4px;
}

.estilo-option {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 10px 8px;
    text-align: center;
    cursor: pointer;
    font-size: 0.72rem;
    color: #555;
    transition: all 0.15s;
}

    .estilo-option.selected {
        border-color: var(--sion-primary);
        color: var(--sion-primary);
        background: #FEF4E0;
    }

.estilo-icon {
    font-size: 1.3rem;
    display: block;
    margin-bottom: 4px;
}

/* reutilizados del login */
.sion-admin-empty {
    text-align: center;
    padding: 40px;
    color: var(--sion-muted);
}

.sion-imagen-preview {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .sion-imagen-preview img {
        width: 80px;
        height: 54px;
        object-fit: cover;
        border-radius: 6px;
        border: 1px solid #ddd;
    }

.sion-imagen-hint {
    font-size: 0.75rem;
    color: var(--sion-muted);
}

.sion-form-hint {
    font-size: 0.75rem;
    color: var(--sion-muted);
    display: block;
    margin-top: 4px;
}

.sion-card-header {
    padding: 14px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sion-card-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sion-dark);
}

.sion-card-hint {
    font-size: 0.72rem;
    color: #aaa;
}

/* ── Contenido Fijo admin ─────────────────────────────────────────────── */
.sion-admin-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--sion-dark);
    margin-bottom: 4px;
}

.sion-admin-input {
    display: block;
    width: 100%;
    padding: 8px 12px;
    font-size: 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    color: #111827;
    background: #fff;
    transition: border-color 0.15s;
}
.sion-admin-input:focus {
    outline: none;
    border-color: var(--sion-primary);
    box-shadow: 0 0 0 3px rgba(245,165,36,0.15);
}

.sion-admin-hint {
    font-size: 0.72rem;
    color: #9ca3af;
    margin-top: 4px;
}

.sion-admin-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: var(--sion-primary);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}
.sion-admin-btn-primary:hover { background: #d99a3a; color: #fff; }

/* ── Donaciones: tarjeta SINPE temporal ─────────────────────────── */
.sion-dona-sinpe-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.sion-dona-logo {
    height: 90px;
    width: auto;
}

.sion-dona-sinpe-texto {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.sion-dona-contacto-row {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 14px 18px;
}

.sion-dona-contacto-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.sion-dona-contacto-label {
    font-size: 0.75rem;
    color: #888;
    margin: 0 0 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sion-dona-contacto-valor {
    font-size: 1rem;
    font-weight: 600;
    color: var(--sion-dark);
    margin: 0;
}

.sion-dona-contacto-valor a {
    color: var(--sion-dark);
    text-decoration: none;
}

.sion-dona-contacto-valor a:hover {
    color: var(--sion-primary);
}

/* ══════════════════════════════════════════════════════════════
   ANIMACIONES DE SCROLL — 2026-06-29
   Fade-in y slide-in al entrar al viewport.
   La clase .visible la agrega site.js via IntersectionObserver.
   Para agregar el efecto a un elemento: añadir una de estas clases:
     .sion-reveal         → aparece subiendo desde abajo
     .sion-reveal-left    → aparece desde la izquierda
     .sion-reveal-right   → aparece desde la derecha
   Delays opcionales: .sion-reveal-delay-1 hasta -4
   ══════════════════════════════════════════════════════════════ */

.sion-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

.sion-reveal-left {
    opacity: 0;
    transform: translateX(-36px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

.sion-reveal-right {
    opacity: 0;
    transform: translateX(36px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

/* Estado final — el JS agrega esta clase al entrar al viewport */
.sion-reveal.visible,
.sion-reveal-left.visible,
.sion-reveal-right.visible {
    opacity: 1;
    transform: none;
}

/* Delays escalonados para grupos de elementos (contadores, cards) */
.sion-reveal-delay-1 { transition-delay: 0.10s; }
.sion-reveal-delay-2 { transition-delay: 0.20s; }
.sion-reveal-delay-3 { transition-delay: 0.30s; }
.sion-reveal-delay-4 { transition-delay: 0.40s; }

/* Respeto a preferencias de accesibilidad del sistema operativo */
@media (prefers-reduced-motion: reduce) {
    .sion-reveal,
    .sion-reveal-left,
    .sion-reveal-right {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}