/* =====================================================
                    DRUPAL NODE – BASE CSS (SINGLE FILE)
                    Scopeado por nodo – sin reset global
                    ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght,wdth@0,100..900,62.5;1,100..900,62.5&display=swap');

.node-scope {

    /* ===== VARIABLES ===== */
    --color-primary: #DA1B21;
    --color-secondary: #F8F8F8;
    --color-accent: #DA1B21;
    --color-text: #323232;
    --color-muted: #6b7280;
    --color-border: #e5e7eb;
    --color-bg: linear-gradient(180deg, rgba(32, 39, 53, 1) 69%, rgba(76, 96, 121, 1) 100%);
    --color-subtitle: #594727;
    --font-base: 'Noto Sans', sans-serif;

    --fs-base: 1rem;
    --fs-sm: 0.875rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2.25rem;

    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;

    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 3rem;

    --radius-sm: 4px;
    --radius-md: 8px;

    --container-max: 1200px;

    font-family: var(--font-base);
    font-size: var(--fs-base);
    color: var(--color-text);
}

.main,
.main-fluid {
    margin-top: 83px;
    background-color: #F5F5F5 !important;

}

/* ===== TYPOGRAFÍA ===== */

.node-scope h1,
.node-scope h2,
.node-scope h3,
.node-scope h4,
.node-scope h5,
.node-scope h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin: 0 0 0 0;
    font-weight: bold;
}

.node-scope.home .hero h1,
.node-scope.home2 .hero2 h1 {
    font-size: 67px;
    line-height: 1;
    color: #fff;
    padding-left: 67px;
    border-left: 23px solid var(--color-primary);
    font-family: var(--font-base);
    font-weight: var(--fw-semibold);
    font-stretch: 62.5%;
}



.node-scope.historias .hero h1,
.node-scope.donar .hero h1 {
    font-size: 56px;
    color: #fff;
    font-family: var(--font-base);
    font-weight: var(--fw-semibold);
    font-stretch: 62.5%;
}

.node-scope h3 {
    font-size: var(--fs-lg);
}

.node-scope p {}

.node-scope small {
    font-size: var(--fs-sm);
    color: var(--color-muted);
}

/* ===== CONTENEDORES ===== */

.node-scope .container {
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--space-md);
}

.node-scope .section {
    padding-block: var(--space-lg);
}

/* ===== FLEXBOX ===== */

.node-scope .flex {
    display: flex;
    gap: var(--space-md);
}

.node-scope .flex--center {
    align-items: center;
    justify-content: center;
}

.node-scope .flex--between {
    justify-content: space-between;
}

.node-scope .flex--column {
    flex-direction: column;
}

.node-scope .flex--wrap {
    flex-wrap: wrap;
}

/* ===== GRID ===== */

.node-scope .grid {
    display: grid;
    gap: var(--space-md);
}

