﻿/*
  Archivo exclusivo para la sección de Transparencia en cPanel.
  Se carga después de los estilos globales del sitio para sobrescribir
  solo los bloques de Estados Financieros, Educación Financiera y Sanciones Impuestas.
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --color-primary: #A5C746;
    --color-primary-dark: #4f6b18;
    --color-primary-soft: #eef5df;
    --color-accent: #7AA127;
    --color-primary-blue: #0A6BB1;
    --color-primary-blue-dark: #374988;
    --color-text: #26311c;
    --color-text-soft: #5a6353;
    --color-text-muted: #7a8174;
    --color-bg: #ffffff;
    --color-bg-soft: #f5f7f2;
    --color-bg-section: #f4f6f1;
    --color-border: rgba(34, 44, 28, 0.08);
    --shadow-soft: 0 10px 25px rgba(18, 24, 14, 0.06);
    --shadow-medium: 0 14px 30px rgba(18, 24, 14, 0.08);
    --shadow-strong: 0 22px 40px rgba(18, 24, 14, 0.12);
    --radius-sm: 14px;
    --radius-md: 20px;
    --radius-lg: 24px;
    --radius-pill: 999px;
    --section-space: 80px;
    --section-space-sm: 60px;
    --font-main: 'Montserrat', sans-serif;
    --font-title: 'Montserrat', sans-serif;
}
body {
    background: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

.transparencia-financiera,
.transparencia-financiera p,
.transparencia-financiera a,
.transparencia-financiera li,
.transparencia-financiera span,
.edu-hero,
.edu-hero p,
.edu-hero a,
.edu-hero li,
.edu-hero span,
.edu-topics,
.edu-topics p,
.edu-topics a,
.edu-topics li,
.edu-topics span,
.edu-tips,
.edu-tips p,
.edu-tips a,
.edu-tips li,
.edu-tips span,
.edu-official,
.edu-official p,
.edu-official a,
.edu-official li,
.edu-official span,
.sanciones-page,
.sanciones-page p,
.sanciones-page a,
.sanciones-page li,
.sanciones-page span {
    font-family: var(--font-main);
    color: var(--color-text);
}
.transparencia-financiera h1,
.transparencia-financiera h2,
.transparencia-financiera h3,
.transparencia-financiera h4,
.transparencia-financiera h5,
.transparencia-financiera h6,
.edu-hero h1,
.edu-hero h2,
.edu-hero h3,
.edu-topics h1,
.edu-topics h2,
.edu-topics h3,
.edu-tips h1,
.edu-tips h2,
.edu-tips h3,
.edu-official h1,
.edu-official h2,
.edu-official h3,
.sanciones-page h1,
.sanciones-page h2,
.sanciones-page h3,
.sanciones-page h4,
.sanciones-page h5,
.sanciones-page h6 {
    font-family: var(--font-title);
    font-weight: 900;
}

.transparencia-financiera p,
.edu-topics p,
.edu-tips p,
.edu-official p,
.sanciones-page p {
    margin: 0;
    color: var(--color-text-soft);
}

.cascade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.cascade.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.25s; }
.delay-3 { transition-delay: 0.4s; }
.delay-4 { transition-delay: 0.55s; }

/* ESTADOS FINANCIEROS */
.transparencia-financiera {
    background: linear-gradient(180deg, #f8faf5 0%, #f1f5eb 100%);
    padding: 90px 0;
}

.transparencia-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}

.transparencia-hero {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.transparencia-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--color-primary);
    margin-bottom: 14px;
}

.transparencia-hero p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--color-text-soft);
    font-size: 1.05rem;
    line-height: 1.8;
}

.transparencia-grid {
    display: block;
    gap: 34px;
}

.contenedor-año {
    margin-bottom: 0;
}

.año-header {
    margin-bottom: 14px;
    padding-left: 4px;
}

.año-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 0;
    line-height: 1.1;
}

.box-archivos {
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid rgba(34, 44, 28, 0.06);
    box-shadow: 0 18px 40px rgba(18, 24, 14, 0.08);
    overflow: hidden;
    position: relative;
}

.box-archivos::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-primary) 0%, #7f9d42 100%);
}

.archivo-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 22px 26px 22px 34px;
    border-bottom: 1px solid rgba(34, 44, 28, 0.07);
    transition: background 0.25s ease;
}

.archivo-item:hover {
    background: rgba(122, 161, 39, 0.05);
}

.archivo-item:last-child {
    border-bottom: none;
}

.archivo-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.archivo-info strong {
    color: var(--color-text);
    font-size: 1rem;
    font-weight: 800;
}

.archivo-info small {
    color: var(--color-text-soft);
    font-size: 0.92rem;
    line-height: 1.5;
}

.btn-ver {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 112px;
    padding: 11px 18px;
    border-radius: 14px;
    background: var(--color-primary);
    border: none;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    transition: all 0.25s ease;
}

.btn-ver:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--color-primary);
}

.transparencia-notas {
    margin-top: 44px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(34, 44, 28, 0.06);
    box-shadow: 0 12px 28px rgba(18, 24, 14, 0.06);
    padding: 28px 26px;
}

.transparencia-notas h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 14px;
}

.transparencia-notas p {
    color: var(--color-text-soft);
    font-size: 0.97rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

.transparencia-notas p:last-child {
    margin-bottom: 0;
}

.edu-hero {
    padding: 30px 0 0;
}

.edu-hero__media {
    position: relative;
    width: min(92%, 1180px);
    min-height: 540px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow-medium);
}

.edu-hero__image {
    display: block;
    width: 100%;
    height: 540px;
    object-fit: cover;
    object-position: center;
}

.edu-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 107, 177, 0.66) 0%,
        rgba(55, 73, 136, 0.86) 58%,
        rgba(165, 199, 70, 0.24) 100%
    );
}

.edu-container {
    width: min(92%, 1180px);
    margin: 0 auto;
}

.edu-hero__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    max-width: 680px;
    display: grid;
    align-content: center;
    gap: 12px;
    padding: 120px 56px 88px;
}

.edu-tag {
    display: inline-block;
    margin-bottom: 2px;
    color: var(--color-primary) !important;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.edu-section-tag {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--color-primary) !important;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.edu-hero__content h1 {
    font-size: clamp(2.3rem, 4.8vw, 3.6rem);
    line-height: 1.05;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 4px;
}

.edu-hero__content p {
    max-width: 600px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 0;
}

.edu-topics {
    background: linear-gradient(180deg, #f4f8ee 0%, #eef4fb 42%, #edf3fb 100%);
    padding: 50px 0 80px;
}

.edu-section-header {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.edu-section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 16px;
    line-height: 1.15;
}

.edu-section-header p {
    font-family: var(--font-main);
    font-weight: 400;
    color: var(--color-text-soft);
    line-height: 1.8;
    font-size: 1rem;
}

.edu-topics__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
}

.edu-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px 24px;
    border: 1px solid rgba(165, 199, 70, 0.22);
    border-top: 4px solid var(--color-primary);
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.edu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(55, 73, 136, 0.10), 0 10px 24px rgba(165, 199, 70, 0.12);
}

.edu-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(165, 199, 70, 0.22) 0%, rgba(10, 107, 177, 0.12) 55%, rgba(55, 73, 136, 0.12) 100%);
    font-size: 1.8rem;
    margin-bottom: 18px;
    overflow: hidden;
    flex-shrink: 0;
}

.edu-card__icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
}

.edu-card h3 {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.edu-card p {
    font-family: var(--font-main);
    font-weight: 400;
    color: var(--color-text-soft);
    line-height: 1.75;
    font-size: 0.97rem;
}

.edu-tips {
    background: #ffffff;
    padding: 80px 0;
}

.edu-tips__wrapper {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 28px;
    align-items: stretch;
}

.edu-tips__content,
.edu-tips__highlight {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px 26px;
    border: 1px solid rgba(10, 107, 177, 0.12);
    box-shadow: var(--shadow-soft);
}

.edu-tips__content {
    border-top: 4px solid var(--color-primary-blue);
}

.edu-tips__highlight {
    border-top: 4px solid var(--color-primary);
    border: 1px solid rgba(165, 199, 70, 0.24);
    background: linear-gradient(180deg, #ffffff 0%, #f7fbef 100%);
}

.edu-tips__content h2 {
    font-size: clamp(1.9rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--color-primary-blue-dark);
    margin-bottom: 18px;
    line-height: 1.15;
}

.edu-tips__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.edu-tips__list li {
    font-family: var(--font-main);
    font-weight: 400;
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: var(--color-text-soft);
    line-height: 1.75;
}

.edu-tips__list li::before {
    content: "•";
    position: absolute;
    left: 8px;
    top: 0;
    color: var(--color-primary);
    font-weight: 800;
}

.edu-tips__highlight h3 {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 14px;
}

.edu-tips__highlight p {
    font-family: var(--font-main);
    font-weight: 400;
    color: var(--color-text-soft);
    line-height: 1.8;
}

.edu-tips__media {
    width: 100%;
    margin: 0 0 18px;
}

.edu-tips__image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    border: 1.5px solid rgba(165, 199, 70, 0.35);
    object-fit: cover;
    object-position: center;
    box-shadow: 0 10px 24px rgba(18, 24, 14, 0.08);
}

.edu-official {
    background: linear-gradient(180deg, #eef4fb 0%, #f4f8ee 100%);
    padding: 80px 0;
}

.edu-official__box {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    border-radius: 28px;
    padding: 38px 30px;
    border: 1px solid rgba(165, 199, 70, 0.24);
    border-top: 4px solid var(--color-primary);
    box-shadow: var(--shadow-medium);
}

.edu-official__box h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 16px;
    line-height: 1.15;
}

.edu-official__box p {
    max-width: 680px;
    margin: 0 auto 24px;
    font-family: var(--font-main);
    font-weight: 400;
    color: var(--color-text-soft);
    line-height: 1.8;
}

.edu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--color-primary-blue) 0%, var(--color-primary-blue-dark) 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.25s ease;
    box-shadow: 0 10px 20px rgba(10, 107, 177, 0.22);
}

.edu-btn:hover {
    background: linear-gradient(135deg, var(--color-primary-blue-dark) 0%, var(--color-primary-blue) 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(18, 24, 14, 0.15);
}
/* SANCIONES IMPUESTAS */
.sanciones-page {
    background: linear-gradient(180deg, #f8faf5 0%, var(--color-bg-soft) 100%);
    padding: calc(var(--section-space) + 70px) 0 var(--section-space);
}

.sanciones-container {
    width: min(92%, 1100px);
    margin: 0 auto;
}

.sanciones-card {
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-medium);
    padding: 30px 28px;
}

.sanciones-imagen-wrapper {
    background: #f7f9f5;
    border-radius: 22px;

    border: 1px solid rgba(34, 44, 28, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
}

.sanciones-img {
    width: min(100%, 820px);
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(18, 24, 14, 0.08);
}

@media (max-width: 992px) {
    .edu-tips__wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .transparencia-financiera {
        padding: 65px 0;
    }

    .transparencia-hero {
        margin-bottom: 34px;
    }

    .año-header h2 {
        font-size: 1.9rem;
    }

    .box-archivos {
        border-radius: 22px;
    }

    .archivo-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 18px 18px 24px;
    }

    .btn-ver {
        width: 100%;
        border-radius: 12px;
    }

    .transparencia-notas {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .edu-hero {
        padding: 24px 0 0;
    }

    .edu-hero__media {
        min-height: 420px;
        border-radius: 22px;
    }

    .edu-hero__image {
        height: 420px;
    }

    .edu-hero__content {
        padding: 90px 22px 58px;
    }
.edu-topics,
    .edu-tips,
    .edu-official {
        padding: 60px 0;
    }

    .edu-card,
    .edu-tips__content,
    .edu-tips__highlight,
    .edu-official__box {
    max-width: 860px;
    margin: 0 auto;

    background: #ffffff;
    border-radius: 28px;
    padding: 38px 30px;
    border: 1px solid rgba(165, 199, 70, 0.24);
    border-top: 4px solid var(--color-primary);
    box-shadow: var(--shadow-medium);
}

    .edu-official__box,
    .edu-tips__content,
    .edu-tips__highlight {
        padding: 24px 18px;
    }

    /* SANCIONES IMPUESTAS */
.sanciones-page {
        padding: 18px 0 var(--section-space-sm);
    }

    .sanciones-card {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .sanciones-imagen-wrapper {
        padding: 12px;
        border-radius: 18px;
    }

    .sanciones-img {
        width: 100%;
        border-radius: 12px;
    }
}































