/* ======================================================
   HERO PROPUESTA EDUCATIVA
======================================================= */

.hero-propuesta {
    position: relative;
    overflow: hidden;
    background: #005B27;
}

.hero-propuesta-bg {
    position: absolute;
    inset: 0;
}

.hero-propuesta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: zoomHero 12s linear forwards;
}

.hero-propuesta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 63, 27, .92),
            rgba(0, 63, 27, .75),
            rgba(0, 63, 27, .25));
}

@keyframes zoomHero {
    from {
        transform: scale(1.1)
    }

    to {
        transform: scale(1)
    }
}

.hero-propuesta-content {
    color: white;
    z-index: 5;
    position: relative;
}

.hero-label {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    background: rgba(244, 196, 0, .15);
    border: 1px solid rgba(244, 196, 0, .35);
    color: #F4C400;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 13px;
    margin-bottom: 25px;
    margin-top: 25px;
}

.hero-propuesta h1 {
    font-size: 64px;
    line-height: 1.05;
    font-weight: 700;
}

.hero-propuesta h1 span {
    display: block;
    color: #F4C400;
    font-family: 'Lora', serif;
}

.hero-propuesta p {
    margin: 28px 0 35px;
    max-width: 560px;
    line-height: 1.9;
    color: #ECFDF3;
    font-size: 17px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-green,
.btn-outline-white {
    padding: 16px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: .35s;
}

.btn-green {
    background: #F4C400;
    color: #005B27;
}

.btn-green:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, .7);
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-white:hover {
    background: white;
    color: #005B27;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 40px;
}

.hero-tags span {
    background: rgba(250, 234, 7, 0.08);
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 10px 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #55636A;
}

.hero-tags i {
    color: #F4C400;
}

/* Tarjeta */
.hero-card {
    background: rgba(255, 255, 255, .97);
    padding: 35px;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .18);
    backdrop-filter: blur(10px);
    animation: floatCard 4s ease-in-out infinite;
}

.hero-card-icon {
    width: 75px;
    height: 75px;
    border-radius: 18px;
    background: #EDF7EF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #006B2D;
    font-size: 34px;
    margin-bottom: 20px;
}

.hero-card span {
    color: #006B2D;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-card h4 {
    margin: 18px 0;
    color: #12391F;
    font-size: 28px;
}

.hero-card p {
    color: #55636A;
    margin-bottom: 28px;
    line-height: 1.8;
}

.hero-card-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    text-align: center;
}

.hero-card-footer strong {
    color: #006B2D;
    display: block;
}

.hero-card-footer small {
    color: #777;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

/* Curva */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 120px;
}

/* Responsive */
@media(max-width:992px) {

    .hero-propuesta h1 {
        font-size: 44px;
    }

    .hero-propuesta p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-tags {
        gap: 10px;
    }

    .hero-tags span {
        font-size: 12px;
    }

}

/* Animación entrada Hero */
.hero-propuesta-content {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s ease;
}

.hero-visible {
    opacity: 1;
    transform: translateY(0);
}



/* ===========================================================
   MODELO EDUCATIVO
============================================================ */

.modelo-educativo {

    padding: 140px 0;

    background:
        linear-gradient(180deg, #FFFFFF, #F8FBF8);

    position: relative;

    overflow: hidden;

}

/* ----------------------------------------------------------
   INFOGRAFÍA CIRCULAR
----------------------------------------------------------- */

.modelo-circle {

    width: 500px;
    height: 500px;

    margin: auto;

    position: relative;

    border-radius: 50%;

    border: 2px dashed rgba(0, 107, 45, .25);

    animation: rotateCircle 60s linear infinite;

}

@keyframes rotateCircle {

    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }

}

/* Centro */

.circle-center {

    position: absolute;

    width: 170px;
    height: 170px;

    border-radius: 50%;

    background: #006B2D;

    color: white;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    box-shadow: 0 25px 50px rgba(0, 107, 45, .3);

}

.circle-center img {

    width: 55px;
    margin-bottom: 10px;

}

.circle-center h4 {

    font-size: 16px;
    margin: 0;

}

.circle-center span {

    font-size: 12px;
    color: #F4C400;

}

/* ----------------------------------------------------------
   ITEMS
----------------------------------------------------------- */

.circle-item {

    position: absolute;

    width: 88px;
    height: 88px;

    border-radius: 50%;

    background: white;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    box-shadow: 0 15px 30px rgba(0, 0, 0, .08);

    color: #006B2D;

    transition: .35s;

}

.circle-item:hover {

    transform: scale(1.12);

    background: #006B2D;
    color: white;

}

.circle-item i {

    font-size: 26px;
    margin-bottom: 5px;

}

.circle-item small {

    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;

}

/* Posiciones */

.valores {
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.competencias {
    top: 80px;
    right: -10px;
}

.tecnologia {
    bottom: 90px;
    right: -10px;
}

.bienestar {
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.ciudadania {
    bottom: 90px;
    left: -10px;
}

.creatividad {
    top: 80px;
    left: -10px;
}

/* ----------------------------------------------------------
   TEXTO
----------------------------------------------------------- */

.modelo-mini-title {

    color: #006B2D;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;

}

.modelo-content h3 {

    font-size: 42px;
    color: #12391F;
    margin: 15px 0 25px;

}

.modelo-content p {

    color: #59636B;
    line-height: 1.9;

}

.modelo-list {

    list-style: none;
    padding: 0;
    margin-top: 30px;

}

.modelo-list li {

    display: flex;
    align-items: flex-start;
    gap: 12px;

    margin-bottom: 18px;

    font-size: 15px;
    color: #374151;

}

.modelo-list i {

    color: #16A34A;
    font-size: 18px;

}

/* ----------------------------------------------------------
   TARJETAS
----------------------------------------------------------- */

.modelo-card {

    background: white;

    padding: 35px 28px;

    border-radius: 22px;

    height: 100%;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .05);

    transition: .35s;

    border: 1px solid #EEF3EF;

}

.modelo-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 30px 60px rgba(0, 107, 45, .12);

}

.modelo-icon {

    width: 70px;
    height: 70px;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    font-size: 30px;

    margin-bottom: 25px;

}

.bg-green {
    background: #006B2D;
}

.bg-yellow {
    background: #F4C400;
    color: #14532D;
}

.bg-blue {
    background: #2563EB;
}

.bg-lightgreen {
    background: #16A34A;
}

.modelo-card h4 {

    color: #12391F;
    margin-bottom: 15px;

}

.modelo-card p {

    color: #59636B;
    line-height: 1.7;

}

.modelo-educativo {

    opacity: 0;
    transform: translateY(60px);

    transition: 1s ease;

}

.modelo-visible {

    opacity: 1;
    transform: translateY(0);

}

@media(max-width:992px) {

    .modelo-circle {

        width: 340px;
        height: 340px;

    }

    .circle-center {

        width: 130px;
        height: 130px;

    }

    .circle-item {

        width: 70px;
        height: 70px;

    }

    .circle-item i {

        font-size: 20px;

    }

    .modelo-content h3 {

        font-size: 32px;

    }

}

@media(max-width:576px) {

    .modelo-circle {

        width: 300px;
        height: 300px;

    }

    .circle-item {

        width: 62px;
        height: 62px;

    }

    .circle-item small {

        font-size: 8px;

    }

}

/* =========================================
   SECCIÓN: COMPETENCIAS Y VALORES
========================================= */

.competencias-valores {
    position: relative;
    background: var(--sp-white);
    overflow: hidden;
}


/* =========================================
   ENCABEZADO DE SECCIÓN
========================================= */

.section-heading {
    max-width: 850px;
    margin: 0 auto;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 12px;

    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;

    color: var(--sp-verde);
}

.section-title {
    margin-bottom: 18px;

    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;

    color: var(--sp-black);
}

.section-title span {
    color: var(--sp-verde);
}

.section-description {
    max-width: 720px;
    margin: 0 auto;

    font-size: 1.05rem;
    line-height: 1.8;

    color: #687080;
}


/* =========================================
   TARJETAS PRINCIPALES
========================================= */

.formacion-card {
    height: 100%;
    padding: 35px;

    background: var(--sp-white);

    border: 1px solid var(--sp-gray-border);
    border-radius: 22px;

    box-shadow: 0 12px 35px rgba(23, 32, 24, 0.06);

    transition:
        transform var(--sp-transition),
        box-shadow var(--sp-transition),
        border-color var(--sp-transition);
}

.formacion-card:hover {
    transform: translateY(-7px);

    border-color: rgba(0, 107, 45, 0.20);

    box-shadow: 0 20px 45px rgba(23, 32, 24, 0.10);
}


/* =========================================
   ENCABEZADO DE LAS TARJETAS
========================================= */

.formacion-card-header {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-bottom: 22px;
}

.formacion-card-header span {
    display: block;
    margin-bottom: 4px;

    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;

    color: var(--sp-verde);
}

.formacion-card-header h3 {
    margin: 0;

    font-size: 1.8rem;
    font-weight: 800;

    color: var(--sp-black);
}


/* =========================================
   ICONO PRINCIPAL
========================================= */

.formacion-icon {
    width: 58px;
    height: 58px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: var(--sp-gray);

    color: var(--sp-verde);

    font-size: 1.5rem;

    transition: var(--sp-transition);
}

.formacion-card:hover .formacion-icon {
    background: var(--sp-verde);
    color: var(--sp-white);

    transform: rotate(-5deg);
}


/* =========================================
   TEXTO INTRODUCTORIO
========================================= */

.formacion-intro {
    margin-bottom: 28px;

    font-size: 0.95rem;
    line-height: 1.75;

    color: #687080;
}


/* =========================================
   GRID DE COMPETENCIAS
========================================= */

.competencias-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 16px;
}


/* =========================================
   ITEM DE COMPETENCIA
========================================= */

.competencia-item {
    display: flex;
    gap: 13px;

    padding: 17px;

    background: var(--sp-gray);

    border: 1px solid transparent;
    border-radius: 14px;

    transition: var(--sp-transition);
}

.competencia-item:hover {
    background: var(--sp-white);

    border-color: var(--sp-gray-border);

    transform: translateX(4px);

    box-shadow: 0 8px 20px rgba(23, 32, 24, 0.06);
}

.competencia-item>i {
    flex-shrink: 0;

    margin-top: 3px;

    color: var(--sp-verde);

    font-size: 1.25rem;

    transition: var(--sp-transition);
}

.competencia-item:hover>i {
    color: var(--sp-amarillo);

    transform: scale(1.15);
}


/* =========================================
   TÍTULOS DE ITEMS
========================================= */

.competencia-item h4,
.valor-item h4 {
    margin-bottom: 5px;

    font-size: 0.98rem;
    font-weight: 700;

    color: var(--sp-black);
}

.competencia-item p,
.valor-item p {
    margin: 0;

    font-size: 0.82rem;
    line-height: 1.55;

    color: #737b89;
}


/* =========================================
   LISTA DE VALORES
========================================= */

.valores-list {
    display: flex;
    flex-direction: column;
}


/* =========================================
   ITEM DE VALOR
========================================= */

.valor-item {
    display: flex;
    gap: 18px;

    padding: 17px 0;

    border-bottom: 1px solid var(--sp-gray-border);

    transition: var(--sp-transition);
}

.valor-item:last-child {
    border-bottom: none;
}

.valor-item:hover {
    padding-left: 6px;
}


/* =========================================
   NUMERACIÓN DE VALORES
========================================= */

.valor-number {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--sp-verde);

    color: var(--sp-white);

    font-size: 0.72rem;
    font-weight: 700;

    transition: var(--sp-transition);
}

.valor-item:hover .valor-number {
    background: var(--sp-amarillo);

    color: var(--sp-black);

    transform: scale(1.08);
}


/* =========================================
   ANIMACIÓN REVEAL
========================================= */

.reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.active {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================
   ANIMACIÓN ESCALONADA
========================================= */

.competencia-item:nth-child(1) {
    transition-delay: 0.05s;
}

.competencia-item:nth-child(2) {
    transition-delay: 0.10s;
}

.competencia-item:nth-child(3) {
    transition-delay: 0.15s;
}

.competencia-item:nth-child(4) {
    transition-delay: 0.20s;
}


/* =========================================
   RESPONSIVE - TABLET
========================================= */

@media (max-width: 991.98px) {

    .formacion-card {
        padding: 30px;
    }

    .section-title {
        font-size: 2.4rem;
    }

}


/* =========================================
   RESPONSIVE - MÓVIL
========================================= */

@media (max-width: 767.98px) {

    .competencias-valores {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .section-heading {
        padding: 0 10px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .formacion-card {
        padding: 25px 20px;

        border-radius: 18px;
    }

    .formacion-card-header {
        gap: 14px;
    }

    .formacion-icon {
        width: 52px;
        height: 52px;

        border-radius: 14px;
    }

    .formacion-card-header h3 {
        font-size: 1.5rem;
    }

    .competencias-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .competencia-item {
        padding: 15px;
    }

    .valor-item {
        gap: 14px;
    }

}


/* =========================================
   REDUCIR MOVIMIENTO
   ACCESIBILIDAD
========================================= */

@media (prefers-reduced-motion: reduce) {

    .formacion-card,
    .competencia-item,
    .valor-item,
    .formacion-icon,
    .valor-number,
    .reveal {
        transition: none;
        transform: none;
    }

    .reveal {
        opacity: 1;
    }

}


/* ========================================= SECCIÓN: METODOLOGÍAS ACTIVAS ========================================= */
.metodologias-activas {
    position: relative;
    background: var(--sp-gray);
    overflow: hidden;
}

/* ========================================= BLOQUE DESTACADO ========================================= */
.metodologia-feature {
    position: relative;
    height: 100%;
    min-height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 42px;
    border-radius: 26px;
    background: linear-gradient(145deg, var(--sp-verde), var(--sp-verde-dark));
    color: var(--sp-white);
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 77, 37, 0.18);
}

/* Decoración */
.metodologia-feature::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -90px;
    top: -90px;
    border-radius: 50%;
    background: rgba(244, 196, 0, 0.14);
}

.metodologia-feature::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    left: -70px;
    bottom: -70px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ========================================= ICONO PRINCIPAL ========================================= */
.metodologia-feature-icon {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: var(--sp-amarillo);
    color: var(--sp-black);
    font-size: 1.6rem;
    transition: var(--sp-transition);
}

.metodologia-feature:hover .metodologia-feature-icon {
    transform: rotate(-8deg) scale(1.08);
}

/* ========================================= CONTENIDO ========================================= */
.metodologia-feature-content {
    position: relative;
    z-index: 2;
    max-width: 540px;
}

.metodologia-label {
    display: block;
    margin-bottom: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: var(--sp-amarillo-light);
}

.metodologia-feature h3 {
    margin-bottom: 18px;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--sp-white);
}

.metodologia-feature p {
    margin-bottom: 25px;
    font-size: 0.98rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
}

/* ========================================= HIGHLIGHT ========================================= */
.metodologia-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.metodologia-highlight i {
    color: var(--sp-amarillo);
}

.metodologia-highlight span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sp-white);
}

/* ========================================= TARJETAS DE METODOLOGÍA ========================================= */
.metodologia-card {
    position: relative;
    height: 100%;
    min-height: 208px;
    padding: 27px;
    background: var(--sp-white);
    border: 1px solid var(--sp-gray-border);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(23, 32, 24, 0.05);
    transition: transform var(--sp-transition), box-shadow var(--sp-transition), border-color var(--sp-transition);
}

.metodologia-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 107, 45, 0.20);
    box-shadow: 0 18px 35px rgba(23, 32, 24, 0.09);
}

/* ========================================= ICONO DE TARJETA ========================================= */
.metodologia-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 13px;
    background: var(--sp-gray);
    color: var(--sp-verde);
    font-size: 1.25rem;
    transition: var(--sp-transition);
}

.metodologia-card:hover .metodologia-card-icon {
    background: var(--sp-verde);
    color: var(--sp-white);
    transform: translateY(-3px);
}

/* ========================================= NÚMERO ========================================= */
.metodologia-card>span {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--sp-amarillo);
}

/* ========================================= TEXTO ========================================= */
.metodologia-card h4 {
    max-width: 90%;
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 750;
    line-height: 1.35;
    color: var(--sp-black);
}

.metodologia-card p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.6;
    color: #737b89;
}

/* ========================================= RESPONSIVE ========================================= */
@media (max-width: 991.98px) {
    .metodologia-feature {
        min-height: 400px;
        padding: 35px;
    }
}

@media (max-width: 767.98px) {
    .metodologias-activas {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .metodologia-feature {
        min-height: auto;
        padding: 30px 25px;
        border-radius: 20px;
    }

    .metodologia-feature h3 {
        font-size: 1.8rem;
    }

    .metodologia-card {
        min-height: auto;
        padding: 23px;
    }
}

/* ========================================= ACCESIBILIDAD ========================================= */
@media (prefers-reduced-motion: reduce) {

    .metodologia-feature-icon,
    .metodologia-card,
    .metodologia-card-icon {
        transition: none;
        transform: none;
    }
}

/* ========================================= SECCIÓN: TECNOLOGÍA E INNOVACIÓN ========================================= */
.tecnologia-innovacion {
    position: relative;
    background: var(--sp-white);
    overflow: hidden;
}

/* ========================================= CONTENEDOR PRINCIPAL ========================================= */
.tecnologia-wrapper {
    position: relative;
    padding: 65px 70px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--sp-verde), var(--sp-verde-dark));
    overflow: hidden;
    box-shadow: 0 25px 55px rgba(0, 77, 37, 0.16);
}

/* Decoración principal */
.tecnologia-wrapper::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    top: -220px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.tecnologia-wrapper::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    left: -160px;
    bottom: -200px;
    border-radius: 50%;
    background: rgba(244, 196, 0, 0.08);
}

/* ========================================= CONTENIDO ========================================= */
.tecnologia-wrapper .section-kicker {
    color: var(--sp-amarillo-light);
}

.tecnologia-title {
    max-width: 650px;
    margin-bottom: 22px;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--sp-white);
}

.tecnologia-title span {
    color: var(--sp-amarillo);
}

.tecnologia-description {
    max-width: 620px;
    margin-bottom: 32px;
    font-size: 0.98rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
}

/* ========================================= LISTA ========================================= */
.tecnologia-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tecnologia-list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.tecnologia-check {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--sp-amarillo);
    color: var(--sp-black);
    font-size: 0.9rem;
}

.tecnologia-list-item h4 {
    margin-bottom: 4px;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--sp-white);
}

.tecnologia-list-item p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.70);
}

/* ========================================= ÁREA VISUAL ========================================= */
.tecnologia-visual {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================= CÍRCULOS DECORATIVOS ========================================= */
.tech-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    animation: techPulse 5s ease-in-out infinite;
}

.tech-circle-one {
    width: 360px;
    height: 360px;
}

.tech-circle-two {
    width: 260px;
    height: 260px;
    border-color: rgba(244, 196, 0, 0.20);
    animation-delay: 1s;
}

/* ========================================= ELEMENTO CENTRAL ========================================= */
.tech-center {
    position: relative;
    z-index: 3;
    width: 190px;
    height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    text-align: center;
}

.tech-center-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border-radius: 17px;
    background: var(--sp-amarillo);
    color: var(--sp-black);
    font-size: 1.5rem;
}

.tech-center span {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.70);
}

.tech-center strong {
    margin-top: 3px;
    font-size: 1rem;
    color: var(--sp-white);
}

/* ========================================= ELEMENTOS FLOTANTES ========================================= */
.tech-floating {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.10);
    animation: techFloat 4s ease-in-out infinite;
}

.tech-floating i {
    color: var(--sp-amarillo);
}

.tech-floating span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--sp-white);
}

.tech-floating-one {
    top: 55px;
    left: 20px;
}

.tech-floating-two {
    top: 150px;
    right: 5px;
    animation-delay: 1s;
}

.tech-floating-three {
    bottom: 65px;
    left: 35px;
    animation-delay: 2s;
}

/* ========================================= ANIMACIONES ========================================= */
@keyframes techFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes techPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.65;
    }

    50% {
        transform: scale(1.04);
        opacity: 1;
    }
}

/* ========================================= RESPONSIVE TABLET ========================================= */
@media (max-width: 991.98px) {
    .tecnologia-wrapper {
        padding: 50px 40px;
    }

    .tecnologia-visual {
        min-height: 400px;
    }
}

/* ========================================= RESPONSIVE MÓVIL ========================================= */
@media (max-width: 767.98px) {
    .tecnologia-wrapper {
        padding: 45px 25px;
        border-radius: 22px;
    }

    .tecnologia-title {
        font-size: 2rem;
    }

    .tecnologia-visual {
        min-height: 360px;
    }

    .tech-circle-one {
        width: 290px;
        height: 290px;
    }

    .tech-circle-two {
        width: 210px;
        height: 210px;
    }

    .tech-center {
        width: 155px;
        height: 155px;
    }

    .tech-center-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .tech-floating-one {
        top: 20px;
        left: 0;
    }

    .tech-floating-two {
        top: 110px;
        right: -5px;
    }

    .tech-floating-three {
        bottom: 25px;
        left: 5px;
    }
}

/* ========================================= ACCESIBILIDAD ========================================= */
@media (prefers-reduced-motion: reduce) {

    .tech-circle,
    .tech-floating {
        animation: none;
    }
}