.node-scope .grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.node-scope .grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.node-scope .grid--auto {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* ===== COMPONENTES ===== */

/* === Modales === */

.node-scope .modal-header {

    background-color: var(--color-primary);
    color: #fff;
    padding: 10px 20px;
}

.node-scope .modal-footer {
    border-top: none;
}

/*==== navbar ====*/

.cont-menu {
    position: fixed;
    z-index: 20;
    width: 100%;
    top: 0;
}

.node-scope .logo-menu {
    width: 12%;
    display: block;
}


.node-scope .cont-menu .navbar {
    background-color: #202735;
    background: var(--color-bg);
    padding: 12px 0px;
    padding-left: 105px;
    font-stretch: 62.5%;

}


.node-scope .cont-menu .navbar .nav-link {
    color: #fff;
    font-weight: 500;
    line-height: 20px;
    text-decoration: none;
    padding: 16px 50px;
    font-family: var(--font-base);
    font-stretch: 62.5%;
    text-transform: uppercase;
}

.node-scope .cont-menu .navbar .nav-link:hover {
    color: var(--color-primary);
}

.node-scope .cont-menu .navbar .navbar-nav .nav-item {
    border-right: 1px solid #fff;
}

.node-scope .cont-menu .navbar .navbar-nav .nav-item:last-child {
    border-right: none;
}


/*==== home ===*/

.node-scope.home {

    height: 85vh;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;


}

.node-scope.home2 {

    height: 85vh;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;

}


/*==== hero ===*/

.node-scope.home .hero {
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url(https://urosario.edu.co/sites/default/files/2026-03/fondo-home-hero-2.webp);
    background-size: cover;
    background-position: 0px 0px;
    background-repeat: no-repeat;

}

.node-scope.home2 .hero2 {
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url(https://urosario.edu.co/sites/default/files/2026-03/fondo-home-hero-part-2.webp);
    background-size: cover;
    background-position: 0px 0px;
    background-repeat: no-repeat;

}

.node-scope.home .hero p,
.node-scope.home .hero2 p,
.node-scope.home2 .hero p,
.node-scope.home2 .hero2 p {
    color: #fff;
    font-family: var(--font-base);
    font-weight: var(--fw-light);
    line-height: 1.1;
    padding-left: 93px;
    font-stretch: 62.5%;
    font-size: clamp(1rem, -11.1414rem + 15.1616vw, 3rem);
}




/*=== Video rectora ===*/

.node-scope .video-rectora {
    width: 100%;
    display: block;
    max-width: 800px;
    height: 600px;
}

/*===historias===*/

.node-scope.historias,
.node-scope.donar {
    background-image: url(https://urosario.edu.co/sites/default/files/2026-03/fondo-interna-desk-2webp.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.node-scope.historias .hero .hero__titulo__descripcion {
    color: #fff;
    font-size: 24px;
    font-family: var(--font-base);
    font-weight: var(--fw-light);
    line-height: 24px;
    font-stretch: 62.5%;
}

.node-scope.donar .hero .hero__titulo__descripcion {
    color: #fff;
    font-size: 20px;
    font-family: var(--font-base);
    font-weight: var(--fw-light);
    line-height: 19px;
    font-stretch: 62.5%;
}

.node-scope.donar .hero .pse {
    background-color: #fff;
    padding: 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 21px 63px;
}

.node-scope.donar .hero .pse img {
    max-width: 216px;
}

.node-scope.donar .hero .pse__descripcion {
    width: 100%;
    text-align: center;
    background: #fff;
    font-size: 24px;
    font-family: var(--font-base);
    font-weight: var(--fw-light);
    line-height: 24px;
    min-height: 260.98px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 20px;
    font-stretch: 62.5%;
}

.node-scope.donar .card-testimonio .card-icon {
    position: absolute;
    top: -54px;
    left: -54px;
    width: 70px;
    height: 70px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-stretch: 62.5%;
}

.node-scope.donar .hero_part1 {
    z-index: 19;
    position: relative;

}

.node-scope.donar .hero_part1 img {
    width: 80%;
    margin: 0 auto;
    display: block;
}

.node-scope.donar .medios__pago {
    margin-top: -9%;
    z-index: 900;
}

/*==== text-intro ===*/

.node-scope.home .text-intro,
.node-scope.home2 .text-intro {
    height: 30%;
    background-image: url(https://urosario.edu.co/sites/default/files/2026-03/fondo-home-hero-part-2-1.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.node-scope.home .text-intro__texto {
    color: #fff;
    font-family: var(--font-base);
    font-weight: var(--fw-light);
    line-height: 1.2;
    text-align: center;
    font-stretch: 62.5%;
}

/*==== que es ===*/
.descripcion {
    margin-top: -3%;
}

.descripcion__texto {
    color: #fff;
    font-size: 1.3vw;
    font-family: var(--font-base);
    font-weight: var(--fw-light);
    line-height: 32px;
    text-align: left;
    line-height: 1.2;
    margin-top: 1rem;
    padding: 0 2rem;
    text-align: justify;
}

.node-scope.home2 .que-es {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.node-scope.home2 .que-es span {
    width: 103px;
    height: 103px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.node-scope.home2 .que-es__titulo {
    color: #fff;
    font-size: 27px;
    font-family: var(--font-base);
    font-weight: var(--fw-light);
    line-height: 32px;
    text-align: center;
    background-color: var(--color-primary);
    width: 85%;
    border-radius: 12px;
    line-height: 1;
    padding: 10px;
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-stretch: 62.5%;
}

.node-scope.home2 .que-es__titulo p {
    margin: 0;
}

.node-scope.donar .card-testimonio {
    background-color: #fff;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 20px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.node-scope.donar .card-testimonio .card-icon {
    position: absolute;
    top: -54px;
    left: -54px;
    width: 101px;
    height: 101px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.node-scope.donar .card-testimonio .card-testimonio__descripcion {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}

.node-scope.donar .card-testimonio .card-testimonio__descripcion p {
    font-size: 20px;
    font-family: var(--font-base);
    font-weight: 300;
    line-height: 24px;
    text-align: center;
    margin: 0;
    font-stretch: 62.5%;
}

/*===== compartir =====*/

.node-scope.compartir {
    background-image: url(https://urosario.edu.co/sites/default/files/2026-03/fondo-interna-desk-2webp.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.node-scope.compartir .h3 {
    color: #fff;
    line-height: 1;
    font-size: 50px;
    text-align: center;
    margin-bottom: 20px;
}

.node-scope.compartir .info {
    color: #fff;
    font-size: 20px;
    font-family: var(--font-base);
    font-weight: var(--fw-bold);
    line-height: 24px;
    text-align: center;
    margin: 0;
    padding: 60px 50px 10px 50px;
    height: 67vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url(https://urosario.edu.co/sites/default/files/2026-03/fondo-info.webp);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    font-stretch: 62.5%;

}

.node-scope.compartir .info {
    font-size: 18px;
    height: 730px;
    background-size: cover;
}

.node-scope.compartir .info__social-text {
    font-size: 16px;
    font-family: "Noto Sans", sans-serif;
    font-weight: 300;
    line-height: 24px;
    text-align: center;
    margin: 0;
}

.node-scope.compartir .info__social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* ===== ENLACES Y BOTONES ===== */

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}


.node-scope .btn-testimonio {
    font-size: 20px;
    font-family: "Noto Sans", sans-serif;
    font-weight: 300;
    line-height: 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 32px;
    background-color: var(--color-primary);
    color: #fff;
    margin: 0 auto;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);

}

.node-scope .btn-historias {
    color: #fff;
    font-size: 20px;
    font-family: var(--font-base);
    font-weight: var(--fw-light);
    line-height: 24px;
    text-decoration: none;
    width: 234px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 10px;
    background-color: var(--color-primary);
    color: #fff;
    margin: 0 auto;
    font-stretch: 62.5%;
}

.node-scope .btn-home {
    text-align: center;
    font-size: 50px;
    color: #fff;
    font-family: var(--font-base);
    font-weight: var(--fw-semibold);
    line-height: 1;
    border-radius: 90px;
    padding: 16px 65px;
    background-color: var(--color-primary);
    text-decoration: none;
    display: block;
    width: fit-content;
    margin: 0 auto;
    margin-top: -4%;
    margin-bottom: 3%;
    z-index: 0;
    position: relative;
}

.node-scope .btn-outline:hover {
    background-color: var(--color-primary);
    color: #ffffff;
}

.node-scope .btn-block {
    width: 100%;
}

.node-scope .card-logo__heading-link {
    color: var(--color-text);
    line-height: 1.2em;
    font-weight: 700;
    text-decoration: none;
}

.node-scope .btn-enlace {
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0.4em 1.2em;
    border-radius: 32px;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    border: none;
    color: var(--color-bg);
    background-color: var(--color-primary);
    text-decoration: none;
    border: 1px solid var(--color-primary);
}

.node-scope .btn-enlace:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    box-sizing: border-box;
}

/*=== Boton flotante ===*/
.node-scope.btn-donar-fixed a {
    text-decoration: none !important;
    outline: none;
    font-family: var(--font-base);
}

.node-scope.btn-donar-fixed a {
    position: fixed;
    z-index: 999;
    top: 20%;
    right: 0;
    color: #fff;
    background-color: var(--color-primary);
    padding: 12px 24px;
    font-size: 2em;
    transition: 1s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 40px 0px 0px 40px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.635);
}

.node-scope.btn-donar-fixed a img {
    width: 30px;
    animation: heartbeat 1.5s infinite;
    transform-origin: center;
    filter: drop-shadow(0 0 6px rgba(255, 0, 0, 0.6));
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    20% {
        transform: scale(1.2);
    }

    40% {
        transform: scale(1);
    }

    60% {
        transform: scale(1.25);
    }

    80% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}



@media (max-width: 540px) {}

/*===Card historias===*/

.node-scope .card-historia {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 277px;
}

.node-scope .card-historia h3 {
    font-size: 2rem;
    font-family: "Noto Sans", sans-serif;
    font-weight: 300;
    line-height: 1.2;
    color: #fff;
    text-align: center;
    margin-bottom: 0px;
    font-stretch: 62.5%;
}

.node-scope .card-historia__titulo__descripcion {
    font-size: .8rem;
    font-family: "Noto Sans", sans-serif;
    font-weight: 300;
    line-height: 1.2;
    color: #fff;
    text-align: center;
    margin-bottom: 0px;
    font-stretch: 62.5%;

}

.node-scope.donar .hero .pse__descripcion {

    font-size: 20px;
}

/* ===== formulario ===== */

.form-item__label {
    color: #fff;
    font-family: var(--font-base);
    font-weight: var(--fw-light);
}

legend.h2 {
    color: #fff;
    font-family: var(--font-base);
    font-weight: var(--fw-semibold);
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 1rem 0 .5rem;
    font-stretch: 62.5%;
}

.node-scope .js-form-item-title .form-item__label {
    display: none;
}

.node-scope .form-text {
    width: 100%;
}

.node-scope [type="email"] {
    width: 100%;
}

.node-scope [type="tel"] {
    width: 100%;
}

.node-scope [type="number"] {
    width: 100%;
}

.node-scope .form-fieldset .form-item {
    margin-left: 1em;
    max-width: 100%;
}

.node-scope .form-item__textfield.form-submit {
    border-radius: unset;
    width: 100%;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 12px;
    color: #fff;
    background-color: var(--color-primary);
}

.node-scope .form-item__textfield.form-submit:hover {
    background: var(--color-primary);
    color: #fff;
}

.node-scope .form-select {
    color: #fff;
    background-color: #262626a2;
}

.node-scope .form-select option {
    color: #fff;
    background-color: #262626a2;
}

.node-scope .form-select option:hover {
    background-color: var(--color-primary);
}


/* =========================
                DESKTOP FIRST (min-width)
                ========================= */

@media (min-width: 1601px) {


    .node-scope .cont-menu .navbar {

        padding: 16px 0px;

    }

    .node-scope.home {
        height: 91vh;
        padding-top: 0rem;
        margin-top: 0 px;
    }

    .node-scope.home .hero h1,
    .node-scope.home2 .hero2 h1 {
        font-size: clamp(1rem, -11.1414rem + 14.162vw, 67px);
        padding-left: 7%;

    }

    .node-scope.home .hero p,
    .node-scope.home .hero2 p,
    .node-scope.home2 .hero p,
    .node-scope.home2 .hero2 p {
        font-size: clamp(1rem, -11.1414rem + 16.1616vw, 2rem);
        padding-left: 8%;
    }

    .node-scope.home .text-intro,
    .node-scope.home2 .text-intro {
        height: 37%;

    }

    .node-scope.home .text-intro__texto {

        font-size: clamp(1rem, -11.1414rem + 15.1616vw, 1.8rem);
    }

    /*=====Historias=====*/

    .node-scope.historias,
    .node-scope.donar {
        min-height: 83vh;
        padding: 3rem 0px;
    }

    /*====compartir===*/

    .node-scope.compartir {
        min-height: 83vh;
        padding: 6% 0px;
    }

    .node-scope.compartir .info {
        background-size: 100%;
        margin: 2rem;
        height: 730px;
    }


}

@media (min-width: 1401px) and (max-width: 1600px) {

    .node-scope .cont-menu .navbar .nav-link {
        font-size: 24px;

    }

    .node-scope .cont-menu .navbar {

        padding: 16px 0px;

    }

    .node-scope.home {
        height: 91vh;
        padding-top: 0rem;
        margin-top: -7px;
    }

    .node-scope.home .hero h1,
    .node-scope.home2 .hero2 h1 {
        font-size: clamp(1rem, -11.1414rem + 17.162vw, 2.5rem);
        padding-left: 5%;

    }

    .node-scope.home .hero p,
    .node-scope.home .hero2 p,
    .node-scope.home2 .hero p,
    .node-scope.home2 .hero2 p {
        font-size: clamp(1rem, -11.1414rem + 15.1616vw, 3rem);
        padding-left: 8%;
    }

    .text-intro {
        height: 34%;

    }

    .node-scope.home .text-intro__texto {

        font-size: clamp(1rem, -11.1414rem + 15.1616vw, 1.5rem);
    }

    .node-scope.home2 .que-es {
        margin-top: 0%;
    }

    /*==historias==*/

    .node-scope.historias,
    .node-scope.donar {
        height: fit-content;
        padding: 3rem 0;
    }

    /*==Donar==*/
    .node-scope.donar .medios__pago {
        margin-top: -7%;
        z-index: 900;
    }

    .node-scope.donar .card-testimonio {
        gap: 17px;
    }

    .node-scope.donar .card-testimonio .card-testimonio__descripcion {

        gap: 14px;
        margin-bottom: 16px;
    }

    /*===Botones===*/
    .node-scope .btn-home {
        font-size: 3.5vw;
        margin-top: -4%;
    }

    .node-scope.compartir .info {
        height: 723px;
        margin-top: 2rem;
        background-size: 85%;
    }

    .node-scope.compartir {
        background-image: url(https://urosario.edu.co/sites/default/files/2026-03/fondo-interna-desk.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        height: fit-content;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-bottom: 3rem;
        padding-top: 3rem;
        font-stretch: 62.5%;
    }
}

/* Base desktop grande: 1202px y más */
@media (min-width: 1202px) and (max-width: 1400px) {

    .node-scope .cont-menu .navbar .nav-link {
        font-size: 24px;

    }

    .node-scope .cont-menu .navbar {

        padding: 16px 0px;

    }

    .node-scope.home {
        height: 91vh;
        padding-top: 0rem;
        margin-top: -7px;
    }

    .node-scope.home .hero h1,
    .node-scope.home2 .hero2 h1 {
        font-size: clamp(1rem, -11.1414rem + 17.162vw, 2.5rem);
        padding-left: 5%;

    }

    .node-scope.home .hero p,
    .node-scope.home .hero2 p,
    .node-scope.home2 .hero p,
    .node-scope.home2 .hero2 p {
        font-size: clamp(1rem, -11.1414rem + 15.1616vw, 3rem);
        padding-left: 8%;
    }

    .text-intro {
        height: 34%;

    }

    .node-scope.home .text-intro,
    .node-scope.home2 .text-intro {
        height: 39%;

    }

    .node-scope.home .text-intro__texto {

        font-size: clamp(1rem, -11.1414rem + 15.1616vw, 1.5rem);
    }

    .node-scope.home2 .que-es {
        margin-top: 0%;
    }

    /*==historias==*/

    .node-scope.historias,
    .node-scope.donar {
        height: fit-content;
        padding: 3rem 0;
    }

    /*==Donar==*/
    .node-scope.donar .medios__pago {
        margin-top: -7%;
        z-index: 900;
    }

    .node-scope.donar .card-testimonio {
        gap: 17px;
    }

    .node-scope.donar .card-testimonio .card-testimonio__descripcion {

        gap: 14px;
        margin-bottom: 16px;
    }

    /*===Botones===*/
    .node-scope .btn-home {
        font-size: 3.5vw;
        margin-top: -4%;
    }

    .node-scope.compartir .info {
        height: 105vh;
        margin-top: 2rem;
        background-size: 100%;
    }

    .node-scope.compartir {
        background-image: url(https://urosario.edu.co/sites/default/files/2026-03/fondo-interna-desk.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        height: fit-content;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-bottom: 3rem;
        padding-top: 3rem;
        font-stretch: 62.5%;
    }
}

/* Small desktop / laptops (1024px - 1201px) */
@media (min-width: 1024px) and (max-width: 1201px) {

    .node-scope.home .hero h1,
    .node-scope.home2 .hero2 h1 {
        font-size: 5vw;
    }

    .node-scope.home .hero p,
    .node-scope.home .hero2 p,
    .node-scope.home2 .hero p,
    .node-scope.home2 .hero2 p,
    .node-scope.home .text-intro__texto {
        font-size: 3vw;
        line-height: 1.2;
    }

    .node-scope.home2 .que-es__titulo {
        font-size: 3vw;
        border-radius: 12px;
        line-height: 1;
        padding: 10px 20px 10px 78px;
        min-height: 70px;
    }

    .descripcion__texto {
        padding: 0 31px;
    }

    .node-scope.home .hero2,
    .node-scope.home2 .hero2 {
        height: 70%;
        background-position: 65% 0px;
    }

    .node-scope .btn-home {
        font-size: 7vw;
        margin-top: -10%;
        margin-bottom: 3%;
    }
}

/* Tablets grandes (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {

    .node-scope.home .hero h1,
    .node-scope.home2 .hero2 h1 {
        font-size: 5vw;
    }

    .node-scope.home .hero p,
    .node-scope.home .hero2 p,
    .node-scope.home2 .hero p,
    .node-scope.home2 .hero2 p,
    .node-scope.home .text-intro__texto {
        font-size: 3vw;
        line-height: 1.2;
    }

    .node-scope.home2 .que-es__titulo {
        font-size: 3vw;
        padding: 10px 20px 10px 78px;
    }

    .descripcion__texto {
        font-size: 16px;
    }

    .node-scope.home .hero2,
    .node-scope.home2 .hero2 {
        height: 65%;
        background-position: 65% 0px;
    }

    .node-scope .btn-home {
        font-size: 5vw;
        margin-top: -5%;
        margin-bottom: 6%;
    }

    .node-scope.home {
        padding-top: 5%;
    }

    .node-scope.compartir .info {
        padding: 20px 50px 10px 50px;
        height: 727px;
    }
}

/* Móviles (menos de 768px) */
@media (min-width: 436px) and (max-width: 767px) {

    .node-scope .cont-menu .navbar .nav-link {
        font-size: 24px;

    }

    .node-scope .cont-menu .navbar {

        padding: 16px 0px;

    }

    .node-scope.home {
        height: 91vh;
        padding-top: 0rem;
        margin-top: -7px;
    }

    .node-scope.home2 {
        height: 100vh;

    }

    .node-scope.home .hero h1,
    .node-scope.home2 .hero2 h1 {
        font-size: clamp(2rem, -11.1414rem + 17.162vw, 2.5rem);
        padding-left: 5%;

    }

    .node-scope.home .hero p,
    .node-scope.home .hero2 p,
    .node-scope.home2 .hero p,
    .node-scope.home2 .hero2 p {
        font-size: clamp(1rem, -11.1414rem + 15.1616vw, 3rem);
        padding-left: 8%;
    }

    .node-scope.home .hero {
        height: 74%;

    }

    .node-scope.home2 .hero2 {
        height: 50%;

    }

    .text-intro {
        height: 34%;

    }

    .node-scope.home2 .que-es__titulo {
        font-size: 19px;

        width: 88%;

        min-height: 61px;


    }

    .node-scope.home2 .text-intro {
        height: 50%;

    }

    .node-scope.home .text-intro__texto {

        font-size: clamp(1rem, -11.1414rem + 15.1616vw, 1.5rem);
    }

    .node-scope.home2 .que-es {
        margin-top: 0%;
    }


    .descripcion__texto {
        font-size: clamp(1rem, -11.1414rem + 15.1616vw, 1.5rem);

    }

    /*==historias==*/

    .node-scope.historias,
    .node-scope.donar {
        height: fit-content;
        padding: 3rem 0;
    }

    /*==Donar==*/
    .node-scope.donar .medios__pago {
        margin-top: -15%;
        z-index: 900;
    }

    .node-scope.donar .card-testimonio {
        gap: 17px;
    }

    .node-scope.donar .card-testimonio .card-testimonio__descripcion {

        gap: 14px;
        margin-bottom: 16px;
    }

    .node-scope.historias .hero .hero__titulo__descripcion br {
        display: none;
    }

    /*===Botones===*/
    .node-scope .btn-home {
        font-size: 3.5vw;
        margin-top: -4%;
    }

    .node-scope.btn-donar-fixed a {
        font-size: 1rem;
        top: 30%;
        padding: 5px 8px;
    }

    .node-scope.btn-donar-fixed a img {
        width: 18%;
    }

    .node-scope.compartir .info {
        height: 90vh;
        margin-top: 2rem;
        background-size: 100%;
        padding: 32px 30px 10px 30px;
    }

    .node-scope.compartir {
        background-image: url(https://urosario.edu.co/sites/default/files/2026-03/fondo-interna-desk.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        height: fit-content;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-bottom: 3rem;
        padding-top: 3rem;
        font-stretch: 62.5%;
    }
}

@media (max-width: 435px) {

    .node-scope .cont-menu .navbar .nav-link {
        font-size: 24px;

    }

    .node-scope .cont-menu .navbar {

        padding: 16px 0px;

    }

    .node-scope.home {
        height: 91vh;
        padding-top: 0rem;
        margin-top: 0px;
    }

    .node-scope.home2 {
        height: 100vh;

    }

    .node-scope.home .hero h1,
    .node-scope.home2 .hero2 h1 {
        font-size: clamp(2rem, -11.1414rem + 17.162vw, 2.5rem);
        padding-left: 5%;

    }

    .node-scope.home .hero p,
    .node-scope.home .hero2 p,
    .node-scope.home2 .hero p,
    .node-scope.home2 .hero2 p {
        font-size: clamp(1rem, -11.1414rem + 15.1616vw, 3rem);
        padding-left: 8%;
    }

    .node-scope.home .hero {
        height: 74%;
        background-position: center;

    }

    .node-scope.home2 .hero2 {
        height: 50%;
        background-position: center;

    }

    .text-intro {
        height: 34%;

    }

    .node-scope.home2 .que-es__titulo {
        font-size: 19px;

        width: 88%;

        min-height: 61px;


    }

    .node-scope.home2 .text-intro {
        height: 50%;

    }

    .node-scope.home .text-intro__texto {

        font-size: clamp(1rem, -11.1414rem + 15.1616vw, 1.5rem);
    }

    .node-scope.home2 .que-es {
        margin-top: 0%;
    }


    .descripcion__texto {
        font-size: clamp(1rem, -11.1414rem + 15.1616vw, 1.5rem);

    }

    /*==historias==*/

    .node-scope.historias .hero h1,
    .node-scope.donar .hero h1 {
        font-size: clamp(1.7rem, -11.1414rem + 15.1616vw, 2rem);

    }

    .node-scope.historias,
    .node-scope.donar {
        height: fit-content;
        padding: 3rem 0;
    }

    /*==Donar==*/
    .node-scope.donar .medios__pago {
        margin-top: -15%;
        z-index: 900;
    }

    .node-scope.donar .card-testimonio {
        gap: 17px;
    }

    .node-scope.donar .card-testimonio .card-testimonio__descripcion {

        gap: 14px;
        margin-bottom: 16px;
    }

    .node-scope.historias .hero .hero__titulo__descripcion br {
        display: none;
    }

    .node-scope.donar .card-testimonio .card-icon {

        top: -31px;
        left: -15px;
        width: 50px;
        height: 50px;

    }

    .node-scope.donar .card-testimonio .card-icon img {

        width: 33%;


    }

    /*==Compartir==*/

    .node-scope.compartir .info {
        height: 80vh;
        margin-top: 2rem;
        background-size: 100%;
        padding: 16px 0px;
        font-size: 1rem;
    }

    /*===Botones===*/
    .node-scope .btn-home {
        font-size: 3.5vw;
        margin-top: -4%;
    }

    .node-scope.btn-donar-fixed a {
        font-size: 1rem;
        top: 42%;
    }

    .node-scope.btn-donar-fixed a img {
        width: 20%;
    }

    .node-scope.compartir {
        background-image: url(https://urosario.edu.co/sites/default/files/2026-03/fondo-interna-desk.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        height: fit-content;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-bottom: 3rem;
        padding-top: 3rem;
        font-stretch: 62.5%;
    }
}