/* =================================================================================================
                                      COLEGIO MACAYA - ESTILOS GENERALES
================================================================================================= */
:root {
    /* Colores institucionales */

    --macaya-green: #045D3B;
    --macaya-green-dark: #03462D;
    --macaya-green-light: #286549;
    --macaya-green-soft: #EDF5F0;
    --macaya-burgundy: #6C0035;
    --macaya-burgundy-dark: #500027;
    --macaya-text: #2F3A34;
    --macaya-text-light: #6C7771;
    --macaya-white: #FFFFFF;
    --macaya-background: #F8FAF9;
    --macaya-border: #DFE8E2;
    --macaya-shadow: 0 12px 35px rgba(4, 93, 59, 0.08);
}
/* =================================================================================================
                                      RESET / BASE
================================================================================================= */
html {
    scroll-behavior: smooth;
}

body {

    margin: 0;
    padding: 0;
    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;
    background: var(--macaya-background);
    color: var(--macaya-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.section-padding {
    padding: 90px 0;
}
/* =================================================================================================
                                      NAVBAR
================================================================================================= */
.main-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.97);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.navbar {
    min-height: 88px;
    padding: 10px 0;
}

.navbar-brand {
    gap: 12px;
}

.navbar-logo {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-school {
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--macaya-text-light);
}

.brand-name {
    margin-top: 5px;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--macaya-green);
}
/* -------------------------------------------------------------------------------------------------
                                        Links
------------------------------------------------------------------------------------------------- */
.navbar-nav {
    gap: 4px;
}

.navbar .nav-link {
    position: relative;
    color: var(--macaya-text);
    font-size: 0.92rem;
    font-weight: 600;
    padding: 12px 12px !important;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.navbar .nav-link:hover {
    color: var(--macaya-burgundy);
}
/* -------------------------------------------------------------------------------------------------
                        Indicador enlaces normales
------------------------------------------------------------------------------------------------- */
.navbar .nav-link:not(.dropdown-toggle)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 3px;
    border-radius: 10px;
    background: var(--macaya-burgundy);
    transform: translateX(-50%);
    transition: width 0.25s ease;
}
/* Línea solamente en enlaces normales */
.navbar .nav-link:not(.dropdown-toggle):hover::after,
.navbar .nav-link:not(.dropdown-toggle).active::after {
    width: 24px;
}
/* -------------------------------------------------------------------------------------------------
                            Flecha Dropdown
------------------------------------------------------------------------------------------------- */
.navbar .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}
/* Flecha pequeña al lado del texto */
.navbar .dropdown-toggle::after {
    position: static;
    width: 0 !important;
    height: 0 !important;
    margin-left: 3px;
    margin-top: 3px;
    background: transparent;
    border-top: 5px solid currentColor;
    border-right: 4px solid transparent;
    border-bottom: 0;
    border-left: 4px solid transparent;
    border-radius: 0;
    transform: none;
    transition: transform 0.2s ease;
}
/* Cuando el menú está abierto */
.navbar .dropdown-toggle.show::after {
    transform: rotate(180deg);
}

.navbar .nav-link.active {
    color: var(--macaya-burgundy);
}

.navbar .dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14) !important;
    padding: 10px 0;
    margin-top: 10px;
}
/* -------------------------------------------------------------------------------------------------
                                  Portal Apoderados
------------------------------------------------------------------------------------------------- */
.btn-portal {
    padding: 11px 18px;
    border-radius: 50px;
    background: var(--macaya-green);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow:
        0 7px 18px rgba(4, 93, 59, 0.18);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.btn-portal:hover {
    background: var(--macaya-green-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow:
        0 10px 25px rgba(4, 93, 59, 0.25);
}
/* =================================================================================================
                                      HERO
================================================================================================= */
.hero-section {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(3, 70, 45, 0.92) 0%,
            rgba(4, 93, 59, 0.82) 35%,
            rgba(4, 93, 59, 0.45) 68%,
            rgba(4, 93, 59, 0.15) 100%
        ),
        url("../img/hero-macaya.png");
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(255, 255, 255, 0.06),
            transparent 35%
        );
}

.min-vh-hero {
    min-height: 620px;
}

.hero-section .container {
    z-index: 2;
}

.hero-eyebrow {
    display: inline-block;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
}

.hero-title {
    margin-bottom: 5px;
    color: white;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
}

.hero-subtitle {
    margin-bottom: 22px;
    color: white;
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 500;
}

.hero-description {
    max-width: 610px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.08rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
/* -------------------------------------------------------------------------------------------------
                                      Botones Hero
------------------------------------------------------------------------------------------------- */
.btn-macaya-primary,
.btn-macaya-secondary {
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.btn-macaya-primary {
    color: var(--macaya-green);
    background: white;
    border: 1px solid white;
}

.btn-macaya-primary:hover {
    color: var(--macaya-green-dark);
    background: var(--macaya-green-soft);
    transform: translateY(-2px);
    box-shadow:
        0 12px 25px rgba(0, 0, 0, 0.16);
}

.btn-macaya-secondary {
    color: white;
    background: var(--macaya-burgundy);
    border: 1px solid var(--macaya-burgundy);
}

.btn-macaya-secondary:hover {
    color: white;
    background: var(--macaya-burgundy-dark);
    border-color: var(--macaya-burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(108, 0, 53, 0.28);
}
/* -------------------------------------------------------------------------------------------------
                                    Mensaje decorativo
------------------------------------------------------------------------------------------------- */
.hero-message {
    position: absolute;
    right: 55px;
    bottom: 40px;
    z-index: 3;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    font-style: italic;
    text-align: right;
}

.hero-message strong {
    display: block;
    color: white;
    font-size: 1.3rem;
}
/* =================================================================================================
                                  ACCESOS RÁPIDOS
================================================================================================= */
.quick-access-section {
    position: relative;
    z-index: 5;
    margin-top: -48px;
}

.quick-access-wrapper {
    padding: 20px;
    background: white;
    border-radius: 24px;
    box-shadow: var(--macaya-shadow);
    border: 1px solid rgba(4, 93, 59, 0.07);
}

.quick-card {
    position: relative;
    height: 100%;
    min-height: 135px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 22px;
    border-radius: 18px;
    color: var(--macaya-text);
    background: var(--macaya-green-soft);
    border: 1px solid transparent;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.quick-card:hover {
    color: var(--macaya-text);
    background: white;
    border-color: rgba(4, 93, 59, 0.14);
    transform: translateY(-6px);
    box-shadow:
        0 15px 30px rgba(4, 93, 59, 0.10);
}

.quick-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: white;
    color: var(--macaya-green);
    font-size: 1.25rem;
    box-shadow: 0 5px 15px rgba(4, 93, 59, 0.06);
}

.quick-content h3 {
    margin: 0 0 4px 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--macaya-green-dark);
}

.quick-content p {
    margin: 0;
    color: var(--macaya-text-light);
    font-size: 0.82rem;
    line-height: 1.4;
}

.quick-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--macaya-green);
    font-size: 0.8rem;
    opacity: 0.65;
    transition: transform 0.25s ease;
}

.quick-card:hover .quick-arrow {
    transform: translateX(4px);
}
/* =================================================================================================
                                      VIDA EN MACAYA
================================================================================================= */
.life-section {
    background: white;
}
/* -------------------------------------------------------------------------------------------------
                                    Galería principal
------------------------------------------------------------------------------------------------- */
.life-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 16px;
}
/* Primera imagen: grande */
.life-gallery .life-image:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
}
/* Segunda imagen */
.life-gallery .life-image:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}
/* Tercera imagen */
.life-gallery .life-image:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}
/* Cuarta imagen: horizontal inferior */
.life-gallery .life-image:nth-child(4) {
    grid-column: 2 / 4;
    grid-row: 2;
}
/* -------------------------------------------------------------------------------------------------
                                    Fotografías
------------------------------------------------------------------------------------------------- */
.life-image {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    background: var(--macaya-green-soft);
}

.life-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}

.life-image:hover img {
    transform: scale(1.05);
    filter: brightness(0.82);
}
/* -------------------------------------------------------------------------------------------------
                                    Overlay
------------------------------------------------------------------------------------------------- */
.life-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(3, 70, 45, 0.88) 100%
        );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.life-image:hover .life-overlay {
    opacity: 1;
}

.life-overlay span {
    color: white;
    font-size: 1rem;
    font-weight: 700;
}
/* =================================================================================================
                                      ADMISION CTA
================================================================================================= */
.admission-cta {
    padding: 35px 0 60px;
    background: white;
}

.admission-box {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
    padding: 52px 55px;
    border-radius: 28px;
    color: white;
    background:
        linear-gradient(
            135deg,
            var(--macaya-green-dark),
            var(--macaya-green)
        );
    box-shadow:
        0 22px 50px rgba(4, 93, 59, 0.20);
}

.admission-box::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -100px;
    top: -150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.admission-small {
    display: inline-block;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.admission-box h2 {
    margin-bottom: 10px;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
}

.admission-box p {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.btn-admission {
    position: relative;
    z-index: 2;
    padding: 15px 25px;
    border-radius: 50px;
    white-space: nowrap;
    color: white;
    background: var(--macaya-burgundy);
    border: 1px solid var(--macaya-burgundy);
    font-weight: 700;
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.btn-admission:hover {
    color: white;
    background: var(--macaya-burgundy-dark);
    transform: translateY(-2px);
}
/* =================================================================================================
                                      FOOTER
================================================================================================= */
.main-footer {
    padding: 70px 0 0;
    background: var(--macaya-green-dark);
    color: white;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-brand img {
    width: 64px;
    height: 64px;
    padding: 4px;
    border-radius: 50%;
    background: white;
    object-fit: contain;
}

.footer-brand div {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.footer-brand span {
    color: rgba(255,255,255,0.75);
    font-size: 0.72rem;
    letter-spacing: 2px;
}

.footer-brand strong {
    margin-top: 5px;
    font-size: 1.35rem;
    letter-spacing: 1px;
}

.footer-description {
    max-width: 390px;
    margin: 0;
    color: rgba(255, 255, 255, 0.70);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-title {
    margin-bottom: 22px;
    font-size: 1rem;
    font-weight: 700;
}

.footer-contact,
.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
}

.footer-contact i {
    width: 18px;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}

.footer-links a:hover {
    padding-left: 4px;
    color: white;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    background: rgba(255, 255, 255, 0.10);
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.social-links a:hover {
    color: white;
    background: var(--macaya-burgundy);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 55px;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
}

.footer-motto {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}
/* =================================================================================================
                                      ANIMACIONES
================================================================================================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-eyebrow {
    animation: fadeUp 0.6s ease forwards;
}

.hero-title {
    animation: fadeUp 0.8s ease forwards;
}

.hero-subtitle {
    animation: fadeUp 1s ease forwards;
}

.hero-description {
    animation: fadeUp 1.1s ease forwards;
}

.hero-buttons {
    animation: fadeUp 1.2s ease forwards;
}
/* =================================================================================================
                                PÁGINA - NUESTRO COLEGIO
================================================================================================= */
/* -------------------------------------------------------------------------------------------------
                                    Hero interior
------------------------------------------------------------------------------------------------- */
.page-hero {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}

.colegio-page-hero {
    background:
        linear-gradient(
            90deg,
            rgba(3, 70, 45, 0.94) 0%,
            rgba(4, 93, 59, 0.80) 48%,
            rgba(4, 93, 59, 0.35) 100%
        ),
        url("../img/hero-macaya.png");
    background-size: cover;
    background-position: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(255,255,255,0.08),
            transparent 35%
        );
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 80px 0;
}

.page-hero-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.75);
}

.page-hero h1 {
    margin-bottom: 16px;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 800;
    letter-spacing: -2px;
}

.page-hero-content > p {
    max-width: 610px;
    margin-bottom: 25px;
    font-size: 1.08rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.86);
}
/* Breadcrumb */
.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
}

.page-breadcrumb a {
    color: white;
    font-weight: 600;
}

.page-breadcrumb span {
    color: rgba(255,255,255,0.65);
}

.page-breadcrumb i {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.45);
}
/* -------------------------------------------------------------------------------------------------
                                    Quiénes somos
------------------------------------------------------------------------------------------------- */
.about-school-section {
    background: white;
}

.about-school-image {
    position: relative;
    overflow: visible;
}

.about-school-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow:
        0 20px 45px rgba(4, 93, 59, 0.12);
}

.about-image-badge {
    position: absolute;
    right: -25px;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    border-radius: 18px;
    background: white;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.12);
}

.about-image-badge i {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: var(--macaya-green-soft);

    color: var(--macaya-green);

    font-size: 1.15rem;
}


.about-image-badge div {
    display: flex;

    flex-direction: column;
}


.about-image-badge strong {
    color: var(--macaya-green-dark);

    font-size: 1rem;
}


.about-image-badge span {
    color: var(--macaya-text-light);

    font-size: 0.74rem;
}


.school-description {
    margin-top: 22px;

    margin-bottom: 0;

    color: var(--macaya-text-light);

    font-size: 1.02rem;

    line-height: 1.85;
}


.school-quote {
    margin-top: 30px;

    padding: 24px 26px;

    display: flex;

    gap: 18px;

    border-left: 4px solid var(--macaya-burgundy);

    border-radius: 0 15px 15px 0;

    background: var(--macaya-green-soft);
}


.school-quote i {
    margin-top: 4px;

    color: var(--macaya-burgundy);

    font-size: 1.2rem;
}


.school-quote p {
    margin: 0;

    color: var(--macaya-green-dark);

    font-weight: 600;

    font-style: italic;

    line-height: 1.7;
}


/* -------------------------------------------------------------------------------------------------
                                    Introducciones
------------------------------------------------------------------------------------------------- */

/* =============================================================================================
                        TÍTULOS GENERALES DE SECCIÓN
============================================================================================= */

.section-eyebrow {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--macaya-burgundy);

    font-size: 0.78rem;
    font-weight: 800;

    letter-spacing: 2.5px;
    text-transform: uppercase;
}


.section-title {
    margin: 0;

    color: var(--macaya-green-dark);

    font-size: clamp(2.2rem, 4vw, 3rem);

    font-weight: 800;

    letter-spacing: -1px;

    line-height: 1.15;
}


.section-line {
    width: 62px;
    height: 4px;

    margin-top: 15px;

    border-radius: 10px;

    background: var(--macaya-burgundy);
}

/* =============================================================================================
                            CABECERAS CENTRADAS DE SECCIÓN
============================================================================================= */

.section-intro {
    max-width: 780px;
    margin: 0 auto 45px;

    text-align: center;
}


/* Texto pequeño superior */

.section-intro .section-eyebrow {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--macaya-burgundy);

    font-size: 0.78rem;
    font-weight: 800;

    letter-spacing: 2.5px;
}


/* Título principal */

.section-intro .section-title {
    margin: 0;

    color: var(--macaya-green-dark);

    font-size: clamp(2.3rem, 4vw, 3.3rem);

    font-weight: 800;

    letter-spacing: -1px;
}


/* Línea burdeo */

.section-intro .section-line {
    width: 65px;
    height: 4px;

    margin: 16px auto 0;

    border-radius: 10px;

    background: var(--macaya-burgundy);
}


/* Descripción inferior */

.section-intro > p {
    max-width: 680px;

    margin: 22px auto 0;

    color: var(--macaya-text-light);

    font-size: 1rem;

    line-height: 1.75;
}


/* -------------------------------------------------------------------------------------------------
                                    Misión / Visión
------------------------------------------------------------------------------------------------- */

.mission-vision-section {
    background: var(--macaya-background);
}

/* =============================================================================================
                            CABECERA MISIÓN Y VISIÓN
============================================================================================= */

.mission-vision-section .section-intro {
    max-width: 780px;
    margin: 0 auto 45px;
    text-align: center;
}


.mission-vision-section .section-eyebrow {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--macaya-burgundy);

    font-size: 0.78rem;
    font-weight: 800;

    letter-spacing: 2.5px;
}


/* Título */

.mission-vision-section .section-title {
    position: relative;

    margin: 0;

    color: var(--macaya-green-dark);

    font-size: clamp(2.3rem, 4vw, 3.3rem);

    font-weight: 800;

    letter-spacing: -1px;
}


/* Línea institucional */

.mission-vision-section .section-line {
    width: 65px;
    height: 4px;

    margin: 16px auto 0;

    border-radius: 10px;

    background: var(--macaya-burgundy);
}


/* Texto introductorio */

.mission-vision-section .section-intro > p {
    max-width: 650px;

    margin: 22px auto 0;

    color: var(--macaya-text-light);

    font-size: 1rem;

    line-height: 1.75;
}

.institution-card {
    position: relative;

    height: 100%;

    padding: 40px;

    overflow: hidden;

    border-radius: 25px;

    background: white;

    border: 1px solid var(--macaya-border);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.institution-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--macaya-shadow);
}


.institution-icon {
    width: 65px;

    height: 65px;

    margin-bottom: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 18px;

    background: var(--macaya-green-soft);

    color: var(--macaya-green);

    font-size: 1.5rem;
}


.institution-number {
    position: absolute;

    right: 28px;

    top: 20px;

    color: rgba(4, 93, 59, 0.07);

    font-size: 5rem;

    font-weight: 900;

    line-height: 1;
}


.institution-card h3 {
    position: relative;

    margin-bottom: 18px;

    color: var(--macaya-green-dark);

    font-size: 1.5rem;

    font-weight: 800;
}


.institution-card p {
    position: relative;

    margin: 0;

    color: var(--macaya-text-light);

    line-height: 1.85;
}


.vision-card .institution-icon {
    background: rgba(108, 0, 53, 0.08);

    color: var(--macaya-burgundy);
}


/* -------------------------------------------------------------------------------------------------
                                        Valores
------------------------------------------------------------------------------------------------- */

.school-values-section {
    background: white;
}


.school-value-card {
    position: relative;

    height: 100%;

    padding: 34px 28px;

    overflow: hidden;

    border-radius: 22px;

    background: var(--macaya-green-soft);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.school-value-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(4, 93, 59, 0.10);
}


.school-value-icon {
    width: 62px;

    height: 62px;

    margin-bottom: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: white;

    color: var(--macaya-green);

    font-size: 1.45rem;
}


.school-value-card h3 {
    margin-bottom: 12px;

    color: var(--macaya-green-dark);

    font-size: 1.25rem;

    font-weight: 800;
}


.school-value-card p {
    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.92rem;

    line-height: 1.75;
}


.value-decoration {
    position: absolute;

    right: -25px;

    bottom: -25px;

    width: 100px;

    height: 100px;

    border-radius: 50%;

    background: rgba(4, 93, 59, 0.05);
}


/* -------------------------------------------------------------------------------------------------
                                    Formación
------------------------------------------------------------------------------------------------- */

.education-model-section {
    background: var(--macaya-background);
}


.education-card {
    height: 100%;

    padding: 32px;

    text-align: center;

    border-radius: 22px;

    background: white;

    border: 1px solid var(--macaya-border);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.education-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--macaya-shadow);
}


.education-icon {
    width: 68px;

    height: 68px;

    margin: 0 auto 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 20px;

    color: white;

    background: var(--macaya-green);

    font-size: 1.45rem;
}


.education-card h3 {
    margin-bottom: 12px;

    color: var(--macaya-green-dark);

    font-size: 1.18rem;

    font-weight: 800;
}


.education-card p {
    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.9rem;

    line-height: 1.75;
}


/* -------------------------------------------------------------------------------------------------
                                    Trayectoria
------------------------------------------------------------------------------------------------- */

.trajectory-section {
    background: white;
}


.trajectory-image img {
    width: 100%;

    height: 430px;

    object-fit: cover;

    border-radius: 28px;

    box-shadow:
        0 20px 45px rgba(4, 93, 59, 0.12);
}


.trajectory-highlight {
    margin-top: 28px;

    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding: 17px 20px;

    border-radius: 16px;

    background: var(--macaya-green-soft);
}


.trajectory-highlight i {
    color: var(--macaya-green);

    font-size: 1.4rem;
}


.trajectory-highlight div {
    display: flex;

    flex-direction: column;
}


.trajectory-highlight strong {
    color: var(--macaya-green-dark);
}


.trajectory-highlight span {
    color: var(--macaya-text-light);

    font-size: 0.8rem;
}


/* -------------------------------------------------------------------------------------------------
                                    CTA final
------------------------------------------------------------------------------------------------- */

.school-contact-cta {
    padding: 25px 0 80px;

    background: white;
}


.school-contact-box {
    position: relative;

    overflow: hidden;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;

    padding: 48px 52px;

    border-radius: 28px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--macaya-green-dark),
            var(--macaya-green)
        );
}


.school-contact-box::after {
    content: "";

    position: absolute;

    right: -80px;

    top: -100px;

    width: 260px;

    height: 260px;

    border-radius: 50%;

    background: rgba(255,255,255,0.05);
}


.school-contact-box span {
    font-size: 0.75rem;

    font-weight: 800;

    letter-spacing: 2px;

    color: rgba(255,255,255,0.7);
}


.school-contact-box h2 {
    margin: 8px 0 10px;

    font-size: clamp(1.7rem, 3vw, 2.5rem);

    font-weight: 800;
}


.school-contact-box p {
    max-width: 670px;

    margin: 0;

    color: rgba(255,255,255,0.78);
}


.btn-school-contact {
    position: relative;

    z-index: 2;

    flex-shrink: 0;

    padding: 14px 24px;

    border-radius: 50px;

    background: var(--macaya-burgundy);

    color: white;

    font-weight: 700;
}


.btn-school-contact:hover {
    color: white;

    background: var(--macaya-burgundy-dark);

    transform: translateY(-2px);
}

/* =============================================================================================
                                PÁGINA ADMISIÓN
============================================================================================= */


/* Hero */

.admission-page-hero {

    background:
        linear-gradient(
            90deg,
            rgba(3,70,45,0.95) 0%,
            rgba(4,93,59,0.82) 48%,
            rgba(4,93,59,0.35) 100%
        ),
        url("../img/admision/admision-hero.png");

    background-size: cover;
    background-position: center;
}


/* =============================================================================================
                                INTRODUCCIÓN
============================================================================================= */

.admission-intro-section {
    background: white;
}


.admission-intro-image img {
    width: 100%;
    height: 470px;

    object-fit: cover;

    border-radius: 28px;

    box-shadow:
        0 20px 45px rgba(4,93,59,0.12);
}


.admission-info-alert {
    margin-top: 28px;

    display: flex;
    gap: 16px;

    padding: 22px 24px;

    border-radius: 18px;

    background: var(--macaya-green-soft);

    border-left: 4px solid var(--macaya-burgundy);
}


.admission-info-alert > i {
    margin-top: 4px;

    color: var(--macaya-burgundy);

    font-size: 1.25rem;
}


.admission-info-alert strong {
    color: var(--macaya-green-dark);
}


.admission-info-alert p {
    margin: 5px 0 0;

    color: var(--macaya-text-light);

    font-size: 0.9rem;
}


/* =============================================================================================
                                PROCESO
============================================================================================= */

.admission-process-section {
    background: var(--macaya-background);
}


.admission-steps {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}


.admission-step {
    position: relative;

    padding: 32px 25px;

    overflow: hidden;

    border-radius: 22px;

    background: white;

    border: 1px solid var(--macaya-border);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.admission-step:hover {
    transform: translateY(-6px);

    box-shadow: var(--macaya-shadow);
}


.admission-step-number {
    position: absolute;

    right: 18px;
    top: 10px;

    color: rgba(4,93,59,0.06);

    font-size: 4rem;

    font-weight: 900;
}


.admission-step-icon {
    width: 58px;
    height: 58px;

    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: var(--macaya-green-soft);

    color: var(--macaya-green);

    font-size: 1.3rem;
}


.admission-step h3 {
    position: relative;

    margin-bottom: 10px;

    color: var(--macaya-green-dark);

    font-size: 1.15rem;

    font-weight: 800;
}


.admission-step p {
    position: relative;

    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.9rem;

    line-height: 1.7;
}


/* =============================================================================================
                                REQUISITOS
============================================================================================= */

.admission-requirements-section {
    background: white;
}


.requirement-list {
    margin-top: 32px;

    display: flex;
    flex-direction: column;

    gap: 15px;
}


.requirement-item {
    display: flex;

    gap: 18px;

    padding: 22px;

    border-radius: 18px;

    background: var(--macaya-green-soft);
}


.requirement-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: white;

    color: var(--macaya-green);

    font-size: 1.15rem;
}