/* ========================================= SECCIÓN: PERFIL DEL ESTUDIANTE ========================================= */
.perfil-estudiante {
    position: relative;
    background: var(--sp-white);
    overflow: hidden;
}

/* ========================================= CONTENEDOR PRINCIPAL ========================================= */
.perfil-wrapper {
    position: relative;
    max-width: 1100px;
    min-height: 650px;
    margin: 0 auto;
}

/* ========================================= LÍNEAS DECORATIVAS ========================================= */
.perfil-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 520px;
    height: 520px;
    transform: translate(-50%, -50%);
    border: 1px dashed var(--sp-gray-border);
    border-radius: 50%;
}

.perfil-wrapper::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 360px;
    height: 360px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 107, 45, 0.08);
    border-radius: 50%;
}

/* ========================================= CENTRO ========================================= */
.perfil-center {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    width: 190px;
    height: 190px;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--sp-verde), var(--sp-verde-dark));
    color: var(--sp-white);
    box-shadow: 0 20px 45px rgba(0, 77, 37, 0.20);
}

.perfil-center-ring {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.20);
}

.perfil-center-icon {
    color: var(--sp-amarillo);
    font-size: 1.7rem;
}

.perfil-center>span {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.70);
}

.perfil-center>strong {
    font-size: 1.1rem;
    color: var(--sp-white);
}

/* ========================================= ITEMS ========================================= */
.perfil-item {
    position: absolute;
    z-index: 4;
    width: 290px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: var(--sp-white);
    border: 1px solid var(--sp-gray-border);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(23, 32, 24, 0.06);
    transition: transform var(--sp-transition), box-shadow var(--sp-transition), border-color var(--sp-transition);
}

.perfil-item:hover {
    border-color: rgba(0, 107, 45, 0.20);
    box-shadow: 0 16px 35px rgba(23, 32, 24, 0.10);
}

/* ========================================= POSICIONES ========================================= */
.perfil-item-1 {
    top: 20px;
    left: 30px;
}

.perfil-item-2 {
    top: 220px;
    left: 0;
}

.perfil-item-3 {
    bottom: 20px;
    left: 30px;
}

.perfil-item-4 {
    top: 20px;
    right: 30px;
}

.perfil-item-5 {
    top: 220px;
    right: 0;
}

.perfil-item-6 {
    bottom: 20px;
    right: 30px;
}

/* ========================================= ICONOS ========================================= */
.perfil-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: var(--sp-gray);
    color: var(--sp-verde);
    font-size: 1.15rem;
    transition: var(--sp-transition);
}

.perfil-item:hover .perfil-icon {
    background: var(--sp-verde);
    color: var(--sp-white);
    transform: scale(1.08);
}

/* ========================================= CONTENIDO ========================================= */
.perfil-content>span {
    display: block;
    margin-bottom: 3px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--sp-amarillo);
}

.perfil-content h3 {
    margin-bottom: 5px;
    font-size: 1rem;
    font-weight: 750;
    color: var(--sp-black);
}

.perfil-content p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.55;
    color: #737b89;
}

/* ========================================= ANIMACIÓN REVEAL ========================================= */
#perfil-estudiante .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

#perfil-estudiante .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================= DELAY DE ANIMACIONES ========================================= */
.perfil-item-1 {
    transition-delay: 0.05s;
}

.perfil-item-2 {
    transition-delay: 0.10s;
}

.perfil-item-3 {
    transition-delay: 0.15s;
}

.perfil-item-4 {
    transition-delay: 0.20s;
}

.perfil-item-5 {
    transition-delay: 0.25s;
}

.perfil-item-6 {
    transition-delay: 0.30s;
}

/* ========================================= TABLET ========================================= */
@media (max-width: 991.98px) {
    .perfil-wrapper {
        min-height: 720px;
    }

    .perfil-item {
        width: 260px;
    }

    .perfil-item-1 {
        left: 0;
    }

    .perfil-item-3 {
        left: 0;
    }

    .perfil-item-4 {
        right: 0;
    }

    .perfil-item-6 {
        right: 0;
    }
}

/* ========================================= MÓVIL ========================================= */
@media (max-width: 767.98px) {
    .perfil-estudiante {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .perfil-wrapper {
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .perfil-wrapper::before,
    .perfil-wrapper::after {
        display: none;
    }

    .perfil-center {
        position: relative;
        top: auto;
        left: auto;
        width: 150px;
        height: 150px;
        margin: 0 auto 20px;
        transform: none;
    }

    .perfil-center-ring {
        width: 54px;
        height: 54px;
    }

    .perfil-center-icon {
        font-size: 1.35rem;
    }

    .perfil-item {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        padding: 18px;
    }

    .perfil-item:hover {
        transform: translateY(-3px);
    }
}


/* ========================================= SECCIÓN: FORMACIÓN EN VALORES Y PASTORAL ========================================= */
.formacion-pastoral {
    position: relative;
    background: var(--sp-gray);
    overflow: hidden;
}

/* ========================================= CONTENEDOR PRINCIPAL ========================================= */
.pastoral-wrapper {
    position: relative;
    padding: 70px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--sp-verde-dark), var(--sp-verde));
    overflow: hidden;
    box-shadow: 0 25px 55px rgba(0, 77, 37, 0.16);
}

/* ========================================= DECORACIÓN ========================================= */
.pastoral-wrapper::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    right: -220px;
    top: -220px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.pastoral-wrapper::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    left: -150px;
    bottom: -180px;
    border-radius: 50%;
    background: rgba(244, 196, 0, 0.08);
}

/* ========================================= CONTENIDO ========================================= */
.pastoral-kicker {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--sp-amarillo-light);
}

.pastoral-title {
    max-width: 650px;
    margin-bottom: 22px;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--sp-white);
}

.pastoral-title span {
    color: var(--sp-amarillo);
}

.pastoral-description {
    max-width: 650px;
    margin-bottom: 30px;
    font-size: 0.98rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
}

/* ========================================= FRASE INSTITUCIONAL ========================================= */
.pastoral-quote {
    position: relative;
    display: flex;
    gap: 15px;
    max-width: 600px;
    padding: 20px 22px;
    border-left: 3px solid var(--sp-amarillo);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 0 14px 14px 0;
}

.pastoral-quote>i {
    flex-shrink: 0;
    color: var(--sp-amarillo);
    font-size: 1.5rem;
}

.pastoral-quote p {
    margin-bottom: 5px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sp-white);
}

.pastoral-quote span {
    font-size: 0.78rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.65);
}

/* ========================================= PILARES ========================================= */
.pastoral-pillars {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ========================================= PILAR ========================================= */
.pastoral-pillar {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(7px);
    transition: transform var(--sp-transition), background var(--sp-transition), border-color var(--sp-transition);
}

.pastoral-pillar:hover {
    transform: translateX(6px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(244, 196, 0, 0.30);
}

/* ========================================= ICONO ========================================= */
.pastoral-pillar-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: var(--sp-amarillo);
    color: var(--sp-black);
    font-size: 1.05rem;
    transition: var(--sp-transition);
}

.pastoral-pillar:hover .pastoral-pillar-icon {
    transform: scale(1.08) rotate(-5deg);
}

/* ========================================= TEXTO ========================================= */
.pastoral-pillar span {
    display: block;
    margin-bottom: 2px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--sp-amarillo-light);
}

.pastoral-pillar h3 {
    margin-bottom: 4px;
    font-size: 0.98rem;
    font-weight: 750;
    color: var(--sp-white);
}

.pastoral-pillar p {
    margin: 0;
    font-size: 0.77rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.65);
}

/* ========================================= ANIMACIÓN ========================================= */
#formacion-pastoral .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

#formacion-pastoral .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================= RESPONSIVE TABLET ========================================= */
@media (max-width: 991.98px) {
    .pastoral-wrapper {
        padding: 50px 40px;
    }
}

/* ========================================= RESPONSIVE MÓVIL ========================================= */
@media (max-width: 767.98px) {
    .formacion-pastoral {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .pastoral-wrapper {
        padding: 40px 24px;
        border-radius: 22px;
    }

    .pastoral-title {
        font-size: 2rem;
    }

    .pastoral-description {
        font-size: 0.92rem;
    }

    .pastoral-quote {
        padding: 17px;
    }

    .pastoral-pillar {
        padding: 16px;
    }
}

/* ========================================= ACCESIBILIDAD ========================================= */
@media (prefers-reduced-motion: reduce) {

    .pastoral-pillar,
    .pastoral-pillar-icon,
    .reveal {
        transition: none;
        transform: none;
    }
}


/* ========================================= EDUC ACIÓN INTEGRAL ========================================= */
.educacion-integral {
    position: relative;
    background: var(--sp-white);
    overflow: hidden;
}

/* ========================================= GALERÍA ========================================= */
.educacion-gallery {
    position: relative;
    min-height: 540px;
}

/* ========================================= IMAGEN PRINCIPAL ========================================= */
.educacion-image-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 82%;
    height: 460px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(23, 32, 24, 0.12);
}

.educacion-image-main img,
.educacion-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.educacion-image-main:hover img,
.educacion-image-secondary:hover img {
    transform: scale(1.05);
}

/* ========================================= CAPTION ========================================= */
.educacion-image-caption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 17px 20px;
    border-radius: 14px;
    background: rgba(0, 77, 37, 0.90);
    backdrop-filter: blur(7px);
}

.educacion-image-caption span {
    display: block;
    margin-bottom: 3px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--sp-amarillo);
}

.educacion-image-caption strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--sp-white);
}

/* ========================================= IMAGEN SECUNDARIA ========================================= */
.educacion-image-secondary {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 43%;
    height: 230px;
    padding: 8px;
    background: var(--sp-white);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(23, 32, 24, 0.12);
    overflow: hidden;
}

.educacion-image-secondary img {
    border-radius: 14px;
}

/* ========================================= DECORACIÓN ========================================= */
.educacion-gallery-decoration {
    position: absolute;
    right: 12%;
    top: 25px;
    display: grid;
    grid-template-columns: repeat(4, 7px);
    gap: 7px;
    z-index: 4;
}

.educacion-gallery-decoration span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--sp-amarillo);
}

/* ========================================= CONTENIDO ========================================= */
.educacion-content {
    padding-left: 25px;
}

.educacion-label {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: var(--sp-verde);
}

.educacion-content h3 {
    max-width: 560px;
    margin-bottom: 18px;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--sp-black);
}

.educacion-content>p {
    max-width: 570px;
    margin-bottom: 28px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #687080;
}

/* ========================================= PILARES ========================================= */
.educacion-pillars {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.educacion-pillar {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 17px;
    border-bottom: 1px solid var(--sp-gray-border);
}

.educacion-pillar:last-child {
    border-bottom: none;
}

/* ========================================= ICONOS ========================================= */
.educacion-pillar-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: var(--sp-gray);
    color: var(--sp-verde);
    font-size: 1.05rem;
    transition: var(--sp-transition);
}

.educacion-pillar:hover .educacion-pillar-icon {
    background: var(--sp-verde);
    color: var(--sp-white);
    transform: translateY(-3px);
}

/* ========================================= TEXTO PILARES ========================================= */
.educacion-pillar h4 {
    margin-bottom: 4px;
    font-size: 0.98rem;
    font-weight: 750;
    color: var(--sp-black);
}

.educacion-pillar p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.55;
    color: #737b89;
}

/* ========================================= FRASE FINAL ========================================= */
.educacion-bottom {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    color: var(--sp-verde);
    font-size: 0.85rem;
    font-weight: 700;
}

.educacion-bottom i {
    color: var(--sp-amarillo);
    font-size: 1.1rem;
    transition: var(--sp-transition);
}

.educacion-bottom:hover i {
    transform: translateX(5px);
}

/* ========================================= REVEAL ========================================= */
#educacion-integral .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

#educacion-integral .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================= TABLET ========================================= */
@media (max-width: 991.98px) {
    .educacion-gallery {
        min-height: 500px;
    }

    .educacion-image-main {
        width: 80%;
        height: 430px;
    }

    .educacion-content {
        padding-left: 0;
    }
}

/* ========================================= MÓVIL ========================================= */
@media (max-width: 767.98px) {
    .educacion-integral {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .educacion-gallery {
        min-height: 420px;
        margin-bottom: 20px;
    }

    .educacion-image-main {
        width: 88%;
        height: 350px;
        border-radius: 20px;
    }

    .educacion-image-secondary {
        width: 48%;
        height: 165px;
        border-radius: 16px;
    }

    .educacion-image-caption {
        left: 15px;
        right: 15px;
        bottom: 15px;
        padding: 13px 15px;
    }

    .educacion-image-caption strong {
        font-size: 0.82rem;
    }

    .educacion-gallery-decoration {
        right: 7%;
        top: 15px;
    }

    .educacion-content h3 {
        font-size: 1.8rem;
    }
}

/* ========================================= ACCESIBILIDAD ========================================= */
@media (prefers-reduced-motion: reduce) {

    .educacion-image-main img,
    .educacion-image-secondary img,
    .educacion-pillar-icon,
    .educacion-bottom i,
    .reveal {
        transition: none;
        transform: none;
    }
}

/* =========================================
   SECCIÓN: COMUNIDAD EDUCATIVA
========================================= */

.comunidad-educativa {
    position: relative;

    background: var(--sp-gray);

    overflow: hidden;
}


/* =========================================
   GALERÍA
========================================= */

.comunidad-gallery {
    position: relative;

    height: 590px;
}


/* =========================================
   FOTOS
========================================= */

.comunidad-photo {
    position: absolute;

    overflow: hidden;

    border-radius: 22px;

    background: var(--sp-gray-border);

    box-shadow:
        0 18px 40px rgba(23, 32, 24, 0.10);
}

.comunidad-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.8s ease;
}

.comunidad-photo:hover img {
    transform: scale(1.06);
}


/* =========================================
   FOTO PRINCIPAL
========================================= */

.comunidad-photo-main {

    top: 0;
    left: 0;

    width: 64%;
    height: 430px;

}


/* =========================================
   FOTO 2
========================================= */

.comunidad-photo-two {

    top: 0;
    right: 0;

    width: 31%;
    height: 245px;

}


/* =========================================
   FOTO 3
========================================= */

.comunidad-photo-three {

    left: 0;
    bottom: 0;

    width: 38%;
    height: 245px;

}


/* =========================================
   FOTO 4
========================================= */

.comunidad-photo-four {

    right: 0;
    bottom: 0;

    width: 54%;
    height: 320px;

}


/* =========================================
   OVERLAY
========================================= */

.comunidad-photo-overlay {

    position: absolute;

    left: 20px;
    right: 20px;
    bottom: 20px;

    padding: 18px;

    border-radius: 15px;

    background:
        rgba(0, 77, 37, 0.88);

    backdrop-filter: blur(8px);
}

.comunidad-photo-overlay span {

    display: block;

    margin-bottom: 4px;

    font-size: 0.65rem;

    font-weight: 700;

    letter-spacing: 2px;

    color: var(--sp-amarillo);

}

.comunidad-photo-overlay strong {

    font-size: 0.95rem;

    color: var(--sp-white);

}


/* =========================================
   DECORACIÓN
========================================= */

.comunidad-decoration {

    position: absolute;

    z-index: 5;

    top: -12px;
    right: 34%;

    width: 55px;
    height: 55px;

    border-radius: 50%;

    background: var(--sp-amarillo);

    box-shadow:
        0 10px 25px rgba(244, 196, 0, 0.25);

}


/* =========================================
   CONTENIDO
========================================= */

.comunidad-content {

    padding-left: 10px;

}

.comunidad-label {

    display: inline-block;

    margin-bottom: 12px;

    font-size: 0.72rem;

    font-weight: 700;

    letter-spacing: 1.8px;

    color: var(--sp-verde);

}

.comunidad-content h3 {

    max-width: 500px;

    margin-bottom: 18px;

    font-size: clamp(1.9rem, 3vw, 2.5rem);

    font-weight: 800;

    line-height: 1.2;

    color: var(--sp-black);

}

.comunidad-content > p {

    max-width: 500px;

    margin-bottom: 28px;

    font-size: 0.94rem;

    line-height: 1.8;

    color: #687080;

}


/* =========================================
   FEATURES
========================================= */

.comunidad-feature {

    display: flex;

    gap: 15px;

    padding: 17px 0;

    border-bottom:
        1px solid var(--sp-gray-border);

}

.comunidad-feature:last-of-type {

    border-bottom: none;

}


/* =========================================
   NÚMEROS
========================================= */

.comunidad-feature-number {

    flex-shrink: 0;

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: var(--sp-white);

    color: var(--sp-verde);

    font-size: 0.7rem;

    font-weight: 800;

    box-shadow:
        0 5px 15px rgba(23, 32, 24, 0.05);

    transition: var(--sp-transition);

}

.comunidad-feature:hover
.comunidad-feature-number {

    background: var(--sp-verde);

    color: var(--sp-white);

    transform: translateY(-2px);

}


/* =========================================
   TEXTO
========================================= */

.comunidad-feature h4 {

    margin-bottom: 4px;

    font-size: 0.97rem;

    font-weight: 750;

    color: var(--sp-black);

}

.comunidad-feature p {

    margin: 0;

    font-size: 0.77rem;

    line-height: 1.55;

    color: #737b89;

}


/* =========================================
   LINK
========================================= */

.comunidad-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 20px;

    color: var(--sp-verde);

    font-size: 0.85rem;

    font-weight: 750;

    text-decoration: none;

    transition: var(--sp-transition);

}

.comunidad-link i {

    color: var(--sp-amarillo);

    transition: var(--sp-transition);

}

.comunidad-link:hover {

    color: var(--sp-verde-dark);

}

.comunidad-link:hover i {

    transform: translateX(5px);

}


/* =========================================
   REVEAL
========================================= */

#comunidad-educativa .reveal {

    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;

}

#comunidad-educativa .reveal.active {

    opacity: 1;

    transform: translateY(0);

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    .comunidad-gallery {

        height: 520px;

    }

    .comunidad-photo-main {

        height: 380px;

    }

    .comunidad-photo-two {

        height: 210px;

    }

    .comunidad-photo-three {

        height: 210px;

    }

    .comunidad-photo-four {

        height: 280px;

    }

    .comunidad-content {

        padding-left: 0;

    }

}


/* =========================================
   MÓVIL
========================================= */

@media (max-width: 767.98px) {

    .comunidad-educativa {

        padding-top: 60px;

        padding-bottom: 60px;

    }

    .comunidad-gallery {

        height: 500px;

        margin-bottom: 20px;

    }

    .comunidad-photo-main {

        width: 68%;

        height: 330px;

    }

    .comunidad-photo-two {

        width: 29%;

        height: 190px;

    }

    .comunidad-photo-three {

        width: 42%;

        height: 155px;

    }

    .comunidad-photo-four {

        width: 53%;

        height: 210px;

    }

    .comunidad-photo-overlay {

        left: 12px;

        right: 12px;

        bottom: 12px;

        padding: 13px;

    }

    .comunidad-photo-overlay strong {

        font-size: 0.78rem;

    }

    .comunidad-decoration {

        width: 38px;

        height: 38px;

        right: 30%;

    }

}


/* =========================================
   ACCESIBILIDAD
========================================= */

@media (prefers-reduced-motion: reduce) {

    .comunidad-photo img,
    .comunidad-feature-number,
    .comunidad-link i,
    .reveal {

        transition: none;

        transform: none;

    }

}

/* =========================================
   SECCIÓN: EXPERIENCIAS DE APRENDIZAJE
========================================= */

.experiencias-aprendizaje {
    position: relative;

    background: var(--sp-white);

    overflow: hidden;
}


/* =========================================
   GALERÍA
========================================= */

.experiencias-grid {

    display: grid;

    grid-template-columns: repeat(12, 1fr);

    grid-auto-rows: 190px;

    gap: 18px;

}


/* =========================================
   CARD BASE
========================================= */

.experiencia-card {

    position: relative;

    overflow: hidden;

    border-radius: 20px;

    background: var(--sp-gray);

    box-shadow:
        0 12px 30px rgba(23, 32, 24, 0.08);

    cursor: pointer;

}


/* =========================================
   IMAGEN
========================================= */

.experiencia-card img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(.2,.7,.2,1);

}

.experiencia-card:hover img {

    transform: scale(1.07);

}


/* =========================================
   OVERLAY
========================================= */

.experiencia-card::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 30, 14, 0.88),
            rgba(0, 30, 14, 0.08) 65%
        );

    z-index: 1;

    transition:
        background 0.4s ease;

}

.experiencia-card:hover::after {

    background:
        linear-gradient(
            to top,
            rgba(0, 77, 37, 0.92),
            rgba(0, 30, 14, 0.10) 70%
        );

}


/* =========================================
   CONTENIDO
========================================= */

.experiencia-overlay {

    position: absolute;

    z-index: 2;

    left: 0;
    right: 0;
    bottom: 0;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 15px;

    padding: 25px;

    color: var(--sp-white);

}

.experiencia-overlay span {

    display: block;

    margin-bottom: 7px;

    font-size: 0.65rem;

    font-weight: 700;

    letter-spacing: 2px;

    color: var(--sp-amarillo);

}

.experiencia-overlay h3 {

    max-width: 420px;

    margin: 0;

    font-size: 1.2rem;

    font-weight: 750;

    line-height: 1.25;

    color: var(--sp-white);

}


/* =========================================
   FLECHA
========================================= */

.experiencia-arrow {

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.14);

    border:
        1px solid rgba(255, 255, 255, 0.20);

    backdrop-filter: blur(5px);

    transition:
        transform var(--sp-transition),
        background var(--sp-transition);

}

.experiencia-card:hover .experiencia-arrow {

    transform: translate(3px, -3px);

    background: var(--sp-amarillo);

    color: var(--sp-black);

}


/* =========================================
   DISTRIBUCIÓN
========================================= */


/* Ciencia */

.experiencia-card-large {

    grid-column: span 7;

    grid-row: span 2;

}


/* Deporte */

.experiencia-card-small:nth-child(2) {

    grid-column: span 5;

    grid-row: span 1;

}


/* Arte */

.experiencia-card-small:nth-child(3) {

    grid-column: span 5;

    grid-row: span 1;

}


/* Tecnología */

.experiencia-card-wide {

    grid-column: span 5;

    grid-row: span 2;

}


/* Comunidad */

.experiencia-card-full {

    grid-column: span 7;

    grid-row: span 2;

}


/* =========================================
   FOOTER DE GALERÍA
========================================= */

.experiencias-footer {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    margin-top: 35px;

}

.experiencias-footer-line {

    width: 70px;

    height: 1px;

    background: var(--sp-gray-border);

}

.experiencias-footer p {

    margin: 0;

    text-align: center;

    font-size: 0.82rem;

    font-weight: 600;

    color: #737b89;

}


/* =========================================
   REVEAL
========================================= */

#experiencias .reveal {

    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.75s ease,
        transform 0.75s ease;

}

#experiencias .reveal.active {

    opacity: 1;

    transform: translateY(0);

}


/* =========================================
   DELAYS
========================================= */

#experiencias .experiencia-card:nth-child(1) {
    transition-delay: 0.05s;
}

#experiencias .experiencia-card:nth-child(2) {
    transition-delay: 0.10s;
}

#experiencias .experiencia-card:nth-child(3) {
    transition-delay: 0.15s;
}

#experiencias .experiencia-card:nth-child(4) {
    transition-delay: 0.20s;
}

#experiencias .experiencia-card:nth-child(5) {
    transition-delay: 0.25s;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    .experiencias-grid {

        grid-auto-rows: 170px;

        gap: 15px;

    }

    .experiencia-overlay {

        padding: 20px;

    }

    .experiencia-overlay h3 {

        font-size: 1rem;

    }

}


/* =========================================
   MÓVIL
========================================= */

@media (max-width: 767.98px) {

    .experiencias-aprendizaje {

        padding-top: 60px;

        padding-bottom: 60px;

    }

    .experiencias-grid {

        display: grid;

        grid-template-columns: 1fr 1fr;

        grid-auto-rows: 180px;

        gap: 12px;

    }

    .experiencia-card-large {

        grid-column: span 2;

        grid-row: span 2;

    }

    .experiencia-card-small:nth-child(2),
    .experiencia-card-small:nth-child(3) {

        grid-column: span 1;

        grid-row: span 1;

    }

    .experiencia-card-wide {

        grid-column: span 2;

        grid-row: span 2;

    }

    .experiencia-card-full {

        grid-column: span 2;

        grid-row: span 2;

    }

    .experiencia-overlay {

        padding: 15px;

    }

    .experiencia-overlay span {

        font-size: 0.58rem;

        letter-spacing: 1.5px;

    }

    .experiencia-overlay h3 {

        font-size: 0.9rem;

    }

    .experiencia-arrow {

        width: 34px;
        height: 34px;

        font-size: 0.75rem;

    }

    .experiencias-footer {

        gap: 10px;

    }

    .experiencias-footer-line {

        width: 30px;

    }

}


/* =========================================
   ACCESIBILIDAD
========================================= */

@media (prefers-reduced-motion: reduce) {

    .experiencia-card img,
    .experiencia-card::after,
    .experiencia-arrow,
    .reveal {

        transition: none;

        transform: none;

    }

}


/* =========================================
   SECCIÓN: ¿POR QUÉ ELEGIRNOS?
========================================= */

.porque-elegirnos {

    position: relative;

    background: var(--sp-gray);

    overflow: hidden;

}


/* =========================================
   CONTENEDOR
========================================= */

.porque-wrapper {

    position: relative;

    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 650px;

    border-radius: 30px;

    overflow: hidden;

    background: var(--sp-white);

    box-shadow:
        0 25px 55px rgba(23, 32, 24, 0.10);

}


/* =========================================
   IMAGEN
========================================= */

.porque-image {

    position: relative;

    min-height: 650px;

    overflow: hidden;

}


.porque-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 1s cubic-bezier(.2,.7,.2,1);

}


.porque-image:hover img {

    transform: scale(1.04);

}


/* =========================================
   OVERLAY
========================================= */

.porque-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 45, 22, 0.90),
            rgba(0, 45, 22, 0.10) 65%
        );

}


/* =========================================
   TEXTO SOBRE IMAGEN
========================================= */

.porque-image-content {

    position: absolute;

    left: 45px;
    right: 45px;
    bottom: 45px;

    color: var(--sp-white);

}


.porque-image-content span {

    display: block;

    margin-bottom: 12px;

    font-size: 0.68rem;

    font-weight: 700;

    letter-spacing: 2px;

    color: var(--sp-amarillo);

}


.porque-image-content h2 {

    max-width: 500px;

    margin-bottom: 15px;

    font-size: clamp(2rem, 4vw, 3.2rem);

    font-weight: 800;

    line-height: 1.1;

    color: var(--sp-white);

}


.porque-image-content h2 strong {

    color: var(--sp-amarillo);

}


.porque-image-content p {

    max-width: 480px;

    margin: 0;

    font-size: 0.9rem;

    line-height: 1.7;

    color: rgba(255,255,255,0.78);

}


/* =========================================
   CONTENIDO
========================================= */

.porque-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 65px 55px;

}


.porque-kicker {

    display: inline-block;

    margin-bottom: 13px;

    font-size: 0.72rem;

    font-weight: 700;

    letter-spacing: 1.8px;

    color: var(--sp-verde);

}


.porque-content h3 {

    margin-bottom: 18px;

    font-size: clamp(1.9rem, 3vw, 2.5rem);

    font-weight: 800;

    line-height: 1.2;

    color: var(--sp-black);

}


.porque-content h3 span {

    color: var(--sp-verde);

}


.porque-intro {

    max-width: 500px;

    margin-bottom: 28px;

    font-size: 0.9rem;

    line-height: 1.75;

    color: #687080;

}


/* =========================================
   RAZONES
========================================= */

.porque-reason {

    display: flex;

    gap: 15px;

    padding: 14px 0;

    border-bottom:
        1px solid var(--sp-gray-border);

}


.porque-reason:last-of-type {

    border-bottom: none;

}


/* =========================================
   NÚMERO
========================================= */

.porque-number {

    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: var(--sp-gray);

    color: var(--sp-verde);

    font-size: 0.65rem;

    font-weight: 800;

    transition: var(--sp-transition);

}


.porque-reason:hover .porque-number {

    background: var(--sp-verde);

    color: var(--sp-white);

    transform: translateY(-2px);

}


/* =========================================
   TEXTO
========================================= */

.porque-reason h4 {

    margin-bottom: 3px;

    font-size: 0.94rem;

    font-weight: 750;

    color: var(--sp-black);

}


.porque-reason p {

    margin: 0;

    font-size: 0.74rem;

    line-height: 1.5;

    color: #737b89;

}


/* =========================================
   FIRMA INSTITUCIONAL
========================================= */

.porque-signature {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 20px;

}


.porque-signature span {

    width: 35px;

    height: 2px;

    background: var(--sp-amarillo);

}


.porque-signature p {

    margin: 0;

    font-size: 0.8rem;

    font-weight: 700;

    font-style: italic;

    color: var(--sp-verde);

}


/* =========================================
   REVEAL
========================================= */

#porque-elegirnos .reveal {

    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;

}


#porque-elegirnos .reveal.active {

    opacity: 1;

    transform: translateY(0);

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    .porque-wrapper {

        grid-template-columns: 1fr;

    }


    .porque-image {

        min-height: 500px;

    }


    .porque-content {

        padding: 50px 40px;

    }

}


/* =========================================
   MÓVIL
========================================= */

@media (max-width: 767.98px) {

    .porque-elegirnos {

        padding-top: 60px;

        padding-bottom: 60px;

    }


    .porque-wrapper {

        border-radius: 22px;

    }


    .porque-image {

        min-height: 440px;

    }


    .porque-image-content {

        left: 25px;

        right: 25px;

        bottom: 25px;

    }


    .porque-image-content h2 {

        font-size: 2rem;

    }


    .porque-content {

        padding: 40px 25px;

    }


    .porque-content h3 {

        font-size: 1.9rem;

    }

}


/* =========================================
   ACCESIBILIDAD
========================================= */

@media (prefers-reduced-motion: reduce) {

    .porque-image img,
    .porque-reason .porque-number,
    .reveal {

        transition: none;

        transform: none;

    }

}

/* =========================================
   CTA FINAL — PROPUESTA EDUCATIVA
========================================= */

.cta-propuesta {

    position: relative;

    min-height: 650px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

}


/* =========================================
   IMAGEN DE FONDO
========================================= */

.cta-propuesta-bg {

    position: absolute;

    inset: 0;

    z-index: 0;

}


.cta-propuesta-bg img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 1.2s ease;

}


.cta-propuesta:hover
.cta-propuesta-bg img {

    transform: scale(1.025);

}


/* =========================================
   OVERLAY
========================================= */

.cta-propuesta-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0, 61, 29, 0.94) 0%,
            rgba(0, 77, 37, 0.84) 50%,
            rgba(0, 61, 29, 0.60) 100%
        );

}


/* =========================================
   CONTENIDO
========================================= */

.cta-propuesta .container {

    position: relative;

    z-index: 2;

}


.cta-propuesta-content {

    max-width: 820px;

    margin: 0 auto;

    text-align: center;

}


/* =========================================
   KICKER
========================================= */

.cta-propuesta-kicker {

    display: inline-block;

    margin-bottom: 18px;

    font-size: 0.72rem;

    font-weight: 700;

    letter-spacing: 2.5px;

    color: var(--sp-amarillo-light);

}


/* =========================================
   TÍTULO
========================================= */

.cta-propuesta h2 {

    margin-bottom: 22px;

    font-size: clamp(2.5rem, 5vw, 4.3rem);

    font-weight: 850;

    line-height: 1.05;

    color: var(--sp-white);

}


.cta-propuesta h2 span {

    color: var(--sp-amarillo);

}


/* =========================================
   DESCRIPCIÓN
========================================= */

.cta-propuesta-content > p {

    max-width: 680px;

    margin: 0 auto 35px;

    font-size: 1rem;

    line-height: 1.8;

    color:
        rgba(255, 255, 255, 0.82);

}


/* =========================================
   BOTONES
========================================= */

.cta-propuesta-actions {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

}


/* =========================================
   BOTÓN SECUNDARIO
========================================= */

.btn-cta-secondary,
.btn-cta-primary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-height: 52px;

    padding: 0 24px;

    border-radius: 12px;

    font-size: 0.84rem;

    font-weight: 750;

    text-decoration: none;

    transition:
        transform var(--sp-transition),
        background var(--sp-transition),
        color var(--sp-transition),
        box-shadow var(--sp-transition);

}


.btn-cta-secondary {

    border:
        1px solid rgba(255, 255, 255, 0.35);

    color: var(--sp-white);

    background:
        rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(6px);

}


.btn-cta-secondary:hover {

    color: var(--sp-white);

    background:
        rgba(255, 255, 255, 0.15);

    transform: translateY(-3px);

}


/* =========================================
   BOTÓN PRINCIPAL
========================================= */

.btn-cta-primary {

    background: var(--sp-amarillo);

    color: var(--sp-black);

    box-shadow:
        0 12px 30px rgba(244, 196, 0, 0.25);

}


.btn-cta-primary:hover {

    background: var(--sp-amarillo-light);

    color: var(--sp-black);

    transform: translateY(-3px);

    box-shadow:
        0 16px 35px rgba(244, 196, 0, 0.35);

}


.btn-cta-primary i,
.btn-cta-secondary i {

    transition:
        transform var(--sp-transition);

}


.btn-cta-primary:hover i {

    transform: translate(3px, -3px);

}


.btn-cta-secondary:hover i {

    transform: translateY(-3px);

}


/* =========================================
   FIRMA
========================================= */

.cta-propuesta-signature {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    margin-top: 42px;

}


.cta-propuesta-signature span {

    width: 45px;

    height: 1px;

    background:
        rgba(255, 255, 255, 0.30);

}


.cta-propuesta-signature strong {

    font-size: 0.78rem;

    font-weight: 600;

    font-style: italic;

    color:
        rgba(255, 255, 255, 0.72);

}


/* =========================================
   REVEAL
========================================= */

#cta-propuesta .reveal {

    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.9s ease,
        transform 0.9s ease;

}


#cta-propuesta .reveal.active {

    opacity: 1;

    transform: translateY(0);

}


/* =========================================
   MÓVIL
========================================= */

@media (max-width: 767.98px) {

    .cta-propuesta {

        min-height: 620px;

    }


    .cta-propuesta h2 {

        font-size: 2.35rem;

    }


    .cta-propuesta-content > p {

        font-size: 0.9rem;

        line-height: 1.7;

    }


    .cta-propuesta-actions {

        flex-direction: column;

        width: 100%;

    }


    .btn-cta-secondary,
    .btn-cta-primary {

        width: 100%;

        max-width: 320px;

    }


    .cta-propuesta-signature {

        margin-top: 32px;

    }


    .cta-propuesta-signature span {

        width: 25px;

    }

}


/* =========================================
   ACCESIBILIDAD
========================================= */

@media (prefers-reduced-motion: reduce) {

    .cta-propuesta-bg img,
    .btn-cta-primary,
    .btn-cta-secondary,
    .btn-cta-primary i,
    .btn-cta-secondary i,
    .reveal {

        transition: none;

        transform: none;

    }

}