.requirement-item h3 {
    margin: 0 0 5px;

    color: var(--macaya-green-dark);

    font-size: 1rem;

    font-weight: 800;
}


.requirement-item p {
    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.87rem;
}


.admission-help-card {


    width: 100%;
    height: 100%;
    padding: 38px;

    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;

    color: white;

    background:
        linear-gradient(
            145deg,
            var(--macaya-green-dark),
            var(--macaya-green)
        );

    box-shadow:
        0 20px 45px rgba(4,93,59,0.17);
}


.admission-help-icon {
    width: 65px;
    height: 65px;

    margin-bottom: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: rgba(255,255,255,0.12);

    font-size: 1.5rem;
}


.admission-help-card > span {
    color: rgba(255,255,255,0.7);

    font-size: 0.74rem;

    font-weight: 800;

    letter-spacing: 2px;
}


.admission-help-card h3 {
    margin: 9px 0 14px;

    font-size: 1.65rem;

    font-weight: 800;
}


.admission-help-card p {
    margin-bottom: 25px;

    color: rgba(255,255,255,0.8);

    line-height: 1.7;
}


/* =============================================================================================
                                FECHAS
============================================================================================= */

.admission-dates-section {
    background: var(--macaya-background);
}


.admission-date-card {
    height: 100%;

    padding: 32px;

    text-align: center;

    border-radius: 22px;

    background: white;

    border: 1px solid var(--macaya-border);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.admission-date-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--macaya-shadow);
}


.date-icon {
    width: 60px;
    height: 60px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(108,0,53,0.08);

    color: var(--macaya-burgundy);

    font-size: 1.3rem;
}


.admission-date-card span {
    color: var(--macaya-burgundy);

    font-size: 0.72rem;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.admission-date-card h3 {
    margin: 8px 0;

    color: var(--macaya-green-dark);

    font-size: 1.2rem;

    font-weight: 800;
}


.admission-date-card p {
    margin: 0;

    color: var(--macaya-text-light);
}


/* =============================================================================================
                                FAQ
============================================================================================= */

.admission-faq-section {
    background: white;
}


.admission-accordion .accordion-item {
    margin-bottom: 12px;

    overflow: hidden;

    border: 1px solid var(--macaya-border);

    border-radius: 16px !important;
}


.admission-accordion .accordion-button {
    padding: 20px 22px;

    color: var(--macaya-green-dark);

    background: white;

    font-weight: 700;

    box-shadow: none;
}


.admission-accordion .accordion-button:not(.collapsed) {
    color: var(--macaya-green-dark);

    background: var(--macaya-green-soft);
}


.admission-accordion .accordion-button:focus {
    box-shadow: none;
}


.admission-accordion .accordion-body {
    padding: 20px 22px;

    color: var(--macaya-text-light);

    line-height: 1.7;
}

/* =============================================================================================
                                PÁGINA COMUNICADOS
============================================================================================= */


/* =============================================================================================
                                        HERO
============================================================================================= */

.communications-page-hero {

    background:

        linear-gradient(
            90deg,
            rgba(3, 70, 45, 0.96) 0%,
            rgba(4, 93, 59, 0.84) 50%,
            rgba(4, 93, 59, 0.38) 100%
        ),

        url("../img/comunicados/comunicados-hero.png");

    background-size: cover;

    background-position: center;
}


/* =============================================================================================
                                COMUNICADO DESTACADO
============================================================================================= */

.featured-communication-section {

    background: white;
}


.featured-communication {

    margin-top: 35px;

    display: grid;

    grid-template-columns: 130px 1fr auto;

    align-items: center;

    gap: 35px;

    padding: 38px;

    border-radius: 26px;

    background: var(--macaya-green-soft);

    border: 1px solid var(--macaya-border);

    box-shadow:
        0 12px 35px rgba(4, 93, 59, 0.06);

}


/* Fecha */

.featured-date {

    min-height: 125px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border-radius: 20px;

    color: white;

    background:
        linear-gradient(
            145deg,
            var(--macaya-green-dark),
            var(--macaya-green)
        );
}


.featured-day {

    font-size: 2.5rem;

    font-weight: 800;

    line-height: 1;
}


.featured-month {

    margin-top: 5px;

    font-size: 0.78rem;

    font-weight: 800;

    letter-spacing: 2px;
}


.featured-year {

    margin-top: 3px;

    font-size: 0.72rem;

    opacity: 0.7;
}


/* Contenido */

.communication-category {

    display: inline-block;

    margin-bottom: 8px;

    color: var(--macaya-burgundy);

    font-size: 0.75rem;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.featured-content h3 {

    margin-bottom: 10px;

    color: var(--macaya-green-dark);

    font-size: 1.65rem;

    font-weight: 800;
}


.featured-content p {

    max-width: 760px;

    margin: 0;

    color: var(--macaya-text-light);

    line-height: 1.75;
}


.btn-communication {

    padding: 14px 22px;

    white-space: nowrap;

    border-radius: 50px;

    background: var(--macaya-burgundy);

    color: white;

    font-weight: 700;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}


.btn-communication:hover {

    color: white;

    background: var(--macaya-burgundy-dark);

    transform: translateY(-2px);
}


/* =============================================================================================
                                LISTADO
============================================================================================= */

.communications-list-section {

    background: var(--macaya-background);
}


/* Cabecera */

.communications-heading {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 30px;

}


/* =============================================================================================
                                    BUSCADOR
============================================================================================= */

.communications-search {

    width: 340px;

    height: 52px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 0 18px;

    border-radius: 50px;

    background: white;

    border: 1px solid var(--macaya-border);

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.communications-search:focus-within {

    border-color: rgba(4, 93, 59, 0.35);

    box-shadow:
        0 8px 22px rgba(4, 93, 59, 0.08);
}


.communications-search i {

    color: var(--macaya-green);

}


.communications-search input {

    width: 100%;

    padding: 0;

    border: 0;

    outline: 0;

    background: transparent;

    color: var(--macaya-text);

    font-size: 0.9rem;
}


.communications-search input::placeholder {

    color: #9BA69F;
}


/* =============================================================================================
                                GRID COMUNICADOS
============================================================================================= */

.communications-grid {

    margin-top: 35px;
}


.communication-card {

    position: relative;

    height: 100%;

    min-height: 310px;

    display: flex;

    flex-direction: column;

    padding: 30px;

    overflow: hidden;

    border-radius: 22px;

    background: white;

    border: 1px solid var(--macaya-border);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.communication-card::before {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 4px;

    background: var(--macaya-burgundy);

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.3s ease;
}


.communication-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(4, 93, 59, 0.09);
}


.communication-card:hover::before {

    transform: scaleX(1);
}


.communication-card-top {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 22px;
}


.communication-icon {

    width: 48px;

    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    color: var(--macaya-burgundy);

    background: rgba(108, 0, 53, 0.08);

    font-size: 1.15rem;
}


.communication-date {

    color: var(--macaya-text-light);

    font-size: 0.78rem;

    font-weight: 600;
}


.communication-card h3 {

    margin-bottom: 12px;

    color: var(--macaya-green-dark);

    font-size: 1.2rem;

    font-weight: 800;
}


.communication-card p {

    margin-bottom: 25px;

    color: var(--macaya-text-light);

    font-size: 0.9rem;

    line-height: 1.7;
}


.communication-card > a {

    margin-top: auto;

    color: var(--macaya-green);

    font-size: 0.88rem;

    font-weight: 800;
}


.communication-card > a:hover {

    color: var(--macaya-burgundy);
}


/* =============================================================================================
                                PAGINACIÓN
============================================================================================= */

.communications-pagination {

    margin-top: 45px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 8px;
}


.pagination-number,
.pagination-arrow {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: var(--macaya-green-dark);

    background: white;

    border: 1px solid var(--macaya-border);

    font-size: 0.86rem;

    font-weight: 700;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


.pagination-number:hover,
.pagination-arrow:hover {

    color: white;

    background: var(--macaya-green);

    transform: translateY(-2px);
}


.pagination-number.active {

    color: white;

    background: var(--macaya-green);

    border-color: var(--macaya-green);
}


.pagination-arrow.disabled {

    pointer-events: none;

    opacity: 0.4;
}


.pagination-dots {

    padding: 0 5px;

    color: var(--macaya-text-light);
}


/* =============================================================================================
                                BLOQUE AYUDA
============================================================================================= */

.communication-help-section {

    padding: 30px 0 80px;

    background: white;
}


.communication-help-box {

    position: relative;

    overflow: hidden;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 35px;

    padding: 45px 50px;

    border-radius: 27px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--macaya-green-dark),
            var(--macaya-green)
        );
}


.communication-help-box::after {

    content: "";

    position: absolute;

    right: -80px;

    top: -110px;

    width: 270px;

    height: 270px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.05);
}


.communication-help-content {

    display: flex;

    align-items: center;

    gap: 22px;
}


.communication-help-icon {

    width: 65px;

    height: 65px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.12);

    font-size: 1.5rem;
}


.communication-help-content span {

    color: rgba(255, 255, 255, 0.68);

    font-size: 0.72rem;

    font-weight: 800;

    letter-spacing: 2px;
}


.communication-help-content h2 {

    margin: 5px 0;

    font-size: 1.8rem;

    font-weight: 800;
}


.communication-help-content p {

    margin: 0;

    color: rgba(255, 255, 255, 0.78);
}

/* =============================================================================================
                                ÚLTIMOS COMUNICADOS - INDEX
============================================================================================= */

.news-section {
    background: var(--macaya-background);
}


/* Cabecera */

.news-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 25px;
}


/* Ver todos */

.section-link {
    color: var(--macaya-green);

    font-size: 0.9rem;
    font-weight: 700;

    white-space: nowrap;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.section-link:hover {
    color: var(--macaya-burgundy);
}


/* =============================================================================================
                                    TARJETAS
============================================================================================= */

.news-card {
    position: relative;

    height: 100%;

    min-height: 310px;

    padding: 30px;

    overflow: hidden;

    border-radius: 22px;

    background: white;

    border: 1px solid var(--macaya-border);

    box-shadow:
        0 7px 25px rgba(0, 0, 0, 0.035);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* Línea burdeo al pasar el mouse */

.news-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 4px;
    height: 0;

    border-radius: 0 0 8px 0;

    background: var(--macaya-burgundy);

    transition: height 0.3s ease;
}


.news-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 40px rgba(4, 93, 59, 0.09);
}


.news-card:hover::before {
    height: 100%;
}


/* =============================================================================================
                                    ICONO
============================================================================================= */

.news-icon {
    width: 48px;
    height: 48px;

    margin-bottom: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: rgba(108, 0, 53, 0.08);

    color: var(--macaya-burgundy);

    font-size: 1.2rem;
}


/* =============================================================================================
                                    FECHA
============================================================================================= */

.news-date {
    display: block;

    margin-bottom: 8px;

    color: var(--macaya-text-light);

    font-size: 0.76rem;
    font-weight: 600;
}


/* =============================================================================================
                                    TÍTULO
============================================================================================= */

.news-card h3 {
    margin-bottom: 12px;

    color: var(--macaya-green-dark);

    font-size: 1.22rem;
    font-weight: 800;
}


/* =============================================================================================
                                    DESCRIPCIÓN
============================================================================================= */

.news-card p {
    min-height: 76px;

    margin-bottom: 20px;

    color: var(--macaya-text-light);

    font-size: 0.93rem;

    line-height: 1.7;
}


/* =============================================================================================
                                    LEER MÁS
============================================================================================= */

.news-card a {
    color: var(--macaya-green);

    font-size: 0.88rem;
    font-weight: 700;

    transition: color 0.25s ease;
}


.news-card a:hover {
    color: var(--macaya-burgundy);
}

/* =============================================================================================
                            NUESTRA COMUNIDAD - INDEX
============================================================================================= */

.community-section {
    background: white;
}


/* Texto izquierdo */

.community-description {
    max-width: 760px;

    margin-top: 22px;
    margin-bottom: 0;

    color: var(--macaya-text-light);

    font-size: 1.05rem;

    line-height: 1.8;
}


/* =============================================================================================
                                TARJETAS DE VALORES
============================================================================================= */

.value-card {
    height: 100%;

    padding: 32px 24px;

    text-align: center;

    border-radius: 22px;

    background: var(--macaya-green-soft);

    border: 1px solid rgba(4, 93, 59, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.value-card:hover {
    background: white;

    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(4, 93, 59, 0.10);
}


/* Icono */

.value-icon {
    width: 72px;
    height: 72px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--macaya-green);

    background: white;

    font-size: 1.8rem;

    box-shadow:
        0 8px 20px rgba(4, 93, 59, 0.10);
}


/* Título */

.value-card h3 {
    margin-bottom: 12px;

    color: var(--macaya-green-dark);

    font-size: 1.12rem;

    font-weight: 800;
}


/* Descripción */

.value-card p {
    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.9rem;

    line-height: 1.65;
}


/* =============================================================================================
                                LISTADO DOCUMENTOS
============================================================================================= */

.documents-list-section {

    background: white;
}


.documents-heading {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 30px;
}


/* =============================================================================================
                                AYUDA
============================================================================================= */

.documents-help-section {

    padding: 30px 0 80px;

    background: white;
}


.documents-help-box {

    position: relative;

    overflow: hidden;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 35px;

    padding: 45px 50px;

    border-radius: 27px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--macaya-green-dark),
            var(--macaya-green)
        );
}


.documents-help-box::after {

    content: "";

    position: absolute;

    right: -80px;
    top: -110px;

    width: 270px;
    height: 270px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.05);
}


.documents-help-content {

    display: flex;

    align-items: center;

    gap: 22px;
}


.documents-help-icon {

    width: 65px;
    height: 65px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.12);

    font-size: 1.5rem;
}


.documents-help-content span {

    color: rgba(255, 255, 255, 0.68);

    font-size: 0.72rem;

    font-weight: 800;

    letter-spacing: 2px;
}


.documents-help-content h2 {

    margin: 5px 0;

    font-size: 1.8rem;

    font-weight: 800;
}


.documents-help-content p {

    max-width: 700px;

    margin: 0;

    color: rgba(255, 255, 255, 0.78);
}

/* =============================================================================================
                                PÁGINA TALLERES
============================================================================================= */


/* =============================================================================================
                                        HERO
============================================================================================= */

.workshops-page-hero {

    background:
        linear-gradient(
            90deg,
            rgba(3, 70, 45, 0.96) 0%,
            rgba(4, 93, 59, 0.82) 48%,
            rgba(4, 93, 59, 0.34) 100%
        ),
        url("../img/talleres/talleres-hero.png");

    background-size: cover;
    background-position: center;
}


/* =============================================================================================
                                    INTRODUCCIÓN
============================================================================================= */

.workshops-intro-section {

    background: #ffffff;
}


.workshops-intro-image img {

    width: 100%;
    height: 470px;

    object-fit: cover;

    border-radius: 28px;

    box-shadow:
        0 20px 45px rgba(4, 93, 59, 0.12);
}


.workshops-highlight {

    margin-top: 28px;

    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding: 17px 20px;

    border-radius: 16px;

    background: var(--macaya-green-soft);
}


.workshops-highlight i {

    color: var(--macaya-burgundy);

    font-size: 1.3rem;
}


.workshops-highlight div {

    display: flex;
    flex-direction: column;
}


.workshops-highlight strong {

    color: var(--macaya-green-dark);

    font-size: 0.95rem;
}


.workshops-highlight span {

    color: var(--macaya-text-light);

    font-size: 0.8rem;
}


/* =============================================================================================
                                HORARIO / DOCUMENTO PDF
============================================================================================= */

.workshops-schedule-section {

    background: var(--macaya-background);
}


.workshops-document-card {

    max-width: 1100px;

    margin: 45px auto 0;

    overflow: hidden;

    border-radius: 26px;

    background: #ffffff;

    border: 1px solid var(--macaya-border);

    box-shadow:
        0 16px 40px rgba(4, 93, 59, 0.08);
}


/* =============================================================================================
                                CABECERA DOCUMENTO
============================================================================================= */

.workshops-document-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 28px 30px;

    border-bottom: 1px solid var(--macaya-border);
}


.workshops-document-heading {

    display: flex;

    align-items: center;

    gap: 18px;
}


.workshops-document-icon {

    width: 62px;
    height: 62px;

    flex: 0 0 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    color: #ffffff;

    background: var(--macaya-burgundy);

    font-size: 1.35rem;

    box-shadow:
        0 9px 24px rgba(108, 0, 53, 0.15);
}


.workshops-document-heading span {

    display: block;

    margin-bottom: 3px;

    color: var(--macaya-burgundy);

    font-size: 0.68rem;

    font-weight: 800;

    letter-spacing: 1.7px;
}


.workshops-document-heading h3 {

    margin: 0 0 3px;

    color: var(--macaya-green-dark);

    font-size: 1.35rem;

    font-weight: 800;
}


.workshops-document-heading p {

    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.82rem;
}


/* =============================================================================================
                                BOTONES DOCUMENTO
============================================================================================= */

.workshops-document-actions {

    display: flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}


.btn-workshop-outline,
.btn-workshop-primary {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 11px 16px;

    border-radius: 50px;

    text-decoration: none;

    font-size: 0.78rem;

    font-weight: 700;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.btn-workshop-outline {

    color: var(--macaya-green);

    background: #ffffff;

    border: 1px solid var(--macaya-green);
}


.btn-workshop-outline:hover {

    color: #ffffff;

    background: var(--macaya-green);

    transform: translateY(-2px);
}


.btn-workshop-primary {

    color: #ffffff;

    background: var(--macaya-green);

    border: 1px solid var(--macaya-green);
}


.btn-workshop-primary:hover {

    color: #ffffff;

    background: var(--macaya-green-dark);

    border-color: var(--macaya-green-dark);

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(4, 93, 59, 0.18);
}


/* =============================================================================================
                                    VISOR PDF
============================================================================================= */

.workshops-pdf-viewer {

    width: 100%;

    height: 720px;

    background: #eef2ef;
}


.workshops-pdf-viewer iframe {

    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}


/* =============================================================================================
                                PIE DEL DOCUMENTO
============================================================================================= */

.workshops-document-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 18px 30px;

    background: #ffffff;

    border-top: 1px solid var(--macaya-border);
}


.workshops-document-footer > div {

    display: flex;

    align-items: center;

    gap: 10px;
}


.workshops-document-footer > div i {

    color: var(--macaya-green);
}


.workshops-document-footer > div span {

    color: var(--macaya-text-light);

    font-size: 0.8rem;
}


.workshops-pdf-label {

    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 6px 10px;

    border-radius: 50px;

    color: var(--macaya-burgundy);

    background: rgba(108, 0, 53, 0.06);

    font-size: 0.72rem;

    font-weight: 800;
}


/* =============================================================================================
                                CÓMO PARTICIPAR
============================================================================================= */

.workshops-participation-section {

    background: #ffffff;
}


.participation-steps {

    display: flex;

    flex-direction: column;

    gap: 15px;
}


.participation-step {

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 24px;

    border-radius: 20px;

    background: var(--macaya-green-soft);

    border: 1px solid rgba(4, 93, 59, 0.07);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.participation-step:hover {

    transform: translateX(5px);

    box-shadow:
        0 12px 28px rgba(4, 93, 59, 0.07);
}


.participation-step > span {

    width: 54px;
    height: 54px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: #ffffff;

    color: var(--macaya-burgundy);

    font-size: 1rem;

    font-weight: 800;

    box-shadow:
        0 8px 20px rgba(4, 93, 59, 0.08);
}


.participation-step h3 {

    margin: 0 0 5px;

    color: var(--macaya-green-dark);

    font-size: 1rem;

    font-weight: 800;
}


.participation-step p {

    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.88rem;

    line-height: 1.6;
}


/* =============================================================================================
                                GALERÍA
============================================================================================= */

.workshops-gallery-section {

    background: var(--macaya-background);
}


.workshops-gallery {

    display: grid;

    grid-template-columns: 2fr 1fr;

    grid-template-rows: 240px 240px;

    gap: 16px;
}


.workshops-gallery-item {

    position: relative;

    overflow: hidden;

    border-radius: 22px;
}


.workshops-gallery-item.gallery-main {

    grid-row: 1 / 3;
}


.workshops-gallery-item img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}


.workshops-gallery-item:hover img {

    transform: scale(1.05);

    filter: brightness(0.82);
}


.workshops-gallery-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: flex-end;

    padding: 24px;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(3, 70, 45, 0.88) 100%
        );

    opacity: 0;

    transition: opacity 0.3s ease;
}


.workshops-gallery-item:hover .workshops-gallery-overlay {

    opacity: 1;
}


.workshops-gallery-overlay span {

    color: #ffffff;

    font-size: 1rem;

    font-weight: 800;
}


/* =============================================================================================
                                CTA FINAL
============================================================================================= */

.school-contact-cta {

    padding: 25px 0 80px;

    background: #ffffff;
}


.school-contact-box {

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    padding: 45px 50px;

    border-radius: 28px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--macaya-green-dark),
            var(--macaya-green)
        );

    box-shadow:
        0 18px 40px rgba(4, 93, 59, 0.13);
}


.school-contact-box::after {

    content: "";

    position: absolute;

    right: -90px;
    top: -110px;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.05);

    pointer-events: none;
}


.school-contact-box > div {

    position: relative;

    z-index: 2;
}


.school-contact-box span {

    display: block;

    color: rgba(255, 255, 255, 0.65);

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 2px;
}


.school-contact-box h2 {

    margin: 5px 0 7px;

    color: #ffffff;

    font-size: 1.8rem;

    font-weight: 800;
}


.school-contact-box p {

    max-width: 680px;

    margin: 0;

    color: rgba(255, 255, 255, 0.78);

    font-size: 0.9rem;

    line-height: 1.65;
}


.school-contact-box .btn-school-contact {

    position: relative;

    z-index: 2;

    flex-shrink: 0;
}


/* =============================================================================================
                                    TABLET
============================================================================================= */

@media (max-width: 991px) {


    .workshops-intro-image img {

        height: 400px;
    }


    .workshops-document-header {

        flex-direction: column;

        align-items: flex-start;
    }


    .workshops-document-actions {

        width: 100%;
    }


    .btn-workshop-outline,
    .btn-workshop-primary {

        flex: 1;
    }


    .workshops-pdf-viewer {

        height: 620px;
    }


    .workshops-gallery {

        grid-template-columns: 1fr 1fr;

        grid-template-rows: 300px 220px;
    }


    .workshops-gallery-item.gallery-main {

        grid-column: 1 / 3;

        grid-row: 1;
    }


    .school-contact-box {

        flex-direction: column;

        align-items: flex-start;
    }

}


/* =============================================================================================
                                    MOBILE
============================================================================================= */

@media (max-width: 767px) {


    /* -----------------------------------------------------------------------------------------
                                        HERO
    ----------------------------------------------------------------------------------------- */

    .workshops-page-hero {

        background:
            linear-gradient(
                rgba(3, 70, 45, 0.88),
                rgba(3, 70, 45, 0.88)
            ),
            url("../img/talleres/talleres-hero.png");

        background-size: cover;

        background-position: center;
    }


    /* -----------------------------------------------------------------------------------------
                                    INTRODUCCIÓN
    ----------------------------------------------------------------------------------------- */

    .workshops-intro-image img {

        height: 300px;

        border-radius: 22px;
    }


    .workshops-highlight {

        width: 100%;

        align-items: flex-start;
    }


    /* -----------------------------------------------------------------------------------------
                                DOCUMENTO
    ----------------------------------------------------------------------------------------- */

    .workshops-document-card {

        margin-top: 35px;

        border-radius: 20px;
    }


    .workshops-document-header {

        padding: 22px 18px;

        gap: 20px;
    }


    .workshops-document-heading {

        align-items: flex-start;

        gap: 14px;
    }


    .workshops-document-icon {

        width: 52px;
        height: 52px;

        flex-basis: 52px;

        border-radius: 15px;

        font-size: 1.15rem;
    }


    .workshops-document-heading h3 {

        font-size: 1.1rem;
    }


    .workshops-document-actions {

        flex-direction: column;
    }


    .btn-workshop-outline,
    .btn-workshop-primary {

        width: 100%;
    }


    .workshops-pdf-viewer {

        height: 500px;
    }


    .workshops-document-footer {

        align-items: flex-start;

        padding: 17px 18px;
    }


    .workshops-document-footer > div {

        align-items: flex-start;
    }


    /* -----------------------------------------------------------------------------------------
                                CÓMO PARTICIPAR
    ----------------------------------------------------------------------------------------- */

    .participation-step {

        align-items: flex-start;

        gap: 15px;

        padding: 20px;
    }


    .participation-step > span {

        width: 48px;
        height: 48px;

        flex-basis: 48px;
    }


    /* -----------------------------------------------------------------------------------------
                                    GALERÍA
    ----------------------------------------------------------------------------------------- */

    .workshops-gallery {

        display: grid;

        grid-template-columns: 1fr;

        grid-template-rows: none;

        gap: 14px;
    }


    .workshops-gallery-item,
    .workshops-gallery-item.gallery-main {

        grid-column: auto;

        grid-row: auto;

        height: 230px;
    }


    .workshops-gallery-overlay {

        opacity: 1;
    }


    /* -----------------------------------------------------------------------------------------
                                    CTA
    ----------------------------------------------------------------------------------------- */

    .school-contact-cta {

        padding-bottom: 60px;
    }


    .school-contact-box {

        padding: 32px 25px;

        border-radius: 22px;
    }


    .school-contact-box h2 {

        font-size: 1.5rem;
    }


    .school-contact-box .btn-school-contact {

        width: 100%;

        text-align: center;
    }

}

/* =============================================================================================
                                PÁGINA CONTACTO
============================================================================================= */


/* =============================================================================================
                                        HERO
============================================================================================= */

.contact-page-hero {

    background:

        linear-gradient(
            90deg,
            rgba(3, 70, 45, 0.96) 0%,
            rgba(4, 93, 59, 0.82) 48%,
            rgba(4, 93, 59, 0.34) 100%
        ),

        url("../img/contacto/contacto-hero.png");

    background-size: cover;

    background-position: center;
}


/* =============================================================================================
                                INFORMACIÓN DE CONTACTO
============================================================================================= */

.contact-info-section {

    background: white;
}


.contact-info-card {

    height: 100%;

    padding: 30px 24px;

    text-align: center;

    border-radius: 22px;

    background: var(--macaya-green-soft);

    border: 1px solid rgba(4, 93, 59, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.contact-info-card:hover {

    background: white;

    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(4, 93, 59, 0.10);
}


.contact-info-icon {

    width: 64px;
    height: 64px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: white;

    color: var(--macaya-green);

    font-size: 1.4rem;

    box-shadow:
        0 8px 20px rgba(4, 93, 59, 0.09);
}


.contact-info-card > span {

    display: block;

    margin-bottom: 7px;

    color: var(--macaya-burgundy);

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.contact-info-card h3 {

    margin-bottom: 10px;

    color: var(--macaya-green-dark);

    font-size: 1.15rem;

    font-weight: 800;
}


.contact-info-card p {

    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.9rem;

    line-height: 1.7;

    word-break: break-word;
}


/* =============================================================================================
                                FORMULARIO
============================================================================================= */

.contact-form-section {

    background: var(--macaya-background);
}


.contact-form-wrapper {

    height: 100%;

    padding: 38px;

    border-radius: 26px;

    background: white;

    border: 1px solid var(--macaya-border);

    box-shadow:
        0 14px 35px rgba(4, 93, 59, 0.06);
}


.contact-form {

    margin-top: 30px;
}


.contact-form .form-label {

    margin-bottom: 8px;

    color: var(--macaya-green-dark);

    font-size: 0.88rem;

    font-weight: 700;
}


.contact-form .form-label span {

    color: var(--macaya-burgundy);
}


.contact-input {

    position: relative;
}


.contact-input > i {

    position: absolute;

    left: 16px;
    top: 50%;

    transform: translateY(-50%);

    z-index: 2;

    color: var(--macaya-green);

    font-size: 0.95rem;
}


.contact-input input,
.contact-input select,
.contact-input textarea {

    width: 100%;

    padding: 13px 16px 13px 45px;

    border: 1px solid var(--macaya-border);

    border-radius: 14px;

    outline: none;

    color: var(--macaya-text);

    background: var(--macaya-background);

    font-size: 0.92rem;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


.contact-input input:focus,
.contact-input select:focus,
.contact-input textarea:focus {

    background: white;

    border-color: rgba(4, 93, 59, 0.40);

    box-shadow:
        0 0 0 4px rgba(4, 93, 59, 0.07);
}


.contact-textarea > i {

    top: 18px;

    transform: none;
}


.contact-input textarea {

    resize: vertical;

    min-height: 150px;
}


.btn-contact-submit {

    padding: 14px 25px;

    border: none;

    border-radius: 50px;

    color: white;

    background: var(--macaya-burgundy);

    font-weight: 700;

    box-shadow:
        0 8px 22px rgba(108, 0, 53, 0.17);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.btn-contact-submit:hover {

    color: white;

    background: var(--macaya-burgundy-dark);

    transform: translateY(-2px);

    box-shadow:
        0 12px 28px rgba(108, 0, 53, 0.22);
}


/* =============================================================================================
                                TARJETA LATERAL
============================================================================================= */

.contact-side-card {

    height: 100%;

    padding: 40px 36px;

    border-radius: 26px;

    color: white;

    background:
        linear-gradient(
            145deg,
            var(--macaya-green-dark),
            var(--macaya-green)
        );

    box-shadow:
        0 20px 45px rgba(4, 93, 59, 0.17);
}


.contact-side-icon {

    width: 68px;
    height: 68px;

    margin-bottom: 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: rgba(255,255,255,0.12);

    font-size: 1.5rem;
}


.contact-side-card > span {

    color: rgba(255,255,255,0.68);

    font-size: 0.72rem;

    font-weight: 800;

    letter-spacing: 2px;
}


.contact-side-card h2 {

    margin: 8px 0 14px;

    font-size: 1.8rem;

    font-weight: 800;
}


.contact-side-card > p {

    margin: 0;

    color: rgba(255,255,255,0.80);

    line-height: 1.75;
}


.contact-side-divider {

    height: 1px;

    margin: 28px 0;

    background: rgba(255,255,255,0.15);
}


.contact-side-item {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 14px;

    color: rgba(255,255,255,0.87);

    font-size: 0.9rem;
}


.contact-side-item i {

    width: 25px;
    height: 25px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.12);

    font-size: 0.7rem;
}


/* Redes */

.contact-social {

    margin-top: 32px;
}


.contact-social > span {

    display: block;

    margin-bottom: 14px;

    color: rgba(255,255,255,0.65);

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 2px;
}


.contact-social > div {

    display: flex;

    gap: 10px;
}


.contact-social a {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: white;

    background: rgba(255,255,255,0.12);

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.contact-social a:hover {

    color: white;

    background: var(--macaya-burgundy);

    transform: translateY(-3px);
}


/* =============================================================================================
                                UBICACIÓN / MAPA
============================================================================================= */

.contact-location-section {

    background: white;
}


.contact-map-placeholder {

    min-height: 430px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 40px;

    text-align: center;

    border-radius: 28px;

    background:

        linear-gradient(
            rgba(237, 245, 240, 0.92),
            rgba(237, 245, 240, 0.92)
        );

    border: 1px solid var(--macaya-border);

    box-shadow:
        0 15px 35px rgba(4, 93, 59, 0.07);
}


.contact-map-placeholder > div {

    max-width: 430px;
}


.contact-map-placeholder i {

    margin-bottom: 20px;

    color: var(--macaya-green);

    font-size: 3rem;
}


.contact-map-placeholder h3 {

    margin-bottom: 10px;

    color: var(--macaya-green-dark);

    font-size: 1.4rem;

    font-weight: 800;
}


.contact-map-placeholder p {

    margin: 0;

    color: var(--macaya-text-light);

    line-height: 1.7;
}


/* =============================================================================================
                                TRABAJA CON NOSOTROS
============================================================================================= */

.contact-work-section {

    padding: 25px 0 80px;

    background: white;
}


.contact-work-box {

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 45px 50px;

    border-radius: 28px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--macaya-green-dark),
            var(--macaya-green)
        );
}


.contact-work-box::after {

    content: "";

    position: absolute;

    right: -90px;
    top: -110px;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background: rgba(255,255,255,0.05);
}


.contact-work-content {

    display: flex;

    align-items: center;

    gap: 22px;
}


.contact-work-icon {

    width: 66px;
    height: 66px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: rgba(255,255,255,0.12);

    font-size: 1.5rem;
}


.contact-work-content span {

    color: rgba(255,255,255,0.68);

    font-size: 0.72rem;

    font-weight: 800;

    letter-spacing: 2px;
}


.contact-work-content h2 {

    margin: 5px 0;

    font-size: 1.8rem;

    font-weight: 800;
}


.contact-work-content p {

    max-width: 670px;

    margin: 0;

    color: rgba(255,255,255,0.78);
}

/* =============================================================================================
                            PÁGINA TRABAJA CON NOSOTROS
============================================================================================= */


/* =============================================================================================
                                    HERO
============================================================================================= */

.work-page-hero {

    background:

        linear-gradient(
            90deg,
            rgba(3, 70, 45, 0.96) 0%,
            rgba(4, 93, 59, 0.82) 48%,
            rgba(4, 93, 59, 0.34) 100%
        ),

        url("../img/trabaja/trabaja-hero.png");

    background-size: cover;
    background-position: center;
}


/* =============================================================================================
                                INTRODUCCIÓN
============================================================================================= */

.work-intro-section {
    background: white;
}


.work-intro-image img {

    width: 100%;
    height: 470px;

    object-fit: cover;

    border-radius: 28px;

    box-shadow:
        0 20px 45px rgba(4, 93, 59, 0.12);
}


/* =============================================================================================
                                    VALORES
============================================================================================= */

.work-values {

    margin-top: 30px;

    display: flex;
    flex-direction: column;

    gap: 14px;
}


.work-value {

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 18px 20px;

    border-radius: 16px;

    background: var(--macaya-green-soft);

    border: 1px solid rgba(4, 93, 59, 0.07);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.work-value:hover {

    transform: translateX(4px);

    box-shadow:
        0 10px 25px rgba(4, 93, 59, 0.07);
}


.work-value > i {

    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: white;

    color: var(--macaya-green);

    font-size: 1.1rem;
}


.work-value div {

    display: flex;
    flex-direction: column;
}


.work-value strong {

    color: var(--macaya-green-dark);

    font-size: 0.95rem;
}


.work-value span {

    margin-top: 2px;

    color: var(--macaya-text-light);

    font-size: 0.8rem;
}


/* =============================================================================================
                                SECCIÓN FORMULARIO
============================================================================================= */

.work-form-section {

    background: var(--macaya-background);
}


/* =============================================================================================
                            INFORMACIÓN LATERAL FORMULARIO
============================================================================================= */

.work-form-info {

    position: sticky;

    top: 120px;
}


.work-info-box {

    margin-top: 28px;

    display: flex;

    gap: 17px;

    padding: 22px;

    border-radius: 18px;

    background: white;

    border: 1px solid var(--macaya-border);

    box-shadow:
        0 10px 25px rgba(4, 93, 59, 0.05);
}


.work-info-box > i {

    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: var(--macaya-green-soft);

    color: var(--macaya-green);

    font-size: 1.25rem;
}


.work-info-box strong {

    color: var(--macaya-green-dark);

    font-size: 0.95rem;
}


.work-info-box p {

    margin: 4px 0 2px;

    color: var(--macaya-text-light);

    font-size: 0.83rem;
}


.work-info-box span {

    color: var(--macaya-burgundy);

    font-size: 0.76rem;

    font-weight: 700;
}


.work-note {

    margin-top: 18px;

    display: flex;

    gap: 13px;

    padding: 18px 20px;

    border-radius: 16px;

    background: rgba(108, 0, 53, 0.06);

    border-left: 4px solid var(--macaya-burgundy);
}


.work-note i {

    margin-top: 4px;

    color: var(--macaya-burgundy);

    font-size: 1rem;
}


.work-note p {

    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.82rem;

    line-height: 1.65;
}


/* =============================================================================================
                                FORMULARIO
============================================================================================= */

.work-form-wrapper {

    padding: 38px;

    border-radius: 26px;

    background: white;

    border: 1px solid var(--macaya-border);

    box-shadow:
        0 14px 35px rgba(4, 93, 59, 0.07);
}


.work-form-heading {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 30px;

    padding-bottom: 25px;

    border-bottom: 1px solid var(--macaya-border);
}


.work-form-heading-icon {

    width: 62px;
    height: 62px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: var(--macaya-green-soft);

    color: var(--macaya-green);

    font-size: 1.4rem;
}


.work-form-heading span {

    color: var(--macaya-burgundy);

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 1.7px;
}


.work-form-heading h2 {

    margin: 3px 0 4px;

    color: var(--macaya-green-dark);

    font-size: 1.55rem;

    font-weight: 800;
}


.work-form-heading p {

    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.85rem;
}


/* =============================================================================================
                                CAMPOS
============================================================================================= */

.work-form .form-label {

    margin-bottom: 8px;

    color: var(--macaya-green-dark);

    font-size: 0.88rem;

    font-weight: 700;
}


.work-form .form-label span {

    color: var(--macaya-burgundy);
}


.work-input {

    position: relative;
}


.work-input > i {

    position: absolute;

    left: 16px;
    top: 50%;

    transform: translateY(-50%);

    z-index: 2;

    color: var(--macaya-green);

    font-size: 0.95rem;
}


.work-input input,
.work-input textarea {

    width: 100%;

    padding: 13px 16px 13px 45px;

    border: 1px solid var(--macaya-border);

    border-radius: 14px;

    outline: none;

    color: var(--macaya-text);

    background: var(--macaya-background);

    font-size: 0.92rem;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


.work-input input:focus,
.work-input textarea:focus {

    background: white;

    border-color: rgba(4, 93, 59, 0.40);

    box-shadow:
        0 0 0 4px rgba(4, 93, 59, 0.07);
}


.work-textarea > i {

    top: 18px;

    transform: none;
}


.work-input textarea {

    min-height: 150px;

    resize: vertical;
}


/* =============================================================================================
                                SUBIR CURRICULUM
============================================================================================= */

.work-upload {

    width: 100%;

    display: grid;

    grid-template-columns: 55px 1fr auto;

    align-items: center;

    gap: 17px;

    padding: 22px;

    border-radius: 18px;

    background: var(--macaya-green-soft);

    border: 2px dashed rgba(4, 93, 59, 0.20);

    cursor: pointer;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}


.work-upload:hover {

    background: #e7f2eb;

    border-color: rgba(4, 93, 59, 0.42);

    transform: translateY(-2px);
}


.work-upload-icon {

    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: white;

    color: var(--macaya-green);

    font-size: 1.3rem;
}


.work-upload > div:nth-child(2) {

    display: flex;
    flex-direction: column;
}


.work-upload strong {

    color: var(--macaya-green-dark);

    font-size: 0.9rem;
}


.work-upload div span {

    margin-top: 3px;

    color: var(--macaya-text-light);

    font-size: 0.77rem;
}


.work-upload-button {

    padding: 9px 14px;

    border-radius: 50px;

    color: white;

    background: var(--macaya-green);

    font-size: 0.77rem;

    font-weight: 700;

    white-space: nowrap;
}


/* =============================================================================================
                                CHECKBOX
============================================================================================= */

.work-check {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding: 17px;

    border-radius: 14px;

    background: var(--macaya-background);
}


.work-check input {

    margin-top: 4px;

    accent-color: var(--macaya-green);
}


.work-check label {

    color: var(--macaya-text-light);

    font-size: 0.8rem;

    line-height: 1.6;
}


/* =============================================================================================
                                BOTÓN ENVIAR
============================================================================================= */

.btn-work-submit {

    padding: 14px 25px;

    border: 0;

    border-radius: 50px;

    color: white;

    background: var(--macaya-burgundy);

    font-weight: 700;

    box-shadow:
        0 8px 22px rgba(108, 0, 53, 0.17);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.btn-work-submit:hover {

    color: white;

    background: var(--macaya-burgundy-dark);

    transform: translateY(-2px);

    box-shadow:
        0 12px 28px rgba(108, 0, 53, 0.22);
}


/* =============================================================================================
                                PROCESO
============================================================================================= */

.work-process-section {

    background: white;
}


.work-process-card {

    position: relative;

    height: 100%;

    padding: 32px;

    overflow: hidden;

    text-align: center;

    border-radius: 22px;

    background: var(--macaya-green-soft);

    border: 1px solid rgba(4, 93, 59, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.work-process-card:hover {

    background: white;

    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(4, 93, 59, 0.09);
}


.work-process-number {

    position: absolute;

    right: 18px;
    top: 12px;

    color: rgba(4, 93, 59, 0.07);

    font-size: 4rem;

    font-weight: 900;

    line-height: 1;
}


.work-process-icon {

    width: 65px;
    height: 65px;

    margin: 0 auto 22px;

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: white;

    color: var(--macaya-green);

    font-size: 1.35rem;

    box-shadow:
        0 8px 20px rgba(4, 93, 59, 0.08);
}


.work-process-card h3 {

    position: relative;

    margin-bottom: 10px;

    color: var(--macaya-green-dark);

    font-size: 1.1rem;

    font-weight: 800;
}


.work-process-card p {

    position: relative;

    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.87rem;

    line-height: 1.7;
}


/* =============================================================================================
                                CTA FINAL
============================================================================================= */

.work-contact-section {

    padding: 25px 0 80px;

    background: white;
}


.work-contact-box {

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 45px 50px;

    border-radius: 28px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--macaya-green-dark),
            var(--macaya-green)
        );
}


.work-contact-box::after {

    content: "";

    position: absolute;

    right: -90px;
    top: -110px;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background: rgba(255,255,255,0.05);
}


.work-contact-content {

    display: flex;

    align-items: center;

    gap: 22px;
}


.work-contact-icon {

    width: 66px;
    height: 66px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: rgba(255,255,255,0.12);

    font-size: 1.5rem;
}


.work-contact-content span {

    color: rgba(255,255,255,0.68);

    font-size: 0.72rem;

    font-weight: 800;

    letter-spacing: 2px;
}


.work-contact-content h2 {

    margin: 5px 0;

    font-size: 1.8rem;

    font-weight: 800;
}


.work-contact-content p {

    max-width: 670px;

    margin: 0;

    color: rgba(255,255,255,0.78);
}

/* =============================================================================================
                                    PÁGINA HIMNO
============================================================================================= */


/* =============================================================================================
                                        HERO
============================================================================================= */

.anthem-page-hero {

    background:
        linear-gradient(
            90deg,
            rgba(3, 70, 45, 0.96) 0%,
            rgba(4, 93, 59, 0.84) 48%,
            rgba(4, 93, 59, 0.38) 100%
        ),
        url("../img/himno/himno-hero.png");

    background-size: cover;
    background-position: center;
}


/* =============================================================================================
                                PRESENTACIÓN DEL HIMNO
============================================================================================= */

.anthem-intro-section {

    background: white;
}


.anthem-main-card {

    max-width: 920px;

    margin: 45px auto 0;

    display: flex;
    align-items: center;

    gap: 30px;

    padding: 35px 40px;

    border-radius: 26px;

    background: var(--macaya-green-soft);

    border: 1px solid rgba(4, 93, 59, 0.08);

    box-shadow:
        0 15px 35px rgba(4, 93, 59, 0.07);
}


.anthem-symbol {

    flex-shrink: 0;
}


.anthem-symbol-icon {

    width: 90px;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 24px;

    color: white;

    background:
        linear-gradient(
            145deg,
            var(--macaya-green-dark),
            var(--macaya-green)
        );

    font-size: 2rem;

    box-shadow:
        0 12px 30px rgba(4, 93, 59, 0.18);
}


.anthem-main-content {

    flex: 1;
}


.anthem-small-title {

    display: inline-block;

    margin-bottom: 6px;

    color: var(--macaya-burgundy);

    font-size: 0.72rem;
    font-weight: 800;

    letter-spacing: 2px;
}


.anthem-main-content h2 {

    margin: 0 0 22px;

    color: var(--macaya-green-dark);

    font-size: 1.8rem;
    font-weight: 800;
}


/* =============================================================================================
                                        AUTORES
============================================================================================= */

.anthem-authors {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 16px;
}


.anthem-authors > div {

    display: grid;

    grid-template-columns: 42px 1fr;

    column-gap: 12px;

    align-items: center;

    padding: 14px 16px;

    border-radius: 14px;

    background: white;
}


.anthem-authors i {

    grid-row: 1 / 3;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: var(--macaya-green);

    background: var(--macaya-green-soft);
}


.anthem-authors span {

    color: var(--macaya-text-light);

    font-size: 0.72rem;
}


.anthem-authors strong {

    color: var(--macaya-green-dark);

    font-size: 0.88rem;
}


/* =============================================================================================
                                    REPRODUCTOR
============================================================================================= */

.anthem-player-section {

    padding: 0 0 80px;

    background: white;
}


.anthem-player-card {

    position: relative;

    overflow: hidden;

    max-width: 920px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 35px 40px;

    border-radius: 26px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--macaya-green-dark),
            var(--macaya-green)
        );

    box-shadow:
        0 18px 42px rgba(4, 93, 59, 0.18);
}


.anthem-player-decoration {

    position: absolute;

    right: -25px;
    top: -45px;

    color: rgba(255, 255, 255, 0.05);

    font-size: 10rem;

    transform: rotate(-12deg);

    pointer-events: none;
}


.anthem-player-heading {

    position: relative;

    z-index: 2;

    display: flex;
    align-items: center;

    gap: 18px;
}


.anthem-player-icon {

    width: 62px;
    height: 62px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.13);

    font-size: 1.4rem;
}


.anthem-player-heading span {

    color: rgba(255, 255, 255, 0.65);

    font-size: 0.7rem;
    font-weight: 800;

    letter-spacing: 2px;
}


.anthem-player-heading h2 {

    margin: 3px 0 1px;

    color: white;

    font-size: 1.45rem;
    font-weight: 800;
}


.anthem-player-heading p {

    margin: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 0.82rem;
}


.anthem-audio {

    position: relative;

    z-index: 2;

    flex: 1;

    max-width: 430px;
}


.anthem-audio audio {

    width: 100%;

    display: block;
}


/* =============================================================================================
                                LETRA DEL HIMNO
============================================================================================= */

/* =============================================================================================
                                LETRA DEL HIMNO
============================================================================================= */

.anthem-lyrics-section {

    background: var(--macaya-background);
}


/*
    Tarjeta general.
    Esta es la caja blanca grande que envuelve
    toda la letra del himno.
*/

.anthem-lyrics-wrapper {

    width: 100%;

    max-width: 760px;

    margin: 40px auto 0;

    padding: 42px 30px;

    background: #ffffff;

    border: 1px solid #d9dfdc;

    border-radius: 5px;

    box-shadow:
        0 2px 5px rgba(0, 0, 0, 0.05);

    text-align: center;
}


/* =============================================================================================
                                    ESTROFAS
============================================================================================= */

.anthem-lyric-block {

    width: 100%;

    max-width: 560px;

    margin: 0 auto;

    text-align: center;
}


/* Etiqueta Estrofa I / Estrofa II */

.anthem-verse-badge {

    display: inline-block;

    margin-bottom: 16px;

    padding: 3px 7px;

    border-radius: 4px;

    background: var(--macaya-green);

    color: #ffffff;

    font-size: 0.62rem;

    font-weight: 700;

    line-height: 1.2;
}


/* Texto normal de la estrofa */

.anthem-lyric-text {

    color: #56615c;

    font-size: 0.93rem;

    font-weight: 400;

    line-height: 1.85;

    text-align: center;
}


.anthem-lyric-text p {

    margin: 0 0 3px;
}


/* Última línea destacada */

.anthem-highlight-line {

    margin-top: 3px !important;

    color: #56615c;

    font-weight: 800;
}


/* =============================================================================================
                                LÍNEAS SEPARADORAS
============================================================================================= */

.anthem-divider {

    width: 235px;

    max-width: 65%;

    height: 1px;

    margin: 18px auto;

    background: #c5cbc8;
}


/* =============================================================================================
                                        CORO
============================================================================================= */

.anthem-chorus-box {

    width: 100%;

    max-width: 620px;

    margin: 0 auto;

    padding: 9px 20px 10px;

    background: #f7f8f8;

    border-left: 2px solid #00a65a;

    border-right: 2px solid #00a65a;

    border-top: 0;

    border-bottom: 0;

    border-radius: 4px;

    text-align: center;
}


/* Etiqueta Coro */

.anthem-chorus-badge {

    display: inline-block;

    margin-bottom: 7px;

    padding: 3px 7px;

    border-radius: 4px;

    background: #5215ff;

    color: #ffffff;

    font-size: 0.62rem;

    font-weight: 700;

    line-height: 1.2;
}


/* Letra del coro */

.anthem-chorus-lyrics {

    color: #22c900;

    font-size: 0.96rem;

    font-weight: 800;

    line-height: 1.75;

    text-align: center;
}


.anthem-chorus-lyrics p {

    margin: 0 0 2px;
}


/* =============================================================================================
                                    HIMNO - TABLET
============================================================================================= */

@media (max-width: 991px) {

    .anthem-lyrics-wrapper {

        max-width: 700px;

        padding: 40px 28px;
    }

}


/* =============================================================================================
                                    HIMNO - MOBILE
============================================================================================= */

@media (max-width: 767px) {

    .anthem-lyrics-wrapper {

        margin-top: 30px;

        padding: 32px 15px;

        border-radius: 5px;
    }


    .anthem-lyric-block {

        max-width: 100%;
    }


    .anthem-lyric-text {

        font-size: 0.86rem;

        line-height: 1.8;
    }


    .anthem-divider {

        width: 190px;

        margin: 18px auto;
    }


    .anthem-chorus-box {

        max-width: 100%;

        padding: 10px 12px;
    }


    .anthem-chorus-lyrics {

        font-size: 0.88rem;

        line-height: 1.7;
    }

}


/* =============================================================================================
                                    HIMNO MOBILE
============================================================================================= */

@media (max-width: 767px) {


    /* -----------------------------------------------------------------------------------------
                                            HERO
    ----------------------------------------------------------------------------------------- */

    .anthem-page-hero {

        background:

            linear-gradient(
                rgba(3, 70, 45, 0.88),
                rgba(3, 70, 45, 0.88)
            ),

            url("../img/himno/himno-hero.png");

        background-size: cover;

        background-position: center;
    }


    /* -----------------------------------------------------------------------------------------
                                    PRESENTACIÓN
    ----------------------------------------------------------------------------------------- */

    .anthem-main-card {

        flex-direction: column;

        align-items: flex-start;

        padding: 27px 22px;

        border-radius: 22px;
    }


    .anthem-symbol-icon {

        width: 70px;
        height: 70px;

        border-radius: 19px;

        font-size: 1.5rem;
    }


    .anthem-main-content {

        width: 100%;
    }


    .anthem-main-content h2 {

        font-size: 1.5rem;
    }


    .anthem-authors {

        width: 100%;

        grid-template-columns: 1fr;
    }


    /* -----------------------------------------------------------------------------------------
                                        REPRODUCTOR
    ----------------------------------------------------------------------------------------- */

    .anthem-player-section {

        padding-bottom: 60px;
    }


    .anthem-player-card {

        padding: 28px 22px;

        border-radius: 22px;
    }


    .anthem-player-heading {

        align-items: flex-start;
    }


    .anthem-player-icon {

        width: 54px;
        height: 54px;

        border-radius: 15px;
    }


    .anthem-player-heading h2 {

        font-size: 1.25rem;
    }


    /* -----------------------------------------------------------------------------------------
                                        LETRA
    ----------------------------------------------------------------------------------------- */

    .anthem-lyrics-wrapper {

        margin-top: 35px;

        padding: 35px 18px;

        border-radius: 8px;
    }


    .anthem-verse-badge {

        margin-bottom: 17px;
    }


    .anthem-lyric-text {

        font-size: 0.9rem;

        line-height: 1.75;
    }


    .anthem-divider {

        width: 65%;

        margin: 25px auto;
    }


    .anthem-chorus-box {

        padding: 20px 15px;
    }


    .anthem-chorus-lyrics {

        font-size: 0.93rem;

        line-height: 1.75;
    }


    /* -----------------------------------------------------------------------------------------
                                        CIERRE
    ----------------------------------------------------------------------------------------- */

    .anthem-closing-section {

        padding-bottom: 60px;
    }


    .anthem-closing-card {

        align-items: flex-start;

        padding: 28px 22px;

        border-radius: 22px;
    }


    .anthem-closing-icon {

        width: 55px;
        height: 55px;

        border-radius: 16px;

        font-size: 1.2rem;
    }


    .anthem-closing-card h2 {

        font-size: 1.4rem;
    }

}

/* =============================================================================================
                                CIERRE HIMNO
============================================================================================= */

.anthem-closing-section {

    padding: 70px 0 80px;

    background: #ffffff;
}


.anthem-closing-card {

    width: 100%;
    max-width: 920px;

    margin: 0 auto;

    display: flex;
    align-items: center;

    gap: 25px;

    padding: 38px 42px;

    border-radius: 24px;

    background: var(--macaya-green-soft);

    border: 1px solid rgba(4, 93, 59, 0.08);

    box-shadow:
        0 10px 30px rgba(4, 93, 59, 0.06);
}


.anthem-closing-icon {

    width: 68px;
    height: 68px;

    flex: 0 0 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: var(--macaya-burgundy);

    color: #ffffff;

    font-size: 1.45rem;

    box-shadow:
        0 10px 25px rgba(108, 0, 53, 0.16);
}


.anthem-closing-card > div:last-child {

    flex: 1;
}


.anthem-closing-card span {

    display: block;

    margin-bottom: 5px;

    color: var(--macaya-burgundy);

    font-size: 0.7rem;
    font-weight: 800;

    letter-spacing: 2px;
}


.anthem-closing-card h2 {

    margin: 0 0 8px;

    color: var(--macaya-green-dark);

    font-size: 1.7rem;
    font-weight: 800;

    line-height: 1.2;
}


.anthem-closing-card p {

    max-width: 680px;

    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.92rem;

    line-height: 1.7;
}

/* =============================================================================================
                                PÁGINA ÚTILES ESCOLARES
============================================================================================= */


/* =============================================================================================
                                        HERO
============================================================================================= */

.supplies-page-hero {

    background:

        linear-gradient(
            90deg,
            rgba(3, 70, 45, 0.96) 0%,
            rgba(4, 93, 59, 0.84) 48%,
            rgba(4, 93, 59, 0.38) 100%
        ),

        url("../img/utiles/utiles-hero.png");

    background-size: cover;

    background-position: center;
}



/* =============================================================================================
                                    INTRODUCCIÓN
============================================================================================= */

.supplies-intro-section {

    background: #ffffff;
}


/* =============================================================================================
                                AVISO INFORMATIVO
============================================================================================= */

.supplies-notice {

    max-width: 900px;

    margin: 40px auto 0;

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 22px 25px;

    border-radius: 18px;

    background: var(--macaya-green-soft);

    border: 1px solid rgba(4, 93, 59, 0.08);
}


.supplies-notice-icon {

    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 15px;

    color: var(--macaya-green);

    background: #ffffff;

    font-size: 1.15rem;

    box-shadow:
        0 7px 18px rgba(4, 93, 59, 0.08);
}


.supplies-notice strong {

    display: block;

    margin-bottom: 4px;

    color: var(--macaya-green-dark);

    font-size: 0.95rem;

    font-weight: 800;
}


.supplies-notice p {

    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.85rem;

    line-height: 1.65;
}



/* =============================================================================================
                                SECCIONES DE NIVELES
============================================================================================= */

.supplies-section {

    background: var(--macaya-background);
}


.supplies-basic-section {

    padding-top: 0;
}



/* =============================================================================================
                            ENCABEZADO DE CADA NIVEL
============================================================================================= */

.supplies-section-heading {

    display: flex;

    align-items: center;

    gap: 17px;

    margin-bottom: 32px;
}


.supplies-section-icon {

    width: 58px;
    height: 58px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 17px;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            var(--macaya-green-dark),
            var(--macaya-green)
        );

    font-size: 1.25rem;

    box-shadow:
        0 8px 22px rgba(4, 93, 59, 0.16);
}


.supplies-section-heading span {

    display: block;

    margin-bottom: 2px;

    color: var(--macaya-burgundy);

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 2px;
}


.supplies-section-heading h2 {

    margin: 0;

    color: var(--macaya-green-dark);

    font-size: 1.7rem;

    font-weight: 800;
}



/* =============================================================================================
                                    TARJETAS
============================================================================================= */

.supply-card {

    position: relative;

    height: 100%;

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 24px;

    overflow: hidden;

    border-radius: 20px;

    background: #ffffff;

    border: 1px solid var(--macaya-border);

    box-shadow:
        0 8px 24px rgba(4, 93, 59, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.supply-card:hover {

    transform: translateY(-5px);

    border-color: rgba(4, 93, 59, 0.16);

    box-shadow:
        0 16px 35px rgba(4, 93, 59, 0.10);
}


/* Pequeño detalle decorativo */

.supply-card::after {

    content: "";

    position: absolute;

    right: -35px;
    top: -45px;

    width: 110px;
    height: 110px;

    border-radius: 50%;

    background: rgba(4, 93, 59, 0.025);

    pointer-events: none;
}



/* =============================================================================================
                                ICONO TARJETA
============================================================================================= */

.supply-card-icon {

    width: 58px;
    height: 58px;

    flex: 0 0 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 16px;

    color: var(--macaya-green);

    background: var(--macaya-green-soft);

    font-size: 1.2rem;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.supply-card:hover .supply-card-icon {

    color: #ffffff;

    background: var(--macaya-green);

    transform: rotate(-4deg);
}



/* =============================================================================================
                                CONTENIDO TARJETA
============================================================================================= */

.supply-card-content {

    flex: 1;

    min-width: 0;
}


.supply-card-content > span {

    display: block;

    margin-bottom: 3px;

    color: var(--macaya-burgundy);

    font-size: 0.68rem;

    font-weight: 800;

    letter-spacing: 1.4px;
}


.supply-card-content h3 {

    margin: 0 0 5px;

    color: var(--macaya-green-dark);

    font-size: 1.1rem;

    font-weight: 800;
}


.supply-card-content p {

    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.8rem;

    line-height: 1.55;
}



/* =============================================================================================
                                BOTÓN PDF
============================================================================================= */

.supply-card-action {

    flex-shrink: 0;

    position: relative;

    z-index: 2;
}


.btn-supply {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 10px 14px;

    border-radius: 50px;

    color: #ffffff;

    background: var(--macaya-green);

    text-decoration: none;

    font-size: 0.78rem;

    font-weight: 700;

    white-space: nowrap;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.btn-supply:hover {

    color: #ffffff;

    background: var(--macaya-green-dark);

    transform: translateY(-2px);

    box-shadow:
        0 8px 18px rgba(4, 93, 59, 0.18);
}


.btn-supply i {

    font-size: 0.72rem;
}



/* =============================================================================================
                                BLOQUE FINAL / AYUDA
============================================================================================= */

.supplies-help-section {

    padding: 25px 0 80px;

    background: #ffffff;
}


.supplies-help-box {

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    padding: 42px 48px;

    border-radius: 26px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--macaya-green-dark),
            var(--macaya-green)
        );

    box-shadow:
        0 18px 40px rgba(4, 93, 59, 0.13);
}


.supplies-help-box::after {

    content: "";

    position: absolute;

    right: -90px;
    top: -110px;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.05);

    pointer-events: none;
}


.supplies-help-content {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 22px;
}


.supplies-help-icon {

    width: 64px;
    height: 64px;

    flex: 0 0 64px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.13);

    color: #ffffff;

    font-size: 1.4rem;
}


.supplies-help-content span {

    display: block;

    color: rgba(255, 255, 255, 0.65);

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 2px;
}


.supplies-help-content h2 {

    margin: 4px 0 6px;

    color: #ffffff;

    font-size: 1.7rem;

    font-weight: 800;
}


.supplies-help-content p {

    max-width: 650px;

    margin: 0;

    color: rgba(255, 255, 255, 0.78);

    font-size: 0.88rem;

    line-height: 1.65;
}


.supplies-help-box .btn-school-contact {

    position: relative;

    z-index: 2;

    flex-shrink: 0;
}



/* =============================================================================================
                                TABLET
============================================================================================= */

@media (max-width: 991px) {


    .supplies-notice {

        max-width: 760px;
    }


    .supply-card {

        flex-wrap: wrap;
    }


    .supply-card-content {

        min-width: 150px;
    }


    .supply-card-action {

        width: 100%;

        padding-left: 76px;
    }


    .btn-supply {

        width: 100%;
    }


    .supplies-help-box {

        flex-direction: column;

        align-items: flex-start;

        padding: 38px;
    }

}



/* =============================================================================================
                                MOBILE
============================================================================================= */

@media (max-width: 767px) {


    /* -----------------------------------------------------------------------------------------
                                        HERO
    ----------------------------------------------------------------------------------------- */

    .supplies-page-hero {

        background:

            linear-gradient(
                rgba(3, 70, 45, 0.88),
                rgba(3, 70, 45, 0.88)
            ),

            url("../img/utiles/utiles-hero.png");

        background-size: cover;

        background-position: center;
    }


    /* -----------------------------------------------------------------------------------------
                                AVISO INFORMATIVO
    ----------------------------------------------------------------------------------------- */

    .supplies-notice {

        align-items: flex-start;

        gap: 14px;

        padding: 19px 18px;

        border-radius: 16px;
    }


    .supplies-notice-icon {

        width: 46px;
        height: 46px;

        flex-basis: 46px;

        border-radius: 13px;
    }


    /* -----------------------------------------------------------------------------------------
                                TÍTULO NIVEL
    ----------------------------------------------------------------------------------------- */

    .supplies-section-heading {

        align-items: flex-start;

        margin-bottom: 25px;
    }


    .supplies-section-icon {

        width: 52px;
        height: 52px;

        flex-basis: 52px;

        border-radius: 15px;

        font-size: 1.1rem;
    }


    .supplies-section-heading h2 {

        font-size: 1.45rem;
    }


    /* -----------------------------------------------------------------------------------------
                                    TARJETAS
    ----------------------------------------------------------------------------------------- */

    .supply-card {

        align-items: flex-start;

        gap: 15px;

        padding: 20px;

        border-radius: 18px;
    }


    .supply-card-icon {

        width: 52px;
        height: 52px;

        flex-basis: 52px;

        border-radius: 14px;
    }


    .supply-card-content h3 {

        font-size: 1rem;
    }


    .supply-card-action {

        width: 100%;

        padding-left: 0;
    }


    .btn-supply {

        width: 100%;

        padding: 11px 15px;
    }


    /* -----------------------------------------------------------------------------------------
                                    CIERRE
    ----------------------------------------------------------------------------------------- */

    .supplies-help-section {

        padding-bottom: 60px;
    }


    .supplies-help-box {

        padding: 30px 23px;

        border-radius: 22px;
    }


    .supplies-help-content {

        align-items: flex-start;

        gap: 16px;
    }


    .supplies-help-icon {

        width: 54px;
        height: 54px;

        flex-basis: 54px;

        border-radius: 15px;

        font-size: 1.2rem;
    }


    .supplies-help-content h2 {

        font-size: 1.45rem;
    }


    .supplies-help-box .btn-school-contact {

        width: 100%;

        text-align: center;
    }

}

/* =============================================================================================
                                PÁGINA DOCUMENTOS OFICIALES
============================================================================================= */


/* =============================================================================================
                                        HERO
============================================================================================= */

.documents-page-hero {

    background:

        linear-gradient(
            90deg,
            rgba(3, 70, 45, 0.96) 0%,
            rgba(4, 93, 59, 0.84) 48%,
            rgba(4, 93, 59, 0.38) 100%
        ),

        url("../img/documentos/documentos-hero.png");

    background-size: cover;

    background-position: center;
}



/* =============================================================================================
                                    INTRODUCCIÓN
============================================================================================= */

.documents-intro-section {

    background: #ffffff;
}



/* =============================================================================================
                                    AVISO
============================================================================================= */

.documents-notice {

    max-width: 900px;

    margin: 40px auto 0;

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 22px 25px;

    border-radius: 18px;

    background: var(--macaya-green-soft);

    border: 1px solid rgba(4, 93, 59, 0.08);
}


.documents-notice-icon {

    width: 54px;
    height: 54px;

    flex: 0 0 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 15px;

    color: var(--macaya-burgundy);

    background: #ffffff;

    font-size: 1.25rem;

    box-shadow:
        0 7px 18px rgba(4, 93, 59, 0.08);
}


.documents-notice strong {

    display: block;

    margin-bottom: 4px;

    color: var(--macaya-green-dark);

    font-size: 0.95rem;

    font-weight: 800;
}


.documents-notice p {

    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.85rem;

    line-height: 1.65;
}



/* =============================================================================================
                                LISTADO DOCUMENTOS
============================================================================================= */

.official-documents-section {

    background: var(--macaya-background);
}



/* =============================================================================================
                                ENCABEZADO
============================================================================================= */

.documents-section-heading {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 35px;
}


.documents-section-icon {

    width: 62px;
    height: 62px;

    flex: 0 0 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            var(--macaya-green-dark),
            var(--macaya-green)
        );

    font-size: 1.3rem;

    box-shadow:
        0 9px 24px rgba(4, 93, 59, 0.16);
}


.documents-section-heading span {

    display: block;

    margin-bottom: 2px;

    color: var(--macaya-burgundy);

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 2px;
}


.documents-section-heading h2 {

    margin: 0 0 4px;

    color: var(--macaya-green-dark);

    font-size: 1.75rem;

    font-weight: 800;
}


.documents-section-heading p {

    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.86rem;
}



/* =============================================================================================
                                    TARJETA
============================================================================================= */

.official-document-card {

    position: relative;

    height: 100%;

    min-height: 245px;

    display: grid;

    grid-template-columns: 62px 1fr;

    grid-template-rows: 1fr auto;

    column-gap: 20px;

    padding: 27px;

    overflow: hidden;

    border-radius: 22px;

    background: #ffffff;

    border: 1px solid var(--macaya-border);

    box-shadow:
        0 8px 25px rgba(4, 93, 59, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.official-document-card:hover {

    transform: translateY(-6px);

    border-color: rgba(4, 93, 59, 0.18);

    box-shadow:
        0 18px 38px rgba(4, 93, 59, 0.10);
}


.official-document-card::after {

    content: "";

    position: absolute;

    right: -55px;
    top: -65px;

    width: 155px;
    height: 155px;

    border-radius: 50%;

    background: rgba(4, 93, 59, 0.025);

    pointer-events: none;
}



/* =============================================================================================
                                ICONO DOCUMENTO
============================================================================================= */

.official-document-icon {

    width: 62px;
    height: 62px;

    grid-column: 1;
    grid-row: 1;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 17px;

    color: var(--macaya-green);

    background: var(--macaya-green-soft);

    font-size: 1.3rem;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.official-document-card:hover .official-document-icon {

    color: #ffffff;

    background: var(--macaya-green);

    transform: rotate(-4deg);
}



/* =============================================================================================
                                CONTENIDO DOCUMENTO
============================================================================================= */

.official-document-content {

    grid-column: 2;
    grid-row: 1;

    position: relative;

    z-index: 2;
}


.official-document-content > span {

    display: block;

    margin-bottom: 5px;

    color: var(--macaya-burgundy);

    font-size: 0.68rem;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.official-document-content h3 {

    margin: 0 0 9px;

    color: var(--macaya-green-dark);

    font-size: 1.15rem;

    font-weight: 800;

    line-height: 1.35;
}


.official-document-content p {

    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.82rem;

    line-height: 1.65;
}



/* =============================================================================================
                                ACCIÓN / BOTÓN
============================================================================================= */

.official-document-action {

    grid-column: 1 / 3;
    grid-row: 2;

    display: flex;

    justify-content: flex-end;

    margin-top: 22px;

    padding-top: 18px;

    border-top: 1px solid var(--macaya-border);

    position: relative;

    z-index: 2;
}


.btn-official-document {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 10px 17px;

    border-radius: 50px;

    color: #ffffff;

    background: var(--macaya-green);

    text-decoration: none;

    font-size: 0.78rem;

    font-weight: 700;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.btn-official-document:hover {

    color: #ffffff;

    background: var(--macaya-green-dark);

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(4, 93, 59, 0.18);
}


.btn-official-document i {

    font-size: 0.72rem;
}



/* =============================================================================================
                                    AYUDA
============================================================================================= */

.documents-help-section {

    padding: 25px 0 80px;

    background: #ffffff;
}


.documents-help-box {

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 42px 48px;

    border-radius: 26px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--macaya-green-dark),
            var(--macaya-green)
        );

    box-shadow:
        0 18px 40px rgba(4, 93, 59, 0.13);
}


.documents-help-box::after {

    content: "";

    position: absolute;

    right: -90px;
    top: -110px;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.05);

    pointer-events: none;
}


.documents-help-content {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 22px;
}


.documents-help-icon {

    width: 64px;
    height: 64px;

    flex: 0 0 64px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.13);

    color: #ffffff;

    font-size: 1.4rem;
}


.documents-help-content span {

    display: block;

    color: rgba(255, 255, 255, 0.65);

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 2px;
}


.documents-help-content h2 {

    margin: 4px 0 6px;

    color: #ffffff;

    font-size: 1.7rem;

    font-weight: 800;
}


.documents-help-content p {

    max-width: 650px;

    margin: 0;

    color: rgba(255, 255, 255, 0.78);

    font-size: 0.88rem;

    line-height: 1.65;
}


.documents-help-box .btn-school-contact {

    position: relative;

    z-index: 2;

    flex-shrink: 0;
}



/* =============================================================================================
                                    TABLET
============================================================================================= */

@media (max-width: 991px) {


    .documents-notice {

        max-width: 760px;
    }


    .documents-help-box {

        flex-direction: column;

        align-items: flex-start;

        padding: 38px;
    }

}



/* =============================================================================================
                                    MOBILE
============================================================================================= */

@media (max-width: 767px) {


    /* -----------------------------------------------------------------------------------------
                                        HERO
    ----------------------------------------------------------------------------------------- */

    .documents-page-hero {

        background:

            linear-gradient(
                rgba(3, 70, 45, 0.88),
                rgba(3, 70, 45, 0.88)
            ),

            url("../img/documentos/documentos-hero.png");

        background-size: cover;

        background-position: center;
    }


    /* -----------------------------------------------------------------------------------------
                                        AVISO
    ----------------------------------------------------------------------------------------- */

    .documents-notice {

        align-items: flex-start;

        gap: 14px;

        padding: 19px 18px;

        border-radius: 16px;
    }


    .documents-notice-icon {

        width: 46px;
        height: 46px;

        flex-basis: 46px;

        border-radius: 13px;
    }


    /* -----------------------------------------------------------------------------------------
                                ENCABEZADO
    ----------------------------------------------------------------------------------------- */

    .documents-section-heading {

        align-items: flex-start;

        gap: 15px;

        margin-bottom: 27px;
    }


    .documents-section-icon {

        width: 52px;
        height: 52px;

        flex-basis: 52px;

        border-radius: 15px;

        font-size: 1.1rem;
    }


    .documents-section-heading h2 {

        font-size: 1.45rem;
    }


    /* -----------------------------------------------------------------------------------------
                                    TARJETAS
    ----------------------------------------------------------------------------------------- */

    .official-document-card {

        min-height: auto;

        grid-template-columns: 52px 1fr;

        column-gap: 15px;

        padding: 21px;

        border-radius: 18px;
    }


    .official-document-icon {

        width: 52px;
        height: 52px;

        border-radius: 14px;

        font-size: 1.1rem;
    }


    .official-document-content h3 {

        font-size: 1rem;
    }


    .official-document-content p {

        font-size: 0.79rem;
    }


    .official-document-action {

        justify-content: stretch;

        margin-top: 18px;

        padding-top: 16px;
    }


    .btn-official-document {

        width: 100%;

        padding: 11px 15px;
    }


    /* -----------------------------------------------------------------------------------------
                                    AYUDA
    ----------------------------------------------------------------------------------------- */

    .documents-help-section {

        padding-bottom: 60px;
    }


    .documents-help-box {

        padding: 30px 23px;

        border-radius: 22px;
    }


    .documents-help-content {

        align-items: flex-start;

        gap: 16px;
    }


    .documents-help-icon {

        width: 54px;
        height: 54px;

        flex-basis: 54px;

        border-radius: 15px;

        font-size: 1.2rem;
    }


    .documents-help-content h2 {

        font-size: 1.45rem;
    }


    .documents-help-box .btn-school-contact {

        width: 100%;

        text-align: center;
    }

}

/* =============================================================================================
                                PÁGINA ANUARIO
============================================================================================= */


/* =============================================================================================
                                        HERO
============================================================================================= */

.yearbook-page-hero {

    background-size: cover;

    background-position: center;
}


/* =============================================================================================
                                    INTRODUCCIÓN
============================================================================================= */

.yearbook-intro-section {

    background: #ffffff;
}


/* =============================================================================================
                                TARJETA INTRODUCTORIA
============================================================================================= */

.yearbook-highlight {

    max-width: 900px;

    margin: 42px auto 0;

    display: flex;

    align-items: center;

    gap: 22px;

    padding: 28px 32px;

    border-radius: 22px;

    background: var(--macaya-green-soft);

    border: 1px solid rgba(4, 93, 59, 0.08);

    box-shadow:
        0 12px 30px rgba(4, 93, 59, 0.06);
}


.yearbook-highlight-icon {

    width: 68px;
    height: 68px;

    flex: 0 0 68px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 19px;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            var(--macaya-green-dark),
            var(--macaya-green)
        );

    font-size: 1.5rem;

    box-shadow:
        0 10px 25px rgba(4, 93, 59, 0.16);
}


.yearbook-highlight span {

    display: block;

    margin-bottom: 4px;

    color: var(--macaya-burgundy);

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 2px;
}


.yearbook-highlight h3 {

    margin: 0 0 7px;

    color: var(--macaya-green-dark);

    font-size: 1.35rem;

    font-weight: 800;
}


.yearbook-highlight p {

    max-width: 680px;

    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.88rem;

    line-height: 1.7;
}


/* =============================================================================================
                                SECCIÓN VISOR
============================================================================================= */

.yearbook-viewer-section {

    background: var(--macaya-background);
}


/* =============================================================================================
                                TARJETA DEL ANUARIO
============================================================================================= */

.yearbook-viewer-card {

    max-width: 1150px;

    margin: 0 auto;

    overflow: hidden;

    border-radius: 28px;

    background: #ffffff;

    border: 1px solid var(--macaya-border);

    box-shadow:
        0 18px 45px rgba(4, 93, 59, 0.09);
}


/* =============================================================================================
                                CABECERA
============================================================================================= */

.yearbook-viewer-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 28px 32px;

    border-bottom: 1px solid var(--macaya-border);
}


.yearbook-viewer-heading {

    display: flex;

    align-items: center;

    gap: 18px;
}


.yearbook-viewer-icon {

    width: 62px;
    height: 62px;

    flex: 0 0 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    color: #ffffff;

    background: var(--macaya-burgundy);

    font-size: 1.3rem;

    box-shadow:
        0 9px 24px rgba(108, 0, 53, 0.16);
}


.yearbook-viewer-heading span {

    display: block;
    margin-bottom: 3px;
    color: var(--macaya-burgundy);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1.8px;
}


.yearbook-viewer-heading h2 {

    margin: 0 0 3px;

    color: var(--macaya-green-dark);

    font-size: 1.45rem;

    font-weight: 800;
}


.yearbook-viewer-heading p {

    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.82rem;
}


/* =============================================================================================
                                BOTÓN PANTALLA COMPLETA
============================================================================================= */

.btn-yearbook {

    flex-shrink: 0;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 11px 18px;

    border-radius: 50px;

    color: #ffffff;

    background: var(--macaya-green);

    text-decoration: none;

    font-size: 0.8rem;

    font-weight: 700;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.btn-yearbook:hover {

    color: #ffffff;

    background: var(--macaya-green-dark);

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(4, 93, 59, 0.18);
}


/* =============================================================================================
                                VISOR GOOGLE SLIDES
============================================================================================= */

.yearbook-viewer {

    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #e9eeeb;
}


.yearbook-viewer iframe {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}


/* =============================================================================================
                                PIE DEL VISOR
============================================================================================= */

.yearbook-viewer-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 18px 30px;

    background: #ffffff;

    border-top: 1px solid var(--macaya-border);
}


.yearbook-viewer-footer > div {

    display: flex;

    align-items: center;

    gap: 10px;
}


.yearbook-viewer-footer > div i {

    color: var(--macaya-green);
}


.yearbook-viewer-footer > div span {

    color: var(--macaya-text-light);

    font-size: 0.8rem;
}


.yearbook-status {

    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 7px 11px;

    border-radius: 50px;

    color: var(--macaya-green-dark);

    background: var(--macaya-green-soft);

    font-size: 0.72rem;

    font-weight: 800;
}


.yearbook-status i {

    color: var(--macaya-green);

    font-size: 0.48rem;
}


/* =============================================================================================
                                    CIERRE
============================================================================================= */

.yearbook-closing-section {

    padding: 25px 0 80px;

    background: #ffffff;
}


.yearbook-closing-box {

    max-width: 1000px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    gap: 24px;

    padding: 38px 42px;

    border-radius: 26px;

    background: var(--macaya-green-soft);

    border: 1px solid rgba(4, 93, 59, 0.08);

    box-shadow:
        0 10px 30px rgba(4, 93, 59, 0.05);
}


.yearbook-closing-icon {

    width: 68px;
    height: 68px;

    flex: 0 0 68px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 19px;

    color: #ffffff;

    background: var(--macaya-burgundy);

    font-size: 1.4rem;

    box-shadow:
        0 10px 25px rgba(108, 0, 53, 0.16);
}


.yearbook-closing-box span {

    display: block;

    margin-bottom: 4px;

    color: var(--macaya-burgundy);

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 2px;
}


.yearbook-closing-box h2 {

    margin: 0 0 7px;

    color: var(--macaya-green-dark);

    font-size: 1.7rem;

    font-weight: 800;
}


.yearbook-closing-box p {

    max-width: 690px;

    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.9rem;

    line-height: 1.7;
}


/* =============================================================================================
                                    TABLET
============================================================================================= */

@media (max-width: 991px) {


/* =============================================================================================
                            FLECHAS DROPDOWN NAVBAR MOBILE
============================================================================================= */

.navbar-nav .dropdown-toggle {

    width: 100%;

    display: flex !important;

    align-items: center;

    justify-content: space-between;

    gap: 15px;
}


/* Recuperamos la flecha de Bootstrap */

.navbar-nav .dropdown-toggle::after {

    display: inline-block !important;

    content: "";

    margin-left: auto;

    vertical-align: middle;

    border-top: 0.36em solid var(--macaya-green-dark);

    border-right: 0.36em solid transparent;

    border-bottom: 0;

    border-left: 0.36em solid transparent;

    transition: transform 0.25s ease;
}

/* Cuando el dropdown está abierto */

.navbar-nav .dropdown-toggle.show::after {

    transform: rotate(180deg);
}

    .yearbook-highlight {

        max-width: 760px;
    }


    .yearbook-viewer-header {

        flex-direction: column;

        align-items: flex-start;
    }


    .btn-yearbook {

        width: 100%;
    }


    .yearbook-closing-box {

        padding: 34px;
    }

}


/* =============================================================================================
                                    MOBILE
============================================================================================= */

@media (max-width: 767px) {


    /* -----------------------------------------------------------------------------------------
                                        HERO
    ----------------------------------------------------------------------------------------- */

    .yearbook-page-hero {

        background:
            linear-gradient(
                rgba(3, 70, 45, 0.88),
                rgba(3, 70, 45, 0.88)
            ),
            var(--yearbook-hero);

        background-size: cover;

        background-position: center;
    }


    /* -----------------------------------------------------------------------------------------
                                INTRODUCCIÓN
    ----------------------------------------------------------------------------------------- */

    .yearbook-highlight {

        align-items: flex-start;

        gap: 16px;

        padding: 24px 20px;

        border-radius: 20px;
    }


    .yearbook-highlight-icon {

        width: 54px;
        height: 54px;

        flex-basis: 54px;

        border-radius: 15px;

        font-size: 1.2rem;
    }


    .yearbook-highlight h3 {

        font-size: 1.15rem;
    }


    /* -----------------------------------------------------------------------------------------
                                    VISOR
    ----------------------------------------------------------------------------------------- */

    .yearbook-viewer-card {

        border-radius: 20px;
    }


    .yearbook-viewer-header {

        gap: 20px;

        padding: 22px 18px;
    }


    .yearbook-viewer-heading {

        align-items: flex-start;

        gap: 14px;
    }


    .yearbook-viewer-icon {

        width: 52px;
        height: 52px;

        flex-basis: 52px;

        border-radius: 15px;

        font-size: 1.1rem;
    }


    .yearbook-viewer-heading h2 {

        font-size: 1.15rem;
    }


    .yearbook-viewer {

        aspect-ratio: 16 / 10;
    }


    .yearbook-viewer-footer {

        align-items: flex-start;

        padding: 17px 18px;
    }


    .yearbook-viewer-footer > div {

        align-items: flex-start;
    }


    .yearbook-status {

        display: none;
    }


    /* -----------------------------------------------------------------------------------------
                                    CIERRE
    ----------------------------------------------------------------------------------------- */

    .yearbook-closing-section {

        padding-bottom: 60px;
    }


    .yearbook-closing-box {

        align-items: flex-start;

        gap: 17px;

        padding: 28px 22px;

        border-radius: 21px;
    }


    .yearbook-closing-icon {

        width: 54px;
        height: 54px;

        flex-basis: 54px;

        border-radius: 15px;

        font-size: 1.15rem;
    }


    .yearbook-closing-box h2 {

        font-size: 1.4rem;
    }

}

/* =============================================================================================
                            PÁGINA CUENTA PÚBLICA
============================================================================================= */


/* =============================================================================================
                                        HERO
============================================================================================= */

.public-account-page-hero {

    background:
        linear-gradient(
            90deg,
            rgba(3, 70, 45, 0.96) 0%,
            rgba(4, 93, 59, 0.83) 48%,
            rgba(4, 93, 59, 0.35) 100%
        ),
        url("../img/cuenta-publica/cuenta-publica-hero.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



/* =============================================================================================
                                    INTRODUCCIÓN
============================================================================================= */

.public-account-intro-section {

    background: #ffffff;
}



/* =============================================================================================
                                ÁREAS DESTACADAS
============================================================================================= */

.public-account-feature {

    height: 100%;

    padding: 30px 26px;

    text-align: center;

    border-radius: 22px;

    background: var(--macaya-green-soft);

    border: 1px solid rgba(4, 93, 59, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.public-account-feature:hover {

    background: #ffffff;

    transform: translateY(-6px);

    box-shadow:
        0 16px 38px rgba(4, 93, 59, 0.09);
}


.public-account-feature-icon {

    width: 64px;
    height: 64px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            var(--macaya-green-dark),
            var(--macaya-green)
        );

    font-size: 1.35rem;

    box-shadow:
        0 9px 24px rgba(4, 93, 59, 0.15);
}


.public-account-feature > span {

    display: block;

    margin-bottom: 6px;

    color: var(--macaya-burgundy);

    font-size: 0.68rem;

    font-weight: 800;

    letter-spacing: 1.7px;
}


.public-account-feature h3 {

    margin: 0 0 10px;

    color: var(--macaya-green-dark);

    font-size: 1.2rem;

    font-weight: 800;
}


.public-account-feature p {

    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.85rem;

    line-height: 1.7;
}



/* =============================================================================================
                                DOCUMENTO CUENTA PÚBLICA
============================================================================================= */

.public-account-document-section {

    background: var(--macaya-background);
}


.public-account-document-card {

    max-width: 1120px;

    margin: 45px auto 0;

    overflow: hidden;

    border-radius: 28px;

    background: #ffffff;

    border: 1px solid var(--macaya-border);

    box-shadow:
        0 18px 45px rgba(4, 93, 59, 0.09);
}



/* =============================================================================================
                                CABECERA DOCUMENTO
============================================================================================= */

.public-account-document-header {

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 28px 32px;

    border-bottom: 1px solid var(--macaya-border);
}


.public-account-document-heading {

    display: flex;

    align-items: center;

    gap: 18px;
}


.public-account-document-icon {

    width: 64px;
    height: 64px;

    flex: 0 0 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    color: #ffffff;

    background: var(--macaya-burgundy);

    font-size: 1.4rem;

    box-shadow:
        0 9px 24px rgba(108, 0, 53, 0.16);
}


.public-account-document-heading span {

    display: block;

    margin-bottom: 3px;

    color: var(--macaya-burgundy);

    font-size: 0.68rem;

    font-weight: 800;

    letter-spacing: 1.8px;
}


.public-account-document-heading h3 {

    margin: 0 0 3px;

    color: var(--macaya-green-dark);

    font-size: 1.4rem;

    font-weight: 800;
}


.public-account-document-heading p {

    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.82rem;
}



/* =============================================================================================
                                BOTONES DOCUMENTO
============================================================================================= */

.public-account-document-actions {

    display: flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}


.btn-public-account-outline,
.btn-public-account-primary {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 11px 17px;

    border-radius: 50px;

    text-decoration: none;

    font-size: 0.78rem;

    font-weight: 700;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.btn-public-account-outline {

    color: var(--macaya-green);

    background: #ffffff;

    border: 1px solid var(--macaya-green);
}


.btn-public-account-outline:hover {

    color: #ffffff;

    background: var(--macaya-green);

    transform: translateY(-2px);
}


.btn-public-account-primary {

    color: #ffffff;

    background: var(--macaya-green);

    border: 1px solid var(--macaya-green);
}


.btn-public-account-primary:hover {

    color: #ffffff;

    background: var(--macaya-green-dark);

    border-color: var(--macaya-green-dark);

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(4, 93, 59, 0.18);
}



/* =============================================================================================
                                    VISOR PDF
============================================================================================= */

.public-account-pdf-viewer {

    width: 100%;

    height: 760px;

    background: #edf1ef;
}


.public-account-pdf-viewer iframe {

    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}



/* =============================================================================================
                                PIE DOCUMENTO
============================================================================================= */

.public-account-document-footer {

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 18px 30px;

    background: #ffffff;

    border-top: 1px solid var(--macaya-border);
}


.public-account-document-footer > div {

    display: flex;

    align-items: center;

    gap: 10px;
}


.public-account-document-footer > div i {

    color: var(--macaya-green);
}


.public-account-document-footer > div span {

    color: var(--macaya-text-light);

    font-size: 0.8rem;
}


.public-account-pdf-label {

    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 7px 11px;

    border-radius: 50px;

    color: var(--macaya-burgundy);

    background: rgba(108, 0, 53, 0.06);

    font-size: 0.72rem;

    font-weight: 800;
}



/* =============================================================================================
                                TRANSPARENCIA
============================================================================================= */

.public-account-transparency-section {

    background: #ffffff;
}


.public-account-values {

    display: flex;

    flex-direction: column;

    gap: 15px;
}


.public-account-value {

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 24px;

    border-radius: 20px;

    background: var(--macaya-green-soft);

    border: 1px solid rgba(4, 93, 59, 0.07);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


.public-account-value:hover {

    background: #ffffff;

    transform: translateX(5px);

    box-shadow:
        0 12px 28px rgba(4, 93, 59, 0.08);
}


.public-account-value > span {

    width: 56px;
    height: 56px;

    flex: 0 0 56px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 16px;

    color: var(--macaya-burgundy);

    background: #ffffff;

    font-size: 1rem;

    font-weight: 800;

    box-shadow:
        0 8px 20px rgba(4, 93, 59, 0.08);
}


.public-account-value h3 {

    margin: 0 0 5px;

    color: var(--macaya-green-dark);

    font-size: 1rem;

    font-weight: 800;
}


.public-account-value p {

    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.86rem;

    line-height: 1.65;
}



/* =============================================================================================
                                    CIERRE
============================================================================================= */

.public-account-closing-section {

    padding: 25px 0 80px;

    background: #ffffff;
}


.public-account-closing-box {

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 44px 48px;

    border-radius: 28px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--macaya-green-dark),
            var(--macaya-green)
        );

    box-shadow:
        0 18px 40px rgba(4, 93, 59, 0.13);
}


.public-account-closing-box::after {

    content: "";

    position: absolute;

    right: -90px;
    top: -110px;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.05);

    pointer-events: none;
}


.public-account-closing-content {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 22px;
}


.public-account-closing-icon {

    width: 66px;
    height: 66px;

    flex: 0 0 66px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.13);

    color: #ffffff;

    font-size: 1.45rem;
}


.public-account-closing-content span {

    display: block;

    color: rgba(255, 255, 255, 0.65);

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 2px;
}


.public-account-closing-content h2 {

    margin: 5px 0 7px;

    color: #ffffff;

    font-size: 1.75rem;

    font-weight: 800;
}


.public-account-closing-content p {

    max-width: 670px;

    margin: 0;

    color: rgba(255, 255, 255, 0.78);

    font-size: 0.88rem;

    line-height: 1.65;
}


.public-account-closing-box .btn-school-contact {

    position: relative;

    z-index: 2;

    flex-shrink: 0;
}



/* =============================================================================================
                                    TABLET
============================================================================================= */

@media (max-width: 991px) {


    .public-account-document-header {

        flex-direction: column;

        align-items: flex-start;
    }


    .public-account-document-actions {

        width: 100%;
    }


    .btn-public-account-outline,
    .btn-public-account-primary {

        flex: 1;
    }


    .public-account-pdf-viewer {

        height: 620px;
    }


    .public-account-closing-box {

        flex-direction: column;

        align-items: flex-start;

        padding: 38px;
    }

}



/* =============================================================================================
                                    MOBILE
============================================================================================= */

@media (max-width: 767px) {


    /* -----------------------------------------------------------------------------------------
                                        HERO
    ----------------------------------------------------------------------------------------- */

    .public-account-page-hero {

        background:
            linear-gradient(
                rgba(3, 70, 45, 0.88),
                rgba(3, 70, 45, 0.88)
            ),
            url("../img/cuenta-publica/cuenta-publica-hero.png");

        background-size: cover;

        background-position: center;
    }


    /* -----------------------------------------------------------------------------------------
                                ÁREAS DESTACADAS
    ----------------------------------------------------------------------------------------- */

    .public-account-feature {

        padding: 26px 21px;
    }


    .public-account-feature-icon {

        width: 57px;
        height: 57px;

        border-radius: 16px;

        font-size: 1.2rem;
    }


    /* -----------------------------------------------------------------------------------------
                                    DOCUMENTO
    ----------------------------------------------------------------------------------------- */

    .public-account-document-card {

        margin-top: 35px;

        border-radius: 20px;
    }


    .public-account-document-header {

        padding: 22px 18px;

        gap: 20px;
    }


    .public-account-document-heading {

        align-items: flex-start;

        gap: 14px;
    }


    .public-account-document-icon {

        width: 52px;
        height: 52px;

        flex-basis: 52px;

        border-radius: 15px;

        font-size: 1.15rem;
    }


    .public-account-document-heading h3 {

        font-size: 1.1rem;
    }


    .public-account-document-actions {

        flex-direction: column;
    }


    .btn-public-account-outline,
    .btn-public-account-primary {

        width: 100%;
    }


    .public-account-pdf-viewer {

        height: 500px;
    }


    .public-account-document-footer {

        align-items: flex-start;

        padding: 17px 18px;
    }


    .public-account-document-footer > div {

        align-items: flex-start;
    }


    .public-account-pdf-label {

        display: none;
    }


    /* -----------------------------------------------------------------------------------------
                                TRANSPARENCIA
    ----------------------------------------------------------------------------------------- */

    .public-account-value {

        align-items: flex-start;

        gap: 15px;

        padding: 20px;
    }


    .public-account-value > span {

        width: 48px;
        height: 48px;

        flex-basis: 48px;

        border-radius: 14px;
    }


    /* -----------------------------------------------------------------------------------------
                                    CIERRE
    ----------------------------------------------------------------------------------------- */

    .public-account-closing-section {

        padding-bottom: 60px;
    }


    .public-account-closing-box {

        padding: 30px 23px;

        border-radius: 22px;
    }


    .public-account-closing-content {

        align-items: flex-start;

        gap: 16px;
    }


    .public-account-closing-icon {

        width: 54px;
        height: 54px;

        flex-basis: 54px;

        border-radius: 15px;

        font-size: 1.2rem;
    }


    .public-account-closing-content h2 {

        font-size: 1.45rem;
    }


    .public-account-closing-box .btn-school-contact {

        width: 100%;

        text-align: center;
    }

}

/* =============================================================================================
                                PÁGINA EQUIPO DIRECTIVO
============================================================================================= */


/* =============================================================================================
                                        HERO
============================================================================================= */

.directors-page-hero {

    background:
        linear-gradient(
            90deg,
            rgba(3, 70, 45, 0.96) 0%,
            rgba(4, 93, 59, 0.84) 48%,
            rgba(4, 93, 59, 0.36) 100%
        ),
        url("../img/directivos/directivos-hero.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



/* =============================================================================================
                                    INTRODUCCIÓN
============================================================================================= */

.directors-intro-section {

    background: #ffffff;
}



/* =============================================================================================
                                DIRECTOR DESTACADO
============================================================================================= */

.director-featured-section {

    padding: 0 0 90px;

    background: #ffffff;
}


.director-featured-card {

    position: relative;

    max-width: 1050px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 380px 1fr;

    overflow: hidden;

    border-radius: 28px;

    background: var(--macaya-green-soft);

    border: 1px solid rgba(4, 93, 59, 0.08);

    box-shadow:
        0 18px 45px rgba(4, 93, 59, 0.10);
}



/* =============================================================================================
                            FOTO DIRECTOR DESTACADO
============================================================================================= */

.director-featured-image {

    position: relative;

    min-height: 430px;

    overflow: hidden;
}


.director-featured-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            transparent 65%,
            rgba(237, 245, 240, 0.85) 100%
        );

    pointer-events: none;
}


.director-featured-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center top;
}



/* =============================================================================================
                            INFORMACIÓN DIRECTOR DESTACADO
============================================================================================= */

.director-featured-content {

    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 48px 50px;
}


.director-featured-label {

    display: inline-block;

    width: fit-content;

    margin-bottom: 10px;

    color: var(--macaya-burgundy);

    font-size: 0.72rem;

    font-weight: 800;

    letter-spacing: 2px;
}


.director-featured-content h2 {

    margin: 0 0 3px;

    color: var(--macaya-green-dark);

    font-size: clamp(2rem, 4vw, 2.8rem);

    font-weight: 800;

    letter-spacing: -0.5px;
}


.director-featured-content h3 {

    margin: 0;

    color: var(--macaya-green);

    font-size: 1.1rem;

    font-weight: 700;
}


.director-featured-line {

    width: 60px;
    height: 4px;

    margin: 20px 0;

    border-radius: 20px;

    background: var(--macaya-burgundy);
}


.director-featured-content > p {

    max-width: 550px;

    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.92rem;

    line-height: 1.8;
}



/* =============================================================================================
                                BADGE COLEGIO
============================================================================================= */

.director-featured-badge {

    width: fit-content;

    margin-top: 25px;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 9px 14px;

    border-radius: 50px;

    color: var(--macaya-green-dark);

    background: #ffffff;

    font-size: 0.76rem;

    font-weight: 700;

    box-shadow:
        0 7px 20px rgba(4, 93, 59, 0.07);
}


.director-featured-badge i {

    color: var(--macaya-burgundy);
}



/* =============================================================================================
                            DECORACIÓN DIRECTOR
============================================================================================= */

.director-featured-decoration {

    position: absolute;

    right: 35px;
    top: 30px;

    color: rgba(4, 93, 59, 0.05);

    font-size: 5.5rem;

    pointer-events: none;
}



/* =============================================================================================
                                EQUIPO DIRECTIVO
============================================================================================= */

.directors-team-section {

    background: var(--macaya-background);
}



/* =============================================================================================
                                TARJETAS DIRECTIVOS
============================================================================================= */

.director-card {

    height: 100%;

    overflow: hidden;

    border-radius: 24px;

    background: #ffffff;

    border: 1px solid var(--macaya-border);

    box-shadow:
        0 8px 28px rgba(4, 93, 59, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.director-card:hover {

    transform: translateY(-7px);

    border-color: rgba(4, 93, 59, 0.16);

    box-shadow:
        0 18px 40px rgba(4, 93, 59, 0.11);
}



/* =============================================================================================
                                FOTO TARJETA
============================================================================================= */

.director-card-image {

    position: relative;

    height: 330px;

    overflow: hidden;

    background: var(--macaya-green-soft);
}


.director-card-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 65%,
            rgba(3, 70, 45, 0.15) 100%
        );

    pointer-events: none;
}


.director-card-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center top;

    transition: transform 0.45s ease;
}


.director-card:hover .director-card-image img {

    transform: scale(1.04);
}



/* =============================================================================================
                                INFORMACIÓN TARJETA
============================================================================================= */

.director-card-content {

    position: relative;

    padding: 25px 25px 28px;

    text-align: center;
}


.director-card-content::before {

    content: "";

    position: absolute;

    left: 50%;
    top: 0;

    width: 42px;
    height: 4px;

    border-radius: 50px;

    background: var(--macaya-burgundy);

    transform: translate(-50%, -50%);
}


.director-card-content > span {

    display: block;

    margin-bottom: 7px;

    color: var(--macaya-burgundy);

    font-size: 0.65rem;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.director-card-content h3 {

    margin: 0 0 5px;

    color: var(--macaya-green-dark);

    font-size: 1.2rem;

    font-weight: 800;
}


.director-card-content p {

    min-height: 24px;

    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.85rem;

    line-height: 1.55;
}



/* =============================================================================================
                                    CIERRE
============================================================================================= */

.directors-closing-section {

    padding: 25px 0 80px;

    background: #ffffff;
}


.directors-closing-box {

    max-width: 1000px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    gap: 25px;

    padding: 38px 42px;

    border-radius: 26px;

    background: var(--macaya-green-soft);

    border: 1px solid rgba(4, 93, 59, 0.08);

    box-shadow:
        0 10px 30px rgba(4, 93, 59, 0.05);
}


.directors-closing-icon {

    width: 70px;
    height: 70px;

    flex: 0 0 70px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 20px;

    color: #ffffff;

    background: var(--macaya-burgundy);

    font-size: 1.45rem;

    box-shadow:
        0 10px 25px rgba(108, 0, 53, 0.16);
}


.directors-closing-box span {

    display: block;

    margin-bottom: 4px;

    color: var(--macaya-burgundy);

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 2px;
}


.directors-closing-box h2 {

    margin: 0 0 7px;

    color: var(--macaya-green-dark);

    font-size: 1.65rem;

    font-weight: 800;
}


.directors-closing-box p {

    max-width: 700px;

    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.9rem;

    line-height: 1.7;
}



/* =============================================================================================
                                    TABLET
============================================================================================= */

@media (max-width: 991px) {


    /* -----------------------------------------------------------------------------------------
                                DIRECTOR DESTACADO
    ----------------------------------------------------------------------------------------- */

    .director-featured-card {

        grid-template-columns: 320px 1fr;
    }


    .director-featured-image {

        min-height: 390px;
    }


    .director-featured-content {

        padding: 38px 35px;
    }


    .director-featured-content h2 {

        font-size: 2rem;
    }


    /* -----------------------------------------------------------------------------------------
                                    TARJETAS
    ----------------------------------------------------------------------------------------- */

    .director-card-image {

        height: 360px;
    }

}



/* =============================================================================================
                                    MOBILE
============================================================================================= */

@media (max-width: 767px) {


    /* -----------------------------------------------------------------------------------------
                                        HERO
    ----------------------------------------------------------------------------------------- */

    .directors-page-hero {

        background:
            linear-gradient(
                rgba(3, 70, 45, 0.88),
                rgba(3, 70, 45, 0.88)
            ),
            url("../img/directivos/directivos-hero.png");

        background-size: cover;

        background-position: center;
    }


    /* -----------------------------------------------------------------------------------------
                                DIRECTOR DESTACADO
    ----------------------------------------------------------------------------------------- */

    .director-featured-section {

        padding-bottom: 65px;
    }


    .director-featured-card {

        display: block;

        border-radius: 22px;
    }


    .director-featured-image {

        height: 330px;

        min-height: 0;
    }


    .director-featured-image::after {

        background:
            linear-gradient(
                180deg,
                transparent 65%,
                rgba(237, 245, 240, 0.88) 100%
            );
    }


    .director-featured-content {

        padding: 30px 24px;
    }


    .director-featured-content h2 {

        font-size: 1.8rem;
    }


    .director-featured-content h3 {

        font-size: 1rem;
    }


    .director-featured-content > p {

        font-size: 0.87rem;
    }


    .director-featured-decoration {

        display: none;
    }


    /* -----------------------------------------------------------------------------------------
                                    TARJETAS
    ----------------------------------------------------------------------------------------- */

    .director-card {

        border-radius: 20px;
    }


    .director-card-image {

        height: 340px;
    }


    .director-card-content {

        padding: 24px 20px 26px;
    }


    .director-card-content h3 {

        font-size: 1.1rem;
    }


    /* -----------------------------------------------------------------------------------------
                                    CIERRE
    ----------------------------------------------------------------------------------------- */

    .directors-closing-section {

        padding-bottom: 60px;
    }


    .directors-closing-box {

        align-items: flex-start;

        gap: 17px;

        padding: 28px 22px;

        border-radius: 21px;
    }


    .directors-closing-icon {

        width: 55px;
        height: 55px;

        flex-basis: 55px;

        border-radius: 16px;

        font-size: 1.2rem;
    }


    .directors-closing-box h2 {

        font-size: 1.35rem;
    }


    .directors-closing-box p {

        font-size: 0.85rem;
    }

}



/* =============================================================================================
                                MOBILE PEQUEÑO
============================================================================================= */

@media (max-width: 480px) {


    .director-featured-image {

        height: 290px;
    }


    .director-card-image {

        height: 315px;
    }

}

/* =============================================================================================
                                PÁGINA DOCENTES JEFES
============================================================================================= */


/* =============================================================================================
                                        HERO
============================================================================================= */

.head-teachers-page-hero {

    background:
        linear-gradient(
            90deg,
            rgba(3, 70, 45, 0.96) 0%,
            rgba(4, 93, 59, 0.84) 48%,
            rgba(4, 93, 59, 0.36) 100%
        ),
        url("../img/docentes/docentes-jefes-hero.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* =============================================================================================
                                    INTRODUCCIÓN
============================================================================================= */

.head-teachers-intro-section {

    background: #ffffff;
}


/* =============================================================================================
                                SECCIONES GENERALES
============================================================================================= */

.head-teachers-section {

    background: var(--macaya-background);
}


.head-teachers-basic-section {

    background: #ffffff;
}


/* =============================================================================================
                                ENCABEZADO DE NIVEL
============================================================================================= */

.head-teachers-section-heading {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 36px;
}


.head-teachers-section-icon {

    width: 62px;
    height: 62px;

    flex: 0 0 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            var(--macaya-green-dark),
            var(--macaya-green)
        );

    font-size: 1.3rem;

    box-shadow:
        0 9px 24px rgba(4, 93, 59, 0.16);
}


.head-teachers-section-heading span {

    display: block;

    margin-bottom: 2px;

    color: var(--macaya-burgundy);

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 2px;
}


.head-teachers-section-heading h2 {

    margin: 0 0 4px;

    color: var(--macaya-green-dark);

    font-size: 1.75rem;

    font-weight: 800;
}


.head-teachers-section-heading p {

    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.86rem;

    line-height: 1.6;
}


/* =============================================================================================
                                CICLOS
============================================================================================= */

.head-teachers-cycle {

    margin-top: 20px;
}


.head-teachers-cycle-second {

    margin-top: 70px;
}


.head-teachers-cycle-heading {

    margin-bottom: 28px;

    padding-bottom: 14px;

    border-bottom: 1px solid var(--macaya-border);
}


.head-teachers-cycle-heading span {

    display: block;

    margin-bottom: 3px;

    color: var(--macaya-burgundy);

    font-size: 0.68rem;

    font-weight: 800;

    letter-spacing: 1.7px;
}


.head-teachers-cycle-heading h3 {

    margin: 0;

    color: var(--macaya-green-dark);

    font-size: 1.4rem;

    font-weight: 800;
}


/* =============================================================================================
                                TARJETAS DOCENTES
============================================================================================= */

.head-teacher-card {

    height: 100%;

    overflow: hidden;

    border-radius: 22px;

    background: #ffffff;

    border: 1px solid var(--macaya-border);

    box-shadow:
        0 8px 28px rgba(4, 93, 59, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.head-teacher-card:hover {

    transform: translateY(-6px);

    border-color: rgba(4, 93, 59, 0.16);

    box-shadow:
        0 18px 40px rgba(4, 93, 59, 0.10);
}


/* =============================================================================================
                                FOTO DOCENTE
============================================================================================= */

.head-teacher-image {

    position: relative;

    height: 285px;

    overflow: hidden;

    background: var(--macaya-green-soft);
}


.head-teacher-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 62%,
            rgba(3, 70, 45, 0.35) 100%
        );

    pointer-events: none;
}


.head-teacher-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center top;

    transition: transform 0.45s ease;
}


.head-teacher-card:hover .head-teacher-image img {

    transform: scale(1.04);
}


/* =============================================================================================
                                ETIQUETA DEL CURSO
============================================================================================= */

.head-teacher-course {

    position: absolute;

    left: 18px;
    bottom: 16px;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    padding: 7px 12px;

    border-radius: 50px;

    color: #ffffff;

    background: var(--macaya-burgundy);

    font-size: 0.72rem;

    font-weight: 800;

    letter-spacing: 0.4px;

    box-shadow:
        0 8px 18px rgba(0, 0, 0, 0.15);
}


/* =============================================================================================
                                INFORMACIÓN TARJETA
============================================================================================= */

.head-teacher-content {

    position: relative;

    padding: 23px 22px 25px;

    text-align: center;
}


.head-teacher-content::before {

    content: "";

    position: absolute;

    left: 50%;
    top: 0;

    width: 40px;
    height: 4px;

    border-radius: 50px;

    background: var(--macaya-green);

    transform: translate(-50%, -50%);
}


.head-teacher-content > span {

    display: block;

    margin-bottom: 7px;

    color: var(--macaya-burgundy);

    font-size: 0.64rem;

    font-weight: 800;

    letter-spacing: 1.4px;
}


.head-teacher-content h3 {

    margin: 0 0 5px;

    color: var(--macaya-green-dark);

    font-size: 1.08rem;

    font-weight: 800;

    line-height: 1.3;
}


.head-teacher-content p {

    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.82rem;

    line-height: 1.5;
}


/* =============================================================================================
                                    CIERRE
============================================================================================= */

.head-teachers-closing-section {

    padding: 25px 0 80px;

    background: #ffffff;
}


.head-teachers-closing-box {

    max-width: 1000px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    gap: 25px;

    padding: 38px 42px;

    border-radius: 26px;

    background: var(--macaya-green-soft);

    border: 1px solid rgba(4, 93, 59, 0.08);

    box-shadow:
        0 10px 30px rgba(4, 93, 59, 0.05);
}


.head-teachers-closing-icon {

    width: 70px;
    height: 70px;

    flex: 0 0 70px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 20px;

    color: #ffffff;

    background: var(--macaya-burgundy);

    font-size: 1.45rem;

    box-shadow:
        0 10px 25px rgba(108, 0, 53, 0.16);
}


.head-teachers-closing-box span {

    display: block;

    margin-bottom: 4px;

    color: var(--macaya-burgundy);

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 2px;
}


.head-teachers-closing-box h2 {

    margin: 0 0 7px;

    color: var(--macaya-green-dark);

    font-size: 1.65rem;

    font-weight: 800;
}


.head-teachers-closing-box p {

    max-width: 700px;

    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.9rem;

    line-height: 1.7;
}


/* =============================================================================================
                                    TABLET
============================================================================================= */

@media (max-width: 991px) {


    .head-teacher-image {

        height: 320px;
    }


    .head-teachers-cycle-second {

        margin-top: 55px;
    }

}


/* =============================================================================================
                                    MOBILE
============================================================================================= */

@media (max-width: 767px) {


    /* -----------------------------------------------------------------------------------------
                                        HERO
    ----------------------------------------------------------------------------------------- */

    .head-teachers-page-hero {

        background:
            linear-gradient(
                rgba(3, 70, 45, 0.88),
                rgba(3, 70, 45, 0.88)
            ),
            url("../img/docentes/docentes-jefes-hero.png");

        background-size: cover;

        background-position: center;
    }


    /* -----------------------------------------------------------------------------------------
                                ENCABEZADOS
    ----------------------------------------------------------------------------------------- */

    .head-teachers-section-heading {

        align-items: flex-start;

        gap: 15px;

        margin-bottom: 28px;
    }


    .head-teachers-section-icon {

        width: 52px;
        height: 52px;

        flex-basis: 52px;

        border-radius: 15px;

        font-size: 1.1rem;
    }


    .head-teachers-section-heading h2 {

        font-size: 1.45rem;
    }


    .head-teachers-section-heading p {

        font-size: 0.82rem;
    }


    .head-teachers-cycle-second {

        margin-top: 45px;
    }


    .head-teachers-cycle-heading {

        margin-bottom: 22px;
    }


    .head-teachers-cycle-heading h3 {

        font-size: 1.25rem;
    }


    /* -----------------------------------------------------------------------------------------
                                    TARJETAS
    ----------------------------------------------------------------------------------------- */

    .head-teacher-card {

        border-radius: 20px;
    }


    .head-teacher-image {

        height: 340px;
    }


    .head-teacher-course {

        left: 15px;
        bottom: 14px;

        padding: 6px 10px;

        font-size: 0.68rem;
    }


    .head-teacher-content {

        padding: 22px 18px 24px;
    }


    .head-teacher-content h3 {

        font-size: 1.05rem;
    }


    /* -----------------------------------------------------------------------------------------
                                    CIERRE
    ----------------------------------------------------------------------------------------- */

    .head-teachers-closing-section {

        padding-bottom: 60px;
    }


    .head-teachers-closing-box {

        align-items: flex-start;

        gap: 17px;

        padding: 28px 22px;

        border-radius: 21px;
    }


    .head-teachers-closing-icon {

        width: 55px;
        height: 55px;

        flex-basis: 55px;

        border-radius: 16px;

        font-size: 1.2rem;
    }


    .head-teachers-closing-box h2 {

        font-size: 1.35rem;
    }


    .head-teachers-closing-box p {

        font-size: 0.85rem;
    }

}


/* =============================================================================================
                                MOBILE PEQUEÑO
============================================================================================= */

@media (max-width: 480px) {


    .head-teacher-image {

        height: 315px;
    }

}


/* =============================================================================================
                            PÁGINA DOCENTES POR ASIGNATURA
============================================================================================= */


/* =============================================================================================
                                        HERO
============================================================================================= */

.subject-teachers-page-hero {

    background:
        linear-gradient(
            90deg,
            rgba(3, 70, 45, 0.96) 0%,
            rgba(4, 93, 59, 0.84) 48%,
            rgba(4, 93, 59, 0.36) 100%
        ),
        url("../img/docentes/docentes-subsector-hero.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* =============================================================================================
                                    INTRODUCCIÓN
============================================================================================= */

.subject-teachers-intro-section {

    background: #ffffff;
}


/* =============================================================================================
                                SECCIONES POR ASIGNATURA
============================================================================================= */

.subject-teachers-section {

    background: var(--macaya-background);
}


.subject-teachers-alt {

    background: #ffffff;
}


/* =============================================================================================
                            ENCABEZADO DE ASIGNATURA
============================================================================================= */

.subject-section-heading {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 36px;
}


.subject-section-icon {

    width: 62px;
    height: 62px;

    flex: 0 0 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            var(--macaya-green-dark),
            var(--macaya-green)
        );

    font-size: 1.3rem;

    box-shadow:
        0 9px 24px rgba(4, 93, 59, 0.16);
}


.subject-section-heading span {

    display: block;

    margin-bottom: 3px;

    color: var(--macaya-burgundy);

    font-size: 0.68rem;

    font-weight: 800;

    letter-spacing: 1.8px;
}


.subject-section-heading h2 {

    margin: 0;

    color: var(--macaya-green-dark);

    font-size: 1.75rem;

    font-weight: 800;

    line-height: 1.2;
}


/* =============================================================================================
                                TARJETA DOCENTE
============================================================================================= */

.subject-teacher-card {

    height: 100%;

    overflow: hidden;

    border-radius: 21px;

    background: #ffffff;

    border: 1px solid var(--macaya-border);

    box-shadow:
        0 8px 24px rgba(4, 93, 59, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.subject-teacher-card:hover {

    transform: translateY(-6px);

    border-color: rgba(4, 93, 59, 0.16);

    box-shadow:
        0 17px 38px rgba(4, 93, 59, 0.10);
}


/* =============================================================================================
                                IMAGEN DOCENTE
============================================================================================= */

.subject-teacher-image {

    position: relative;

    height: 245px;

    overflow: hidden;

    background: var(--macaya-green-soft);
}


.subject-teacher-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 65%,
            rgba(3, 70, 45, 0.18) 100%
        );

    pointer-events: none;
}


.subject-teacher-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center top;

    transition: transform 0.45s ease;
}


.subject-teacher-card:hover .subject-teacher-image img {

    transform: scale(1.045);
}


/* =============================================================================================
                            INFORMACIÓN DEL DOCENTE
============================================================================================= */

.subject-teacher-content {

    position: relative;

    min-height: 120px;

    padding: 21px 18px 23px;

    text-align: center;
}


.subject-teacher-content::before {

    content: "";

    position: absolute;

    left: 50%;
    top: 0;

    width: 38px;
    height: 4px;

    border-radius: 50px;

    background: var(--macaya-green);

    transform: translate(-50%, -50%);
}


.subject-teacher-content > span {

    display: block;

    margin-bottom: 6px;

    color: var(--macaya-burgundy);

    font-size: 0.62rem;

    font-weight: 800;

    letter-spacing: 1.3px;
}


.subject-teacher-content h3 {

    margin: 0 0 5px;

    color: var(--macaya-green-dark);

    font-size: 1rem;

    font-weight: 800;

    line-height: 1.3;
}


.subject-teacher-content p {

    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.8rem;
}


/* =============================================================================================
                                PEQUEÑO DETALLE HOVER
============================================================================================= */

.subject-teacher-card::after {

    content: "";

    position: absolute;

    right: -55px;
    bottom: -55px;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    background: rgba(4, 93, 59, 0.025);

    pointer-events: none;
}


/* Necesario para que el detalle decorativo
   se mantenga dentro de la tarjeta */

.subject-teacher-card {

    position: relative;
}


/* =============================================================================================
                                    CIERRE
============================================================================================= */

.subject-teachers-closing-section {

    padding: 25px 0 80px;

    background: #ffffff;
}


.subject-teachers-closing-box {

    max-width: 1000px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    gap: 25px;

    padding: 38px 42px;

    border-radius: 26px;

    background: var(--macaya-green-soft);

    border: 1px solid rgba(4, 93, 59, 0.08);

    box-shadow:
        0 10px 30px rgba(4, 93, 59, 0.05);
}


.subject-teachers-closing-icon {

    width: 70px;
    height: 70px;

    flex: 0 0 70px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 20px;

    color: #ffffff;

    background: var(--macaya-burgundy);

    font-size: 1.45rem;

    box-shadow:
        0 10px 25px rgba(108, 0, 53, 0.16);
}


.subject-teachers-closing-box span {

    display: block;

    margin-bottom: 4px;

    color: var(--macaya-burgundy);

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 2px;
}


.subject-teachers-closing-box h2 {

    margin: 0 0 7px;

    color: var(--macaya-green-dark);

    font-size: 1.65rem;

    font-weight: 800;
}


.subject-teachers-closing-box p {

    max-width: 700px;

    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.9rem;

    line-height: 1.7;
}


/* =============================================================================================
                                    TABLET
============================================================================================= */

@media (max-width: 991px) {


    .subject-teacher-image {

        height: 285px;
    }


    .subject-teacher-content {

        min-height: 115px;
    }


    .subject-section-heading h2 {

        font-size: 1.55rem;
    }

}


/* =============================================================================================
                                    MOBILE
============================================================================================= */

@media (max-width: 767px) {


    /* -----------------------------------------------------------------------------------------
                                        HERO
    ----------------------------------------------------------------------------------------- */

    .subject-teachers-page-hero {

        background:
            linear-gradient(
                rgba(3, 70, 45, 0.88),
                rgba(3, 70, 45, 0.88)
            ),
            url("../img/docentes/docentes-subsector-hero.png");

        background-size: cover;

        background-position: center;
    }


    /* -----------------------------------------------------------------------------------------
                            ENCABEZADO DE ASIGNATURA
    ----------------------------------------------------------------------------------------- */

    .subject-section-heading {

        align-items: flex-start;

        gap: 15px;

        margin-bottom: 27px;
    }


    .subject-section-icon {

        width: 52px;
        height: 52px;

        flex-basis: 52px;

        border-radius: 15px;

        font-size: 1.1rem;
    }


    .subject-section-heading h2 {

        font-size: 1.4rem;
    }


    /* -----------------------------------------------------------------------------------------
                                    TARJETAS
    ----------------------------------------------------------------------------------------- */

    .subject-teacher-card {

        border-radius: 20px;
    }


    .subject-teacher-image {

        height: 335px;
    }


    .subject-teacher-content {

        min-height: auto;

        padding: 22px 18px 24px;
    }


    .subject-teacher-content h3 {

        font-size: 1.05rem;
    }


    /* -----------------------------------------------------------------------------------------
                                    CIERRE
    ----------------------------------------------------------------------------------------- */

    .subject-teachers-closing-section {

        padding-bottom: 60px;
    }


    .subject-teachers-closing-box {

        align-items: flex-start;

        gap: 17px;

        padding: 28px 22px;

        border-radius: 21px;
    }


    .subject-teachers-closing-icon {

        width: 55px;
        height: 55px;

        flex-basis: 55px;

        border-radius: 16px;

        font-size: 1.2rem;
    }


    .subject-teachers-closing-box h2 {

        font-size: 1.35rem;
    }


    .subject-teachers-closing-box p {

        font-size: 0.85rem;
    }

}


/* =============================================================================================
                                MOBILE PEQUEÑO
============================================================================================= */

@media (max-width: 480px) {


    .subject-teacher-image {

        height: 305px;
    }


    .subject-section-heading h2 {

        font-size: 1.3rem;
    }

}

/* =============================================================================================
                                PÁGINA ADMINISTRATIVOS
============================================================================================= */


/* =============================================================================================
                                        HERO
============================================================================================= */

.administrative-page-hero {

    background:
        linear-gradient(
            90deg,
            rgba(3, 70, 45, 0.96) 0%,
            rgba(4, 93, 59, 0.84) 48%,
            rgba(4, 93, 59, 0.36) 100%
        ),
        url("../img/administrativos/administrativos-hero.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* =============================================================================================
                                    INTRODUCCIÓN
============================================================================================= */

.administrative-intro-section {

    background: #ffffff;
}


/* =============================================================================================
                                SECCIONES DE PERSONAL
============================================================================================= */

.administrative-section {

    background: var(--macaya-background);
}


.administrative-section-alt {

    background: #ffffff;
}


/* =============================================================================================
                            ENCABEZADOS DE CADA ÁREA
============================================================================================= */

.administrative-section-heading {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 36px;
}


.administrative-section-icon {

    width: 62px;
    height: 62px;

    flex: 0 0 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            var(--macaya-green-dark),
            var(--macaya-green)
        );

    font-size: 1.3rem;

    box-shadow:
        0 9px 24px rgba(4, 93, 59, 0.16);
}


.administrative-section-heading span {

    display: block;

    margin-bottom: 3px;

    color: var(--macaya-burgundy);

    font-size: 0.68rem;

    font-weight: 800;

    letter-spacing: 1.8px;
}


.administrative-section-heading h2 {

    margin: 0;

    color: var(--macaya-green-dark);

    font-size: 1.75rem;

    font-weight: 800;

    line-height: 1.2;
}


/* =============================================================================================
                                TARJETAS
============================================================================================= */

.administrative-card {

    position: relative;

    height: 100%;

    overflow: hidden;

    border-radius: 22px;

    background: #ffffff;

    border: 1px solid var(--macaya-border);

    box-shadow:
        0 8px 26px rgba(4, 93, 59, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.administrative-card:hover {

    transform: translateY(-6px);

    border-color: rgba(4, 93, 59, 0.16);

    box-shadow:
        0 18px 40px rgba(4, 93, 59, 0.10);
}


/* =============================================================================================
                                FOTO FUNCIONARIO
============================================================================================= */

.administrative-image {

    position: relative;

    height: 285px;

    overflow: hidden;

    background: var(--macaya-green-soft);
}


.administrative-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 63%,
            rgba(3, 70, 45, 0.19) 100%
        );

    pointer-events: none;
}


.administrative-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center top;

    transition:
        transform 0.45s ease;
}


.administrative-card:hover .administrative-image img {

    transform: scale(1.045);
}


/* =============================================================================================
                                INFORMACIÓN
============================================================================================= */

.administrative-content {

    position: relative;

    min-height: 125px;

    padding: 23px 22px 25px;

    text-align: center;
}


.administrative-content::before {

    content: "";

    position: absolute;

    left: 50%;
    top: 0;

    width: 40px;
    height: 4px;

    border-radius: 50px;

    background: var(--macaya-green);

    transform: translate(-50%, -50%);
}


.administrative-content > span {

    display: block;

    margin-bottom: 7px;

    color: var(--macaya-burgundy);

    font-size: 0.63rem;

    font-weight: 800;

    letter-spacing: 1.35px;
}


.administrative-content h3 {

    margin: 0 0 5px;

    color: var(--macaya-green-dark);

    font-size: 1.08rem;

    font-weight: 800;

    line-height: 1.3;
}


.administrative-content p {

    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.82rem;

    line-height: 1.5;
}


/* =============================================================================================
                            DETALLE DECORATIVO TARJETA
============================================================================================= */

.administrative-card::after {

    content: "";

    position: absolute;

    right: -55px;
    bottom: -55px;

    width: 125px;
    height: 125px;

    border-radius: 50%;

    background: rgba(4, 93, 59, 0.025);

    pointer-events: none;
}


/* =============================================================================================
                                    CIERRE
============================================================================================= */

.administrative-closing-section {

    padding: 25px 0 80px;

    background: #ffffff;
}


.administrative-closing-box {

    max-width: 1000px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    gap: 25px;

    padding: 38px 42px;

    border-radius: 26px;

    background: var(--macaya-green-soft);

    border: 1px solid rgba(4, 93, 59, 0.08);

    box-shadow:
        0 10px 30px rgba(4, 93, 59, 0.05);
}


.administrative-closing-icon {

    width: 70px;
    height: 70px;

    flex: 0 0 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;

    color: #ffffff;

    background: var(--macaya-burgundy);

    font-size: 1.45rem;

    box-shadow:
        0 10px 25px rgba(108, 0, 53, 0.16);
}


.administrative-closing-box span {

    display: block;

    margin-bottom: 4px;

    color: var(--macaya-burgundy);

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 2px;
}


.administrative-closing-box h2 {

    margin: 0 0 7px;

    color: var(--macaya-green-dark);

    font-size: 1.65rem;

    font-weight: 800;
}


.administrative-closing-box p {

    max-width: 720px;

    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.9rem;

    line-height: 1.7;
}


/* =============================================================================================
                                    TABLET
============================================================================================= */

@media (max-width: 991px) {


    .administrative-image {

        height: 320px;
    }


    .administrative-section-heading h2 {

        font-size: 1.55rem;
    }


    .administrative-content {

        min-height: 120px;
    }

}


/* =============================================================================================
                                    MOBILE
============================================================================================= */

@media (max-width: 767px) {


    /* -----------------------------------------------------------------------------------------
                                        HERO
    ----------------------------------------------------------------------------------------- */

    .administrative-page-hero {

        background:
            linear-gradient(
                rgba(3, 70, 45, 0.88),
                rgba(3, 70, 45, 0.88)
            ),
            url("../img/administrativos/administrativos-hero.png");

        background-size: cover;

        background-position: center;
    }


    /* -----------------------------------------------------------------------------------------
                                ENCABEZADOS DE ÁREA
    ----------------------------------------------------------------------------------------- */

    .administrative-section-heading {

        align-items: flex-start;

        gap: 15px;

        margin-bottom: 28px;
    }


    .administrative-section-icon {

        width: 52px;
        height: 52px;

        flex-basis: 52px;

        border-radius: 15px;

        font-size: 1.1rem;
    }


    .administrative-section-heading h2 {

        font-size: 1.4rem;
    }


    /* -----------------------------------------------------------------------------------------
                                    TARJETAS
    ----------------------------------------------------------------------------------------- */

    .administrative-card {

        border-radius: 20px;
    }


    .administrative-image {

        height: 340px;
    }


    .administrative-content {

        min-height: auto;

        padding: 22px 18px 24px;
    }


    .administrative-content h3 {

        font-size: 1.05rem;
    }


    /* -----------------------------------------------------------------------------------------
                                    CIERRE
    ----------------------------------------------------------------------------------------- */

    .administrative-closing-section {

        padding-bottom: 60px;
    }


    .administrative-closing-box {

        align-items: flex-start;

        gap: 17px;

        padding: 28px 22px;

        border-radius: 21px;
    }


    .administrative-closing-icon {

        width: 55px;
        height: 55px;

        flex-basis: 55px;

        border-radius: 16px;

        font-size: 1.2rem;
    }


    .administrative-closing-box h2 {

        font-size: 1.35rem;
    }


    .administrative-closing-box p {

        font-size: 0.85rem;
    }

}


/* =============================================================================================
                                MOBILE PEQUEÑO
============================================================================================= */

@media (max-width: 480px) {


    .administrative-image {

        height: 315px;
    }


    .administrative-section-heading h2 {

        font-size: 1.3rem;
    }

}

/* =============================================================================================
                                    PÁGINA INSPECTORÍA
============================================================================================= */


/* =============================================================================================
                                        HERO
============================================================================================= */

.inspection-page-hero {

    background:
        linear-gradient(
            90deg,
            rgba(3, 70, 45, 0.96) 0%,
            rgba(4, 93, 59, 0.84) 48%,
            rgba(4, 93, 59, 0.36) 100%
        ),
        url("../img/inspectoria/inspectoria-hero.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* =============================================================================================
                                    INTRODUCCIÓN
============================================================================================= */

.inspection-intro-section {

    background: #ffffff;
}


/* =============================================================================================
                                SECCIÓN EQUIPO INSPECTORÍA
============================================================================================= */

.inspection-team-section {

    background: var(--macaya-background);
}


/* =============================================================================================
                                ENCABEZADO DE SECCIÓN
============================================================================================= */

.inspection-section-heading {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 36px;
}


.inspection-section-icon {

    width: 62px;
    height: 62px;

    flex: 0 0 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            var(--macaya-green-dark),
            var(--macaya-green)
        );

    font-size: 1.3rem;

    box-shadow:
        0 9px 24px rgba(4, 93, 59, 0.16);
}


.inspection-section-heading span {

    display: block;

    margin-bottom: 3px;

    color: var(--macaya-burgundy);

    font-size: 0.68rem;

    font-weight: 800;

    letter-spacing: 1.8px;
}


.inspection-section-heading h2 {

    margin: 0 0 4px;

    color: var(--macaya-green-dark);

    font-size: 1.75rem;

    font-weight: 800;

    line-height: 1.2;
}


.inspection-section-heading p {

    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.86rem;

    line-height: 1.6;
}


/* =============================================================================================
                                TARJETAS INSPECTORÍA
============================================================================================= */

.inspection-card {

    position: relative;

    height: 100%;

    overflow: hidden;

    border-radius: 21px;

    background: #ffffff;

    border: 1px solid var(--macaya-border);

    box-shadow:
        0 8px 24px rgba(4, 93, 59, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.inspection-card:hover {

    transform: translateY(-6px);

    border-color: rgba(4, 93, 59, 0.16);

    box-shadow:
        0 17px 38px rgba(4, 93, 59, 0.10);
}


/* =============================================================================================
                                FOTO INSPECTORÍA
============================================================================================= */

.inspection-image {

    position: relative;

    height: 250px;

    overflow: hidden;

    background: var(--macaya-green-soft);
}


.inspection-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 64%,
            rgba(3, 70, 45, 0.20) 100%
        );

    pointer-events: none;
}


.inspection-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center top;

    transition: transform 0.45s ease;
}


.inspection-card:hover .inspection-image img {

    transform: scale(1.045);
}


/* =============================================================================================
                                INFORMACIÓN TARJETA
============================================================================================= */

.inspection-content {

    position: relative;

    min-height: 125px;

    padding: 22px 18px 24px;

    text-align: center;
}


.inspection-content::before {

    content: "";

    position: absolute;

    left: 50%;
    top: 0;

    width: 38px;
    height: 4px;

    border-radius: 50px;

    background: var(--macaya-green);

    transform: translate(-50%, -50%);
}


.inspection-content > span {

    display: block;

    margin-bottom: 6px;

    color: var(--macaya-burgundy);

    font-size: 0.62rem;

    font-weight: 800;

    letter-spacing: 1.3px;
}


.inspection-content h3 {

    margin: 0 0 5px;

    color: var(--macaya-green-dark);

    font-size: 1rem;

    font-weight: 800;

    line-height: 1.3;
}


.inspection-content p {

    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.8rem;

    line-height: 1.5;
}


/* =============================================================================================
                                DETALLE DECORATIVO
============================================================================================= */

.inspection-card::after {

    content: "";

    position: absolute;

    right: -55px;
    bottom: -55px;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    background: rgba(4, 93, 59, 0.025);

    pointer-events: none;
}


/* =============================================================================================
                                    ENFERMERÍA
============================================================================================= */

.inspection-health-section {

    background: #ffffff;
}


.inspection-health-icon {

    background: var(--macaya-burgundy);
}


.inspection-health-card {

    position: relative;

    max-width: 900px;

    margin: 15px auto 0;

    display: grid;

    grid-template-columns: 330px 1fr;

    overflow: hidden;

    border-radius: 26px;

    background: var(--macaya-green-soft);

    border: 1px solid rgba(4, 93, 59, 0.08);

    box-shadow:
        0 16px 40px rgba(4, 93, 59, 0.08);
}


/* =============================================================================================
                                FOTO ENFERMERÍA
============================================================================================= */

.inspection-health-image {

    position: relative;

    min-height: 390px;

    overflow: hidden;
}


.inspection-health-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            transparent 68%,
            rgba(237, 245, 240, 0.85) 100%
        );

    pointer-events: none;
}


.inspection-health-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center top;
}


/* =============================================================================================
                                CONTENIDO ENFERMERÍA
============================================================================================= */

.inspection-health-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 42px 44px;
}


.inspection-health-label {

    display: inline-block;

    width: fit-content;

    margin-bottom: 8px;

    color: var(--macaya-burgundy);

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 1.8px;
}


.inspection-health-content h3 {

    margin: 0 0 4px;

    color: var(--macaya-green-dark);

    font-size: 2rem;

    font-weight: 800;

    line-height: 1.2;
}


.inspection-health-role {

    margin: 0;

    color: var(--macaya-green);

    font-size: 1rem;

    font-weight: 700;
}


.inspection-health-line {

    width: 58px;
    height: 4px;

    margin: 18px 0;

    border-radius: 10px;

    background: var(--macaya-burgundy);
}


.inspection-health-description {

    max-width: 500px;

    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.9rem;

    line-height: 1.75;
}


.inspection-health-badge {

    width: fit-content;

    margin-top: 23px;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 13px;

    border-radius: 50px;

    background: #ffffff;

    color: var(--macaya-green-dark);

    font-size: 0.76rem;

    font-weight: 700;

    box-shadow:
        0 8px 18px rgba(4, 93, 59, 0.06);
}


.inspection-health-badge i {

    color: var(--macaya-burgundy);
}


/* =============================================================================================
                                    CIERRE
============================================================================================= */

.inspection-closing-section {

    padding: 25px 0 80px;

    background: #ffffff;
}


.inspection-closing-box {

    max-width: 1000px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    gap: 25px;

    padding: 38px 42px;

    border-radius: 26px;

    background: var(--macaya-green-soft);

    border: 1px solid rgba(4, 93, 59, 0.08);

    box-shadow:
        0 10px 30px rgba(4, 93, 59, 0.05);
}


.inspection-closing-icon {

    width: 70px;
    height: 70px;

    flex: 0 0 70px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 20px;

    color: #ffffff;

    background: var(--macaya-burgundy);

    font-size: 1.45rem;

    box-shadow:
        0 10px 25px rgba(108, 0, 53, 0.16);
}


.inspection-closing-box span {

    display: block;

    margin-bottom: 4px;

    color: var(--macaya-burgundy);

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 2px;
}


.inspection-closing-box h2 {

    margin: 0 0 7px;

    color: var(--macaya-green-dark);

    font-size: 1.65rem;

    font-weight: 800;
}


.inspection-closing-box p {

    max-width: 720px;

    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.9rem;

    line-height: 1.7;
}


/* =============================================================================================
                                    TABLET
============================================================================================= */

@media (max-width: 991px) {


    .inspection-image {

        height: 290px;
    }


    .inspection-health-card {

        grid-template-columns: 290px 1fr;
    }


    .inspection-health-image {

        min-height: 360px;
    }


    .inspection-health-content {

        padding: 34px;
    }


    .inspection-health-content h3 {

        font-size: 1.75rem;
    }

}


/* =============================================================================================
                                    MOBILE
============================================================================================= */

@media (max-width: 767px) {


    /* -----------------------------------------------------------------------------------------
                                        HERO
    ----------------------------------------------------------------------------------------- */

    .inspection-page-hero {

        background:
            linear-gradient(
                rgba(3, 70, 45, 0.88),
                rgba(3, 70, 45, 0.88)
            ),
            url("../img/inspectoria/inspectoria-hero.png");

        background-size: cover;

        background-position: center;
    }


    /* -----------------------------------------------------------------------------------------
                                ENCABEZADO
    ----------------------------------------------------------------------------------------- */

    .inspection-section-heading {

        align-items: flex-start;

        gap: 15px;

        margin-bottom: 28px;
    }


    .inspection-section-icon {

        width: 52px;
        height: 52px;

        flex-basis: 52px;

        border-radius: 15px;

        font-size: 1.1rem;
    }


    .inspection-section-heading h2 {

        font-size: 1.4rem;
    }


    .inspection-section-heading p {

        font-size: 0.82rem;
    }


    /* -----------------------------------------------------------------------------------------
                                TARJETAS
    ----------------------------------------------------------------------------------------- */

    .inspection-card {

        border-radius: 20px;
    }


    .inspection-image {

        height: 335px;
    }


    .inspection-content {

        min-height: auto;

        padding: 22px 18px 24px;
    }


    .inspection-content h3 {

        font-size: 1.05rem;
    }


    /* -----------------------------------------------------------------------------------------
                                ENFERMERÍA
    ----------------------------------------------------------------------------------------- */

    .inspection-health-card {

        display: block;

        border-radius: 22px;
    }


    .inspection-health-image {

        height: 320px;

        min-height: 0;
    }


    .inspection-health-image::after {

        background:
            linear-gradient(
                180deg,
                transparent 65%,
                rgba(237, 245, 240, 0.88) 100%
            );
    }


    .inspection-health-content {

        padding: 28px 23px 30px;
    }


    .inspection-health-content h3 {

        font-size: 1.6rem;
    }


    .inspection-health-description {

        font-size: 0.86rem;
    }


    /* -----------------------------------------------------------------------------------------
                                    CIERRE
    ----------------------------------------------------------------------------------------- */

    .inspection-closing-section {

        padding-bottom: 60px;
    }


    .inspection-closing-box {

        align-items: flex-start;

        gap: 17px;

        padding: 28px 22px;

        border-radius: 21px;
    }


    .inspection-closing-icon {

        width: 55px;
        height: 55px;

        flex-basis: 55px;

        border-radius: 16px;

        font-size: 1.2rem;
    }


    .inspection-closing-box h2 {

        font-size: 1.35rem;
    }


    .inspection-closing-box p {

        font-size: 0.85rem;
    }

}


/* =============================================================================================
                                MOBILE PEQUEÑO
============================================================================================= */

@media (max-width: 480px) {


    .inspection-image {

        height: 305px;
    }


    .inspection-health-image {

        height: 285px;
    }


    .inspection-section-heading h2 {

        font-size: 1.3rem;
    }

}

/* =============================================================================================
                            PÁGINA TÉCNICOS DE LA EDUCACIÓN
============================================================================================= */


/* =============================================================================================
                                        HERO
============================================================================================= */

.education-technicians-page-hero {

    background:
        linear-gradient(
            90deg,
            rgba(3, 70, 45, 0.96) 0%,
            rgba(4, 93, 59, 0.84) 48%,
            rgba(4, 93, 59, 0.36) 100%
        ),
        url("../img/tecnicos/tecnicos-educacion-hero.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* =============================================================================================
                                    INTRODUCCIÓN
============================================================================================= */

.education-technicians-intro-section {

    background: #ffffff;
}


/* =============================================================================================
                                SECCIÓN DEL EQUIPO
============================================================================================= */

.education-technicians-team-section {

    background: var(--macaya-background);
}


/* =============================================================================================
                                ENCABEZADO DE SECCIÓN
============================================================================================= */

.education-technicians-section-heading {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 36px;
}


.education-technicians-section-icon {

    width: 62px;
    height: 62px;

    flex: 0 0 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            var(--macaya-green-dark),
            var(--macaya-green)
        );

    font-size: 1.3rem;

    box-shadow:
        0 9px 24px rgba(4, 93, 59, 0.16);
}


.education-technicians-section-heading span {

    display: block;

    margin-bottom: 3px;

    color: var(--macaya-burgundy);

    font-size: 0.68rem;

    font-weight: 800;

    letter-spacing: 1.8px;
}


.education-technicians-section-heading h2 {

    margin: 0 0 4px;

    color: var(--macaya-green-dark);

    font-size: 1.75rem;

    font-weight: 800;

    line-height: 1.2;
}


.education-technicians-section-heading p {

    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.86rem;

    line-height: 1.6;
}


/* =============================================================================================
                                TARJETAS
============================================================================================= */

.education-technician-card {

    position: relative;

    height: 100%;

    overflow: hidden;

    border-radius: 21px;

    background: #ffffff;

    border: 1px solid var(--macaya-border);

    box-shadow:
        0 8px 24px rgba(4, 93, 59, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.education-technician-card:hover {

    transform: translateY(-6px);

    border-color: rgba(4, 93, 59, 0.16);

    box-shadow:
        0 17px 38px rgba(4, 93, 59, 0.10);
}


/* =============================================================================================
                                FOTO
============================================================================================= */

.education-technician-image {

    position: relative;

    height: 255px;

    overflow: hidden;

    background: var(--macaya-green-soft);
}


.education-technician-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 63%,
            rgba(3, 70, 45, 0.20) 100%
        );

    pointer-events: none;
}


.education-technician-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center top;

    transition: transform 0.45s ease;
}


.education-technician-card:hover .education-technician-image img {

    transform: scale(1.045);
}


/* =============================================================================================
                                INFORMACIÓN
============================================================================================= */

.education-technician-content {

    position: relative;

    min-height: 105px;

    padding: 22px 18px 24px;

    text-align: center;
}


.education-technician-content::before {

    content: "";

    position: absolute;

    left: 50%;
    top: 0;

    width: 38px;
    height: 4px;

    border-radius: 50px;

    background: var(--macaya-green);

    transform: translate(-50%, -50%);
}


.education-technician-content > span {

    display: block;

    margin-bottom: 7px;

    color: var(--macaya-burgundy);

    font-size: 0.61rem;

    font-weight: 800;

    letter-spacing: 1.25px;
}


.education-technician-content h3 {

    margin: 0;

    color: var(--macaya-green-dark);

    font-size: 1rem;

    font-weight: 800;

    line-height: 1.3;
}


/* =============================================================================================
                                DETALLE DECORATIVO
============================================================================================= */

.education-technician-card::after {

    content: "";

    position: absolute;

    right: -55px;
    bottom: -55px;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    background: rgba(4, 93, 59, 0.025);

    pointer-events: none;
}


/* =============================================================================================
                        SECCIÓN APORTE AL APRENDIZAJE
============================================================================================= */

.education-technicians-support-section {

    background: #ffffff;
}


.education-technicians-values {

    display: flex;

    flex-direction: column;

    gap: 15px;
}


.education-technicians-value {

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 23px 24px;

    border-radius: 20px;

    background: var(--macaya-green-soft);

    border: 1px solid rgba(4, 93, 59, 0.07);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.education-technicians-value:hover {

    transform: translateX(5px);

    background: #ffffff;

    box-shadow:
        0 12px 28px rgba(4, 93, 59, 0.08);
}


.education-technicians-value > span {

    width: 54px;
    height: 54px;

    flex: 0 0 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 16px;

    color: var(--macaya-burgundy);

    background: #ffffff;

    font-size: 0.95rem;

    font-weight: 800;

    box-shadow:
        0 8px 18px rgba(4, 93, 59, 0.07);
}


.education-technicians-value h3 {

    margin: 0 0 5px;

    color: var(--macaya-green-dark);

    font-size: 1rem;

    font-weight: 800;
}


.education-technicians-value p {

    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.85rem;

    line-height: 1.6;
}


/* =============================================================================================
                                    CIERRE
============================================================================================= */

.education-technicians-closing-section {

    padding: 25px 0 80px;

    background: #ffffff;
}


.education-technicians-closing-box {

    max-width: 1000px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    gap: 25px;

    padding: 38px 42px;

    border-radius: 26px;

    background: var(--macaya-green-soft);

    border: 1px solid rgba(4, 93, 59, 0.08);

    box-shadow:
        0 10px 30px rgba(4, 93, 59, 0.05);
}


.education-technicians-closing-icon {

    width: 70px;
    height: 70px;

    flex: 0 0 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;

    color: #ffffff;

    background: var(--macaya-burgundy);

    font-size: 1.45rem;

    box-shadow:
        0 10px 25px rgba(108, 0, 53, 0.16);
}


.education-technicians-closing-box span {

    display: block;

    margin-bottom: 4px;

    color: var(--macaya-burgundy);

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 2px;
}


.education-technicians-closing-box h2 {

    margin: 0 0 7px;

    color: var(--macaya-green-dark);

    font-size: 1.65rem;

    font-weight: 800;
}


.education-technicians-closing-box p {

    max-width: 720px;

    margin: 0;

    color: var(--macaya-text-light);

    font-size: 0.9rem;

    line-height: 1.7;
}


/* =============================================================================================
                                    TABLET
============================================================================================= */

@media (max-width: 991px) {


    .education-technician-image {

        height: 300px;
    }


    .education-technicians-section-heading h2 {

        font-size: 1.55rem;
    }


    .education-technician-content {

        min-height: 100px;
    }

}


/* =============================================================================================
                                    MOBILE
============================================================================================= */

@media (max-width: 767px) {


    /* -----------------------------------------------------------------------------------------
                                        HERO
    ----------------------------------------------------------------------------------------- */

    .education-technicians-page-hero {

        background:
            linear-gradient(
                rgba(3, 70, 45, 0.88),
                rgba(3, 70, 45, 0.88)
            ),
            url("../img/tecnicos/tecnicos-educacion-hero.png");

        background-size: cover;
        background-position: center;
    }


    /* -----------------------------------------------------------------------------------------
                                ENCABEZADO
    ----------------------------------------------------------------------------------------- */

    .education-technicians-section-heading {

        align-items: flex-start;

        gap: 15px;

        margin-bottom: 28px;
    }


    .education-technicians-section-icon {

        width: 52px;
        height: 52px;

        flex-basis: 52px;

        border-radius: 15px;

        font-size: 1.1rem;
    }


    .education-technicians-section-heading h2 {

        font-size: 1.4rem;
    }


    .education-technicians-section-heading p {

        font-size: 0.82rem;
    }


    /* -----------------------------------------------------------------------------------------
                                    TARJETAS
    ----------------------------------------------------------------------------------------- */

    .education-technician-card {

        border-radius: 20px;
    }


    .education-technician-image {

        height: 335px;
    }


    .education-technician-content {

        min-height: auto;

        padding: 22px 18px 24px;
    }


    .education-technician-content h3 {

        font-size: 1.05rem;
    }


    /* -----------------------------------------------------------------------------------------
                                VALORES
    ----------------------------------------------------------------------------------------- */

    .education-technicians-value {

        align-items: flex-start;

        gap: 15px;

        padding: 20px;
    }


    .education-technicians-value > span {

        width: 48px;
        height: 48px;

        flex-basis: 48px;

        border-radius: 14px;
    }


    /* -----------------------------------------------------------------------------------------
                                    CIERRE
    ----------------------------------------------------------------------------------------- */

    .education-technicians-closing-section {

        padding-bottom: 60px;
    }


    .education-technicians-closing-box {

        align-items: flex-start;

        gap: 17px;

        padding: 28px 22px;

        border-radius: 21px;
    }


    .education-technicians-closing-icon {

        width: 55px;
        height: 55px;

        flex-basis: 55px;

        border-radius: 16px;

        font-size: 1.2rem;
    }


    .education-technicians-closing-box h2 {

        font-size: 1.35rem;
    }


    .education-technicians-closing-box p {

        font-size: 0.85rem;
    }

}


/* =============================================================================================
                                MOBILE PEQUEÑO
============================================================================================= */

@media (max-width: 480px) {


    .education-technician-image {

        height: 305px;
    }


    .education-technicians-section-heading h2 {

        font-size: 1.3rem;
    }

}
/* =================================================================================================
                                      RESPONSIVE
================================================================================================= */


/* -------------------------------------------------------------------------------------------------
                                  Pantallas medianas
------------------------------------------------------------------------------------------------- */

@media (max-width: 1199px) {

    .navbar .nav-link {

        padding-left: 8px !important;

        padding-right: 8px !important;

        font-size: 0.85rem;

    }


    .hero-section {

        min-height: 580px;

    }


    .min-vh-hero {

        min-height: 580px;

    }


    .hero-message {

        right: 30px;

    }


    .life-gallery {

        grid-template-columns: 1.5fr 1fr 1fr;

    }

}


/* -------------------------------------------------------------------------------------------------
                                      Tablet
------------------------------------------------------------------------------------------------- */

@media (max-width: 991px) {


    .document-categories {

    grid-template-columns: 1fr 1fr;
}

/* =============================================================================================
                            TRABAJA CON NOSOTROS TABLET
============================================================================================= */

.work-intro-image img {

    height: 400px;
}


.work-form-info {

    position: static;
}


.work-form-wrapper {

    padding: 34px;
}


.work-contact-box {

    flex-direction: column;

    align-items: flex-start;
}

/* =============================================================================================
                                CONTACTO TABLET
============================================================================================= */

.contact-form-wrapper {

    padding: 34px;
}


.contact-side-card {

    max-width: 700px;

    margin: 0 auto;
}


.contact-map-placeholder {

    min-height: 360px;
}


.contact-work-box {

    flex-direction: column;

    align-items: flex-start;
}

/* =============================================================================================
                                TALLERES TABLET
============================================================================================= */

.workshops-intro-image img {

    height: 400px;
}


.workshop-content > p {

    min-height: auto;
}


.workshops-gallery {

    grid-template-columns: 1fr 1fr;

    grid-template-rows: 300px 220px;
}


.workshops-gallery-item.gallery-main {

    grid-column: 1 / 3;

    grid-row: 1;
}

.featured-document {

    grid-template-columns: 90px 1fr;
}


.featured-document-action {

    grid-column: 1 / 3;
}


.documents-heading {

    align-items: flex-start;

    flex-direction: column;
}


.documents-help-box {

    flex-direction: column;

    align-items: flex-start;
}

    .featured-communication {

        grid-template-columns: 110px 1fr;

    }


    .featured-action {

        grid-column: 1 / 3;

    }


    .communications-heading {

        align-items: flex-start;

        flex-direction: column;
    }


    .communications-search {

        width: 100%;
        max-width: 450px;
    }


    .communication-help-box {

        flex-direction: column;

        align-items: flex-start;
    }


    .admission-steps {
        grid-template-columns: 1fr 1fr;
    }


    .admission-intro-image img {
        height: 400px;
    }


    .admission-help-card {
        max-width: 650px;
    }


   .page-hero {
        min-height: 340px;
    }


    .about-school-image {
        max-width: 680px;

        margin: 0 auto;
    }


    .about-image-badge {
        right: 20px;
    }


    .school-contact-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 42px;
    }
   
    .section-padding {

        padding: 70px 0;

    }


    /* Navbar */

    .navbar {

        min-height: 78px;

    }


    .navbar-logo {

        width: 55px;

        height: 55px;

    }


    .navbar-collapse {

        margin-top: 15px;

        padding: 20px;

        border-radius: 18px;

        background: white;

        box-shadow:
            0 15px 35px rgba(0, 0, 0, 0.08);

    }


    .navbar-nav {

        align-items: stretch !important;

    }


    .navbar .nav-link {

        padding: 11px 5px !important;

    }


    .navbar .nav-link::after {

        display: none;

    }


    .btn-portal {

        margin-top: 10px;

        text-align: center;

    }


    /* Hero */

    .hero-section {

        min-height: 540px;

        background-position: 65% center;

    }


    .min-vh-hero {

        min-height: 540px;

    }


    .hero-section::after {

        content: "";

        position: absolute;

        inset: 0;

        background:
            rgba(3, 70, 45, 0.12);

    }


    /* Accesos */

    .quick-access-section {

        margin-top: -30px;

    }


    .quick-access-wrapper {

        padding: 16px;

    }


    /* Comunidad */

    .community-section .row {

        row-gap: 45px;

    }


    /* Galería */

    /* Galería Vida en Macaya - Tablet */

    .life-gallery {

        grid-template-columns: 1fr 1fr;

        grid-template-rows: 300px 220px 220px;

    }


    /* Foto principal */

    .life-gallery .life-image:nth-child(1) {

        grid-column: 1 / 3;

        grid-row: 1;

    }


    /* Segunda */

    .life-gallery .life-image:nth-child(2) {

        grid-column: 1;

        grid-row: 2;

    }


    /* Tercera */

    .life-gallery .life-image:nth-child(3) {

        grid-column: 2;

        grid-row: 2;

    }


    /* Cuarta horizontal */

    .life-gallery .life-image:nth-child(4) {

        grid-column: 1 / 3;

        grid-row: 3;

    }


    /* CTA */

    .admission-box {

        flex-direction: column;

        align-items: flex-start;

        padding: 42px;

    }

}


/* -------------------------------------------------------------------------------------------------
                                      Celulares
------------------------------------------------------------------------------------------------- */

@media (max-width: 767px) {

    body {

        font-size: 0.95rem;

    }


 /* =============================================================================================
                            TRABAJA CON NOSOTROS MOBILE
============================================================================================= */

.work-page-hero {

    background:

        linear-gradient(
            rgba(3, 70, 45, 0.88),
            rgba(3, 70, 45, 0.88)
        ),

        url("../img/trabaja/trabaja-hero.png");

    background-size: cover;

    background-position: center;
}


/* Introducción */

.work-intro-image img {

    height: 300px;

    border-radius: 22px;
}


.work-value {

    align-items: flex-start;
}


/* Formulario */

.work-form-wrapper {

    padding: 28px 22px;

    border-radius: 22px;
}


.work-form-heading {

    align-items: flex-start;
}


.work-form-heading-icon {

    width: 55px;
    height: 55px;
}


.work-upload {

    grid-template-columns: 50px 1fr;

    gap: 14px;

    padding: 18px;
}


.work-upload-icon {

    width: 50px;
    height: 50px;
}


.work-upload-button {

    grid-column: 1 / 3;

    width: 100%;

    text-align: center;
}


.btn-work-submit {

    width: 100%;

    text-align: center;
}


/* Proceso */

.work-process-card {

    padding: 28px 23px;
}


/* CTA */

.work-contact-section {

    padding-bottom: 60px;
}


.work-contact-box {

    padding: 32px 25px;

    border-radius: 22px;
}


.work-contact-content {

    align-items: flex-start;
}


.work-contact-icon {

    width: 55px;
    height: 55px;
}


.work-contact-content h2 {

    font-size: 1.5rem;
}


.work-contact-box .btn-school-contact {

    width: 100%;

    text-align: center;
}   
/* =============================================================================================
                                CONTACTO MOBILE
============================================================================================= */

.contact-page-hero {

    background:

        linear-gradient(
            rgba(3, 70, 45, 0.88),
            rgba(3, 70, 45, 0.88)
        ),

        url("../img/contacto/contacto-hero.png");

    background-size: cover;

    background-position: center;
}


/* Información */

.contact-info-card {

    padding: 26px 20px;
}


/* Formulario */

.contact-form-wrapper {

    padding: 28px 22px;

    border-radius: 22px;
}


.btn-contact-submit {

    width: 100%;

    text-align: center;
}


/* Tarjeta lateral */

.contact-side-card {

    padding: 32px 25px;

    border-radius: 22px;
}


.contact-side-card h2 {

    font-size: 1.55rem;
}


/* Mapa */

.contact-map-placeholder {

    min-height: 300px;

    padding: 30px 22px;

    border-radius: 22px;
}


/* Trabaja con nosotros */

.contact-work-section {

    padding-bottom: 60px;
}


.contact-work-box {

    padding: 32px 25px;

    border-radius: 22px;
}


.contact-work-content {

    align-items: flex-start;
}


.contact-work-icon {

    width: 55px;
    height: 55px;
}


.contact-work-content h2 {

    font-size: 1.5rem;
}


.contact-work-box .btn-school-contact {

    width: 100%;

    text-align: center;
}

/* =============================================================================================
                                TALLERES MOBILE
============================================================================================= */

.workshops-page-hero {

    background:

        linear-gradient(
            rgba(3, 70, 45, 0.88),
            rgba(3, 70, 45, 0.88)
        ),

        url("../img/talleres/talleres-hero.png");

    background-size: cover;

    background-position: center;
}


/* Introducción */

.workshops-intro-image img {

    height: 300px;

    border-radius: 22px;
}


.workshops-highlight {

    width: 100%;

    align-items: flex-start;
}


/* Tarjetas */

.workshop-image {

    height: 220px;
}


.workshop-content {

    padding: 28px 23px 24px;
}


.workshop-content > p {

    min-height: auto;
}


/* Participación */

.participation-step {

    align-items: flex-start;

    padding: 20px;

    gap: 15px;
}


.participation-step > span {

    width: 48px;
    height: 48px;
}


/* Galería */

.workshops-gallery {

    display: grid;

    grid-template-columns: 1fr;

    grid-template-rows: none;

    gap: 14px;
}


.workshops-gallery-item,
.workshops-gallery-item.gallery-main {

    grid-column: auto;

    grid-row: auto;

    height: 230px;
}


.workshops-gallery-overlay {

    opacity: 1;
}


    /* =============================================================================================
                                DOCUMENTOS MOBILE
============================================================================================= */

.documents-page-hero {

    background:

        linear-gradient(
            rgba(3, 70, 45, 0.88),
            rgba(3, 70, 45, 0.88)
        ),

        url("../img/documentos/documentos-hero.png");

    background-size: cover;

    background-position: center;
}

.documents-intro-icon {

    width: 58px;
    height: 58px;
}


.document-category-card {

    min-height: 110px;

    padding: 20px;
}


.featured-document-icon {

    width: 75px;
    height: 75px;

    font-size: 1.6rem;
}


.featured-document-action {

    width: 100%;
}


.btn-document-primary {

    width: 100%;

    text-align: center;
}


/* Documentos */

.document-group {

    margin-top: 50px;
}


.document-card {

    min-height: auto;

    padding: 25px 22px;
}


.document-card-footer {

    align-items: flex-start;

    flex-direction: column;
}


/* Ayuda */

.documents-help-section {

    padding-bottom: 60px;
}


.documents-help-box {

    padding: 32px 25px;
}


.documents-help-content {

    align-items: flex-start;
}


.documents-help-icon {

    width: 55px;
    height: 55px;
}


.documents-help-content h2 {

    font-size: 1.5rem;
}


.documents-help-box .btn-school-contact {

    width: 100%;

    text-align: center;
}

    .communications-page-hero {

        background:

            linear-gradient(
                rgba(3, 70, 45, 0.88),
                rgba(3, 70, 45, 0.88)
            ),

            url("../img/comunicados/comunicados-hero.png");

            background-size: cover;

            background-position: center;
    }


    .featured-communication {

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 22px;

        padding: 25px;
    }


    .featured-date {

        width: 95px;

        min-height: 95px;
    }


    .featured-day {

        font-size: 2rem;
    }


    .featured-action {

        width: 100%;
    }


    .btn-communication {

        width: 100%;

        text-align: center;
    }


    .communication-card {

        min-height: auto;

        padding: 26px 23px;
    }


    .communications-pagination {

        flex-wrap: wrap;
    }


    .communication-help-section {

        padding-bottom: 60px;
    }


    .communication-help-box {

        padding: 32px 25px;
    }


    .communication-help-content {

        align-items: flex-start;
    }


    .communication-help-icon {

        width: 55px;
        height: 55px;
    }


    .communication-help-content h2 {

        font-size: 1.5rem;
    }


    .communication-help-box .btn-school-contact {

        width: 100%;
    }

    .admission-page-hero {

    background:
        linear-gradient(
            rgba(3,70,45,0.88),
            rgba(3,70,45,0.88)
        ),
        url("../img/admision/admision-hero.png");

    background-size: cover;
    background-position: center;
}

.value-card {
    padding: 28px 20px;
}

.admission-intro-image img {
    height: 300px;

    border-radius: 22px;
}


.admission-steps {
    grid-template-columns: 1fr;
}


.admission-step {
    padding: 28px 24px;
}


.admission-help-card {
    padding: 32px 26px;
}


.requirement-item {
    padding: 19px;

    gap: 14px;
}



    .page-hero {
    min-height: 330px;

    text-align: center;
    }


    .colegio-page-hero {

        background:

            linear-gradient(
                rgba(3, 70, 45, 0.88),
                rgba(3, 70, 45, 0.88)
            ),

            url("../img/hero-macaya.png");

        background-size: cover;

        background-position: center;
    }


    .page-hero-content {
        padding: 60px 0;
    }


    .page-hero h1 {
        font-size: 2.7rem;
    }


    .page-hero-content > p {
        font-size: 0.95rem;
    }


    .page-breadcrumb {
        justify-content: center;
    }


    .about-school-image img {
        height: 340px;

        border-radius: 22px;
    }


    .about-image-badge {
        position: relative;

        right: auto;
        bottom: auto;

        width: calc(100% - 30px);

        margin: -30px auto 0;
    }


    .institution-card {
        padding: 30px 25px;
    }


    .institution-number {
        font-size: 4rem;
    }


    .school-value-card {
        padding: 28px 24px;
    }


    .education-card {
        padding: 28px 23px;
    }


    .trajectory-image img {
        height: 320px;
    }


    .school-contact-cta {
        padding-bottom: 60px;
    }


    .school-contact-box {
        padding: 34px 26px;

        border-radius: 22px;
    }


    .btn-school-contact {
        width: 100%;

        text-align: center;
    }


    /* =============================================================================================
                                HEADER MOBILE
    ============================================================================================= */

    .main-header {

        position: relative;

        top: auto;

    }


    .navbar {

        min-height: 72px;

        padding: 7px 0;

    }


    .navbar-collapse {

        margin-top: 10px;

        padding: 14px 18px;

        border-radius: 16px;

        background: white;

        box-shadow:
            0 12px 30px rgba(0, 0, 0, 0.08);

    }


    .navbar-nav {

        gap: 0;

    }


    .navbar .nav-link {

        padding: 10px 6px !important;

        font-size: 0.92rem;

    }


    .btn-portal {

        width: 100%;

        margin-top: 8px;

        padding: 11px 18px;

        text-align: center;

    }


    .section-padding {

        padding: 60px 0;

    }


    /* Navbar */

    .navbar {

        padding: 8px 0;

    }


    .navbar-logo {

        width: 50px;

        height: 50px;

    }


    .brand-school {

        font-size: 0.62rem;

    }


    .brand-name {

        font-size: 1.15rem;

    }


    /* Hero */

    .hero-section {

        min-height: 560px;

        text-align: center;

        background-position: 68% center;

    }

    .hero-section {

        background:

            linear-gradient(
                rgba(3, 70, 45, 0.88),
                rgba(3, 70, 45, 0.88)
            ),

            url("../img/hero-macaya.png");

        background-size: cover;

        background-position: center;

    }

    .min-vh-hero {

        min-height: 560px;

    }


    .hero-title {

        font-size: 3rem;

    }


    .hero-subtitle {

        font-size: 1.35rem;

    }


    .hero-description {

        margin-left: auto;

        margin-right: auto;

        font-size: 0.98rem;

    }


    .hero-buttons {

        justify-content: center;

    }


    .btn-macaya-primary,
    .btn-macaya-secondary {

        width: 100%;

        max-width: 300px;

    }


    /* Accesos */

    .quick-access-section {

        margin-top: -25px;

    }


    .quick-access-wrapper {

        border-radius: 20px;

    }


    .quick-card {

        min-height: 125px;

        padding: 20px;

    }


    /* Títulos */

    .section-header {

        align-items: flex-start;

        flex-direction: column;

    }


    .section-title {

        font-size: 2rem;

    }


    /* Valores */

    .value-card {

        padding: 28px 20px;

    }


    /* News */

    .news-card {
    min-height: auto;
}


.news-card p {
    min-height: auto;
}


.news-section .section-header {
    align-items: flex-start;
    flex-direction: column;

    gap: 14px;
}


/* =============================================================================================
                                VIDA EN MACAYA MOBILE
============================================================================================= */

.life-gallery {

    display: grid;

    grid-template-columns: 1fr;

    grid-template-rows: none;

    gap: 14px;

}


/*
    Usamos exactamente el mismo nivel de especificidad que
    las reglas de escritorio para poder sobrescribirlas.
*/

.life-gallery .life-image:nth-child(1),
.life-gallery .life-image:nth-child(2),
.life-gallery .life-image:nth-child(3),
.life-gallery .life-image:nth-child(4) {

    grid-column: 1;

    grid-row: auto;

    height: 230px;

}


.life-overlay {

    opacity: 1;

}


    /* Admisión */

    .admission-cta {

        padding-bottom: 60px;

    }


    .admission-box {

        padding: 34px 26px;

        border-radius: 22px;

    }


    .btn-admission {

        white-space: normal;

    }


    /* Footer */

    .main-footer {

        padding-top: 55px;

    }


    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

    }

    /* =============================================================================================
                                SECCIONES MOBILE
    ============================================================================================= */

    .section-header {

        gap: 14px;

    }


    .section-link {

        margin-top: 0;

    }


    .news-section.section-padding {

        padding-top: 55px;

        padding-bottom: 55px;

    }

}


/* -------------------------------------------------------------------------------------------------
                                  Celulares pequeños
------------------------------------------------------------------------------------------------- */

@media (max-width: 480px) {

    .container {

        padding-left: 18px;

        padding-right: 18px;

    }


    .navbar-toggler {

        padding: 5px 8px;

    }


    .hero-section {

        min-height: 520px;

    }


    .min-vh-hero {

        min-height: 520px;

    }


    .hero-eyebrow {

        font-size: 0.72rem;

        letter-spacing: 2px;

    }


    .hero-title {

        font-size: 2.6rem;

    }


    .hero-subtitle {

        font-size: 1.2rem;

    }


    .hero-description {

        font-size: 0.92rem;

    }


    .quick-access-wrapper {

        padding: 12px;

    }


    .quick-card {

        min-height: 115px;

        padding: 17px;

    }


    .quick-icon {

        width: 40px;

        height: 40px;

    }


    .quick-content h3 {

        font-size: 0.93rem;

    }


    .quick-content p {

        font-size: 0.76rem;

    }


    .quick-arrow {

        top: 16px;

        right: 16px;

    }


    .admission-box {

        padding: 30px 22px;

    }

}


/* =================================================================================================
                                  SELECCIÓN DE TEXTO
================================================================================================= */

::selection {

    color: white;

    background: var(--macaya-burgundy);

}