@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: #DA0921;
    --color-secondary: #FACAFB;
    --color-accent: #E1A4B1;
    --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: 'Carlito', sans-serif;
    --color-red-light: #FBE5E9;
    --color-red-dark: #ac0000;
    --color-green-light: #E5F0F1;
    --color-green-dark: #006D77;
    --color-bluegreen-light: #F2FAFA;
    --color-bluegreen-dark: #00A0A0;
    --color-white: #ffffff;
    --color-blue-light: #E8EDFB;
    --color-blue: #1D4ED8;
    --color-dark-gray: #475569;


    --fs-base: 1rem;
    --fs-xs: 20px;
    --fs-sm: 24px;
    --fs-lg: 28px;
    --fs-xl: 2rem;
    --fs-2xl: 40px;

    --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: 120px;
    background-color: #F5F5F5 !important;
    background-image: url(https://urosario.edu.co/sites/default/files/2025-11/bg-experiencia-docentes-internacionales-home-1.webp) !important;

    background-size: 90% !important;
    background-position: left center !important;
    background-repeat: no-repeat;
    background-attachment: fixed !important;
}

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

.node-scopes .color-primary {
    color: var(--color-primary);
}

.node-scopes .strong-primary {
    color: var(--color-primary);
    font-weight: var(--fw-bold);
}

.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;
    line-height: 1.2;
}

.node-scope .title {
    font-size: clamp(2rem, 5vw, 50px) !important;
}

.node-scope .subtitle {
    font-size: clamp(2rem, 5vw, 25px) !important;
    font-family: var(--font-base) !important;
}

.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 h3 {
    font-size: var(--fs-sm);
}

.node-scope h5 {
    font-size: var(--fs-xs);
}


.node-scope p {}

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

.mt-less-sm {
    margin-top: -63px;
    z-index: 1;
    position: relative;
}

/* ===== 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));
}

/*==== banner info ====*/

.node-scope .banner {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: fit-content;
    gap: 1.5rem;

    padding: 1.5rem 2rem;

    text-align: center;

    border-radius: 24px;

    background-color: #ffffff;
}

.node-scope .banner--info {
    background-color: #ffffff;
}

.node-scope .banner__icon i {
    font-size: 3rem;
    color: var(--color-primary);
}

.node-scope .banner__content {
    position: relative;
}

.node-scope .banner__text {
    max-width: 600px;

    font-size: 1rem;
    line-height: 1.2;

    color: var(--color-text);

    margin: 0;
}

/*===Banner cta===*/

.node-scope .banner--cta {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 3rem;
    overflow: hidden;
    flex-direction: row;
    background-color: var(--color-primary);
}

.node-scope .banner__content {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.node-scope .banner--cta .banner__title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
    text-align: left;
}

.node-scope .banner--cta .banner__text {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, .9);
    margin: 0;
    text-align: left;
}

/*==== tags ====*/
.node-scope .tag {
    padding: 3px 16px;
    border-radius: 32px;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    font-family: var(--font-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: fit-content;
}

.node-scope .tag-red {
    background-color: #FCF5F6;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.node-scope .tag-gray {
    background-color: #F5F5F5;
    color: #475569;
    border: 1px solid #E2E8F0;
}

.node-scope .tag-green {
    background-color: var(--color-green-light);
    color: var(--color-green-dark);
    border: 1px solid #E2E8F0;
}

.node-scope -tag-green-light {
    background-color: var(--color-bluegreen-light);
    color: var(--color-bluegreen-dark);
    border: 1px solid #E2E8F0;
}

.node-scope .tag-blue {
    background-color: var(--color-blue-light);
    color: var(--color-blue);
    border: 1px solid var(--color-blue);
}

.node-scope .tag-red p,
.node-scope .tag-gray p {
    margin: 0;
}

.node-scope .tag-red i,
.node-scope .tag-gray i {
    font-size: 20px;
}

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

.bgc-white .layout-content {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.10);
    padding: 1rem;
}

/*=== Mensajes ===*/

.node-scope .mensaje-primary {
    background-color: var(--color-red-light);
    border-radius: 0px 16px 16px 0px;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.10);
    padding: 1.5rem;
    border-left: 10px solid var(--color-primary);
}

.node-scope .mensaje-primary h4 {
    color: var(--color-primary);
}

.node-scope .mensaje-primary ul {
    margin: 0px auto 28px auto;
    padding-left: 16px;
}

.node-scope .mensaje-primary li {
    margin: 0;
    padding: 0;
}

.node-scope .mensaje-primary li::marker {
    color: var(--color-primary);
    font-size: 20px;
}

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

.node-scope .cont-menu {
    position: fixed;
    z-index: 5;
    width: 100%;
    top: 120px;
    left: 0;

}

@media (max-width: 991px) {
    .node-scope .cont-menu {
        top: 80px;
    }
}

.node-scope .navbar-brand {
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 1rem;
    font-size: 1rem;
    text-decoration: none;
    white-space: nowrap;
    color: white;
    font-weight: 300 !important;
    font-family: 'Carlito', sans-serif;
}

.node-scope .cont-menu .navbar {
    background-color: #323232;

}

.node-scope .cont-menu .navbar .nav-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.node-scope .cont-menu .navbar .nav-link {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    line-height: 16px;
    text-decoration: none;
    padding: 12px 20px;
    font-family: var(--font-base);

}

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

.node-scope .cont-menu .navbar .btn-outline-gray:hover {
    color: var(--color-primary);
}


/*==== hero ===*/
.node-scope .hero-image {}

.node-scope .hero-image__body {
    max-width: 75%;
}


.node-scope .hero-image>img {
    flex-grow: 1;
    max-width: 444px;
    height: auto;
    object-position: center center;
    object-fit: cover;

}

.node-scope .hero-image>h1 {
    text-align: start;
    color: var(--color-white);
}

.node-scope .hero-image__body h2 {
    font-size: 24px;
    font-weight: var(--fw-regular);
    color: var(--color-primary);
}

.node-scope .hero-image__body p {
    font-size: 1.25rem;
    color: var(--color-white);
    text-align: start;
    line-height: 1;
}

.node-scope .hero-image__content-wrapper {
    max-width: 76%;
    width: 100%;
    margin: 0 auto;
    padding: 0 0rem;
    display: flex;
    align-items: center;
    justify-content: start;
    height: 100%;

}

/*====Feature====*/

.node-scope .feature-item {
    padding: 1rem 1.25rem;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 16px;
    width: fit-content;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-start;
}

.node-scope .feature-item .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-green-light);
    width: 47px;
    height: 47px;
    border-radius: 16px;
    flex-shrink: 0;
}

.node-scope .feature-item .icon i {
    color: var(--color-primary);
}

.node-scope .feature-item p {
    font-size: 1rem;
    margin: 0;
    line-height: 19px;
    text-align: start;
}

.node-scope .feature-item p strong {
    color: var(--color-primary);
}

/*====Read more====*/

.node-scope .read-more {
    position: relative;
    flex-direction: column;
    display: flex;
    align-items: end;


}

.node-scope .read-more__content {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    transition: all 0.4s ease;
}

/* Estado colapsado */
.node-scope .read-more.collapsed .read-more__content {
    -webkit-line-clamp: var(--lines);
}

/* Fade */
.node-scope .read-more.collapsed::after {
    content: "";
    position: absolute;
    bottom: 30px;
    /* ajustado para no tapar botón */
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, transparent, white);
    pointer-events: none;
}

.node-scope#nosotros .read-more.collapsed::after {
    content: "";
    position: absolute;
    bottom: 30px;
    /* ajustado para no tapar botón */
    left: 0;
    width: 100%;
    height: 60px;
    /* background: linear-gradient(to bottom, transparent, white); */
    background: none;
    pointer-events: none;
}

/* Botón */
.node-scope .read-more__btn {
    margin-top: 10px;
    background: none;
    border: none;
    color: var(--color-primary);
    cursor: pointer;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.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;
}


/*=== Listados ===*/

.node-scope .list-invitados {
    list-style: none;
    padding: 0;
    margin: 0;
    height: fit-content;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.node-scope .list-invitados .item-invitado {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    position: relative;
    padding-left: 20px;
}

.node-scope .list-invitados .item-invitado::before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: var(--color-primary);
    border-radius: 50%;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 7px;
}

.node-scope .list-invitados .item-invitado span {
    font-size: 20px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    line-height: 24px;
    color: var(--color-primary);

}

/*=== Programacion ===*/

.node-scope .programacion-item {
    border-bottom: 1px solid #E2E2E2;
    padding: 10px 0;
}

.node-scope .programacion-item h5,
.node-scope .programacion-item p {
    margin: 0;
}

.node-scope .programacion-item ul {
    margin: 0;
    padding-left: 20px;
}

.node-scope .programacion-item ul li {
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-text);
    padding-left: 0px;
}



/*=== Patrocinadores ===*/

.node-scope .partners-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
    align-items: center;
    width: 100%;
}

/*=====  Item  =====*/

.node-scope .partners-grid__item {

    display: flex;

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

    min-height: 120px;

    padding: 1rem;
}

/*=====  Logo  =====*/

.node-scope .partners-grid__logo {

    width: 100%;

    max-width: 180px;

    height: auto;

    object-fit: contain;

    transition:
        transform .3s ease,
        opacity .3s ease;

    opacity: .9;
}

/*=====  Hover  =====*/

.node-scope .partners-grid__item:hover .partners-grid__logo {

    transform: scale(1.05);

    opacity: 1;
}

/*=== tabs ===*/

.node-scope .tab-bootstap .nav {
    flex-wrap: nowrap;
    margin-bottom: 10px;
    box-shadow: none;
}

.node-scope .tab-bootstap .tab-content {
    width: 100%;
    padding: 32px 32px;
    background: #fff;
    border-radius: 16px;
}

.node-scope .tab-bootstap--vertical .nav-item {
    background-color: transparent;
    width: 313px;
    margin-bottom: 10px;
}

.node-scope .tab-bootstap--vertical .nav-link.active {
    box-shadow: 2px 2px 2px rgba(0, 0, 0, .1);
    border: solid 1px var(--color-primary);
    transform: none;
}

.node-scope .tab-bootstap .nav-link.active {
    color: var(--color-primary);
    background-color: var(--color-green-light);
}

.tab-bootstap .nav-link a {

    color: #475569;

}

.node-scope .tab-bootstap--vertical .nav-link {
    border: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    min-height: 80px;
    padding: 10px;
    transition: all .2s;
}

.node-scope .tab-bootstap .nav-link span {
    font-size: 1.2rem;
    margin-right: 5px;
    color: #475569;
}

.tab-bootstap .nav-link.active span {
    color: var(--color-primary);
}

.tab-bootstap .nav-link.active a {
    color: var(--color-primary)
}

.node-scope .tab-bootstap--vertical .nav-link {
    border: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    min-height: fit-content;
    padding: 22px;
    border-radius: 24px;
    transition: all .2s;
}

.node-scope .tab-bootstap--vertical .nav .link {
    min-height: fit-content;
    text-align: left !important;
    justify-content: flex-start !important;
    font-family: "Carlito", sans-serif;
    font-size: 1rem !important;
    font-weight: bold;
    text-decoration: none;
}

.node-scope .tab-content .card {
    border: none
}

.node-scope .tab-content .card-body {
    flex: 1 1 auto;
    padding: 1rem 0rem;

}

/*==== TABS MOBILE====*/

.node-scope .tab-accordion-mobile .accordion-header:not(.collapsed) {
    background-color: var(--color-green-light);
    padding: 0px;
    border: 1px solid var(--color-primary);
    border-radius: 8px;
}

.node-scope .tab-accordion-mobile .accordion-header:not(.collapsed)>a {
    color: var(--color-primary);
    margin-bottom: 0px;
}

.node-scope .tab-accordion-mobile .accordion-header a {
    font-size: 1.1rem;
    text-decoration: none;
    color: #475569;
    font-weight: 400;
}

.node-scope .tab-accordion-mobile .accordion-item {
    background-color: #fff;
    border: none;
    padding: 0px 0;
}

/*==tabs mobile 2==*/

.node-scope .accordion-item .tab-accordion-mobile .accordion-header:not(.collapsed) {
    background-color: var(--color-green-light);
    padding: 0px;
    border: 1px solid var(--color-primary);
    border-radius: 8px;
}


/*==tab horizontal ==*/

.node-scope .tab-bootstap .tab-content {
    width: 100%;
    padding: 32px 32px;
    background: #fff;
    border-radius: 16px;
}

.node-scope .tab-bootstap--horizontal .nav-item {
    background-color: transparent;
    width: 313px;
    margin-bottom: 10px;
}

.node-scope .tab-bootstap--horizontal .nav-link.active {
    box-shadow: 2px 2px 2px rgba(0, 0, 0, .1);
    border: solid 1px var(--color-primary);
    transform: none;
}

.node-scope .tab-bootstap .nav-link.active {
    color: var(--color-primary);
    background-color: var(--color-green-light);
}

.tab-bootstap .nav-link a {

    color: #475569;

}

.node-scope .tab-bootstap--horizontal .nav-link {
    border: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    min-height: 80px;
    padding: 10px;
    transition: all .2s;
}



.node-scope .tab-bootstap--horizontal .nav-link {
    border: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    min-height: fit-content;
    padding: 22px;
    border-radius: 24px;
    transition: all .2s;
}

.node-scope .tab-bootstap--horizontal .nav .link {
    min-height: fit-content;
    text-align: left !important;
    justify-content: flex-start !important;
    font-family: "Carlito", sans-serif;
    font-size: 1rem !important;
    font-weight: bold;
    text-decoration: none;
}

/*==info-card==*/

.node-scope .card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow:
        0px 4px 12px rgba(0, 0, 0, 0.08);

    transition:
        transform .3s ease,
        box-shadow .3s ease;

    height: 100%;
}

.node-scope .card .card__body {
    margin: 0px;
}

.node-scope .card:hover {
    transform: translateY(-4px);

    box-shadow:
        0px 12px 24px rgba(0, 0, 0, 0.12);
}

.node-scope .card .card__body p {
    margin-bottom: 0px;
}

.node-scope .card__text {
    font-size: 1.25rem;
    line-height: 1.5;
    margin: 0;
}


.node-scope .card .card__icon i {
    font-size: 1.5rem !important;
    color: var(--color-primary);
}

@media (max-width: 767px) {

    .node-scope .card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .node-scope .card__title {
        font-size: 1.5rem;
    }

    .node-scope .card__text {
        font-size: 1rem;
    }

}

/*=== Card Topic ===*/

.node-scope .card--topic {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background-color: #ffffff;
    border-radius: 12px;
    transition:
        transform .3s ease,
        box-shadow .3s ease;
    box-shadow:
        0px 2px 8px rgba(0, 0, 0, 0.06);
    min-height: 90px;
}

.node-scope .card--topic:hover {
    transform: translateY(-2px);
    box-shadow:
        0px 6px 16px rgba(0, 0, 0, 0.12);
}

.node-scope .card--topic .card__icon {
    width: 52px;
    height: 52px;

    border-radius: 12px;

    background-color: #FBE5E9;

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

    color: var(--color-accent);

    font-size: 1.4rem;

    flex-shrink: 0;
}

.node-scope .card--topic .card__body {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.node-scope .card__eyebrow {
    font-size: .85rem;

    font-weight: 700;

    color: var(--color-primary);

    text-transform: uppercase;

    letter-spacing: .5px;
}

.node-scope .card--topic .card__title {
    font-size: 1rem;

    font-weight: 500;

    line-height: 1.3;

    margin: 0;

    color: var(--color-text);
}

/*====================================
=          Card Banner              =
====================================*/

.node-scope .card-banner {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;
    min-height: 160px;

    padding: 20px;

    overflow: hidden;

    border-radius: 14px;

    text-decoration: none;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.node-scope .card-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .15);
}

.node-scope .card-banner__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(66, 84, 106, .95) 0%,
            rgba(66, 84, 106, .85) 40%,
            rgba(66, 84, 106, .55) 70%,
            rgba(66, 84, 106, .15) 100%);
}

.node-scope .card-banner__content {
    position: relative;
    z-index: 2;

    max-width: 55%;
}

.node-scope .card-banner__title {
    margin: 0 0 8px;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1;
    color: #fff;
}

.node-scope .card-banner__title i {
    font-size: .8rem;
}

.node-scope .card-banner__description {
    margin: 0;
    font-size: 1rem;
    line-height: 1;

    color: rgba(255, 255, 255, .85);
}

.node-scope .card-banner-bg1 {
    background-image: url('https://urosario.edu.co/sites/default/files/2026-05/fondo-boton-comunicados.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.node-scope .card-banner-bg2 {
    background-image: url('https://urosario.edu.co/sites/default/files/2026-05/fondo-boton-presencia-en-los-medios.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.node-scope .card-banner-bg3 {
    background-image: url('https://urosario.edu.co/sites/default/files/2026-05/fondo-boton-voceros.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/*=== Card comunicados ===*/


/*==contacto===*/

.node-scope.bgc-contact .layout-content {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 10px;
    background-image: url("https://urosario.edu.co/sites/default/files/2026-06/bg-contacto.webp") !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 180px;
    padding: 20px;
    border-radius: 16px;
}

.node-scope .redes-contacto {
    display: flex;
    align-items: start;
    justify-content: flex-start;
    gap: 8px;
    list-style: none;
    flex-direction: column;
    padding-left: 0px;
    margin-bottom: 0px;
    margin-top: 1.5rem;
}

.node-scope .redes-contacto-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.node-scope .redes-contacto-item i {
    font-size: 20px;
    color: var(--color-white);
}

.node-scope .redes-contacto-item a {
    font-size: 20px;
    color: var(--color-white);
}

/*=== Pilares ===*/

.node-scope .pilar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}


/*=== Tabla ===*/

.node-scope table {
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #E2E2E2;
    border-radius: 16px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.node-scope table thead {
    background-color: var(--color-green-light);
    color: var(--color-primary);
    font-weight: bold;
    font-size: 20px;
}

.node-scope table thead th {
    font-size: 16px;
    font-weight: 900;
    line-height: 24px;
    text-decoration: none;
    font-family: var(--font-base);
    padding: 12px 20px;
    text-align: center;
}

.node-scope table tr td:last-child {
    text-align: center;
}

.node-scope table tbody {
    background-color: #fff;

}

.node-scope table tbody td {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    font-family: var(--font-base);
    padding: 12px 20px;
    border-bottom: 1px solid #E2E2E2;
}

.node-scope table tbody tr td:first-child {
    border-right: 1px solid #E2E2E2;

}

.node-scope table tbody tr td:last-child {
    border-right: none;
}


/*=== Modal ===*/
.node-scope .modal-dialog {
    max-width: 1200px;
}

.node-scope .modal-header {
    background-color: var(--color-primary);
    color: #fff;
}

.node-scope .modal-header h5 {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-decoration: none;
    font-family: var(--font-base);
    color: #fff;
}

/*==Acordeon===*/

.node-scope.preguntas .container-default,
.content-container-default,
.node-scope.formulario .layout-content {
    padding: 1rem;
    border-radius: 16px;

}

.node-scope.preguntas .accordion-item__heading {
    font-family: "Carlito", sans-serif;
    font-weight: bold;
    font-size: 16px;
    margin: 0px;
}

.node-scope .accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    /* padding: .7rem .5rem; */
    font-size: 18;
    text-align: left;
    background-color: var(--c-lightur);

    border-left: none;
    margin-bottom: 1dvh;
}

.node-scope .accordion-item:last-of-type .accordion-button.collapsed {
    border-radius: 8px;
    border: 1px solid var(--color-primary);
    background-color: var(--color-green-light);
}

.node-scope .accordion-button:not(.collapsed) {
    color: var(--main-page-color);
    background-color: var(--color-primary);
    color: #fff;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .13);
    border-radius: 8px;
}

.node-scope item__content .accordion-header .accordion-button {
    display: flex;
    justify-content: flex-start;
    gap: .6rem;
    border-left: none;
}

.node-scope .accordion-item__content .accordion-header .accordion-button .accordion-item__heading {
    width: 100%;
    font-size: 16px;
    margin-bottom: 0;
    font-family: "Carlito", sans-serif;
    /* padding: 16px 20px; */
}

/*===== galeria=====*/

.node-scope .gallery {
    max-width: 900px;
    margin: auto;
}

.node-scope .gallery-main {
    position: relative;
    overflow: hidden;
}

.node-scope .gallery-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* Flechas */
.node-scope .nav-gallery {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
    z-index: 10;
}

.node-scope .prev {
    left: 10px;
}

.node-scope .next {
    right: 10px;
}

/* Thumbnails */
.node-scope .gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    overflow-x: auto;
}

.node-scope .gallery-thumbs img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    border-radius: 8px;
    transition: 0.3s;
}

.node-scope .gallery-thumbs img:hover {
    opacity: 1;
}

.node-scope .gallery-thumbs img.active {
    opacity: 1;
    border: 2px solid var(--color-green-light);
}

.node-scope .gallery-main {
    position: relative;
    overflow: hidden;
}

.node-scope .gallery-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;

    opacity: 1;
    transform: translateX(0);
    transition: all 0.4s ease;
}

/* Estado de salida */
.node-scope .gallery-main img.fade-out-left {
    opacity: 0;
    transform: translateX(-30px);
}

.node-scope .gallery-main img.fade-out-right {
    opacity: 0;
    transform: translateX(30px);
}

/* Estado de entrada */
.node-scope .gallery-main img.fade-in {
    opacity: 1;
    transform: translateX(0);
}

.node-scope .gallery-main {
    position: relative;
    overflow: hidden;
}

.node-scope .gallery-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;

    opacity: 1;
    transform: translateX(0);
    transition: all 0.4s ease;
}

/* Estado de salida */
.node-scope .gallery-main img.fade-out-left {
    opacity: 0;
    transform: translateX(-30px);
}

.node-scope .gallery-main img.fade-out-right {
    opacity: 0;
    transform: translateX(30px);
}

/* Estado de entrada */
.node-scope .gallery-main img.fade-in {
    opacity: 1;
    transform: translateX(0);
}

/* Flechas */
.node-scope .gallery-thumbs-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.node-scope .gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow: hidden;
    /* importante */
    scroll-behavior: smooth;
    width: 100%;
}

.node-scope .gallery-thumbs img {
    min-width: 120px;
    /* clave para scroll horizontal */
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    border-radius: 8px;
    transition: 0.3s;
    flex-shrink: 0;
}

/* Botones */
.node-scope .thumb-nav {
    background: rgba(0, 0, 0, 0.4);
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 0;
    z-index: 2;
}

.node-scope .thumb-nav.prev {
    margin-right: 10px;
    position: absolute;
    left: 0;
    height: 80px;
    bottom: 0px;
}

.node-scope .thumb-nav.next {
    margin-left: 10px;
    position: absolute;
    right: 0;
    height: 80px;
    bottom: 0px;
}


/*=== TRICKER ===*/

.node-scope .ticker {
    background: var(--color-primary);
    overflow: hidden;
    padding: 0.65rem 0;
    border-top: 1px solid var(--color-primary-dark);
}

.node-scope .ticker-track {
    display: flex;
    gap: 4rem;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

.node-scope .ticker-track span {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.node-scope .ticker-track span::after {
    content: ' ✦';
    color: rgba(255, 255, 255, 0.4);
    margin-left: 4rem;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/*=== Botones ===*/

.node-scope .btn-outline-gray {
    color: var(--color-text);
    border: 1px solid var(--color-text);
    background-color: #ebebeb;
    padding: 5px 20px;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 300;
    line-height: 16px;
    text-decoration: none;
    font-family: var(--font-base);
    transition: all 0.3s ease;
}

.node-scope .btn-outline-gray:hover {
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    background-color: #ebebeb;
}

.node-scope .btn-outline-primary {
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    background-color: var(--color-red-light);
    padding: 10px 20px;
    border-radius: 32px;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
    font-family: var(--font-base);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
}

.node-scope .btn-outline-primary i {
    font-size: 20px;
    color: var(--color-primary);
}

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

.node-scope .btn-outline-primary:hover i {
    color: #ffffff;
}

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

.node-scope .btn-fit {
    width: fit-content;
}

.node-scope .btn-red {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 400;
    font-family: var(--font-base);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.node-scope .btn-red:hover {
    background-color: var(--color-red-dark);
    color: var(--color-white);

}

.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;
}

.node-scope .btn-dark-gray {
    color: #fff;
    background-color: var(--color-dark-gray);
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 400;
    font-family: var(--font-base);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.node-scope .btn-dark-gray:hover {
    background-color: var(--color-red-dark);
    color: var(--color-white);
}


.node-scope .reset-filters {
    width: 50px;
    height: 50px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/*=== Boton flotante ===*/



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

.node-scope .form-item__label {
    color: var(--color-text);
    font-family: var(--font-base);
    font-weight: var(--fw-light);
}

.node-scope legend.h2 {
    color: var(--color-text);
    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: var(--color-text);
    background-color: #F8FAFC;
    border-radius: 20px;
    border: 1px solid #DCDCDC;
}

.node-scope .form-select option {
    color: var(--color-text);
    background-color: #fff;
}

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


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

@media (min-width: 1601px) {}

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

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

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

/* Tablets grandes (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .node-scope .hero-image__body h1 {
        font-size: 32px !important;
    }
}

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

    /*=== Hero image ===*/

    .node-scope .hero-image__body h1 {
        font-size: 32px !important;
    }

    .node-scope .hero-image__body {
        max-width: 100%;
    }

    .node-scope .hero-image__content-wrapper {
        max-width: 90%;
        width: 100%;
        margin: 0 auto;
        padding: 0 0rem;
        display: flex;
        align-items: flex-end;
        justify-content: start;
        height: 100%;
        padding-bottom: 15%;
    }

    .node-scope .hero-image__body p {
        font-size: 1.3rem;

    }

    .node-scope .hero-image>img {
        flex-grow: 1;
        max-width: 444px;
        height: auto;
        object-position: center center;
        object-fit: cover;

    }

    /*=== Redes contacto ===*/

    .node-scope .redes-contacto-item {
        display: flex;
        align-items: start;
        justify-content: flex-start;
        gap: 10px;
        width: 100%;
        flex-wrap: wrap;
    }


    .node-scope .redes-contacto-item a {
        display: flex;
        text-wrap: auto;
        line-break: anywhere;
        line-height: 1;
        flex-wrap: wrap;
    }

    .node-scope .accordion-item:last-of-type .accordion-button.collapsed {
        border-radius: 8px;
        border: 1px solid var(--color-primary);
        background-color: var(--color-secondary);
        margin-bottom: 0px;
    }

    .node-scope .accordion-button:not(.collapsed) {
        margin-bottom: 0;
    }

    .node-scope #acId877278812 {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    /*==Banner Info ===*/


    .node-scope .banner {
        padding: 2rem 1.5rem;
    }

    .node-scope .banner__icon {
        width: 56px;
        height: 56px;

        font-size: 1.5rem;
    }

    .node-scope .banner__text {
        font-size: 1.1rem;
    }

    /*==Banner cta */

    .node-scope .banner--cta {
        flex-direction: column;
        align-items: flex-start;

        padding: 2rem;
    }

    /*===Card topic===*/

    .node-scope .card--topic {
        padding: 1rem;
    }

    .node-scope .card--topic .card__icon {
        width: 44px;
        height: 44px;
    }


}

@media (max-width: 435px) {

    /*=== Hero image ===*/


    .node-scope .hero-image__body {
        max-width: 100%;
    }


    .node-scope .hero-image__body h1 {
        font-size: 32px !important;
    }

    .node-scope .hero-image__content-wrapper {
        max-width: 90%;
        width: 100%;
        margin: 0 auto;
        padding: 0 0rem;
        display: flex;
        align-items: flex-end;
        justify-content: start;
        height: 100%;
        padding-bottom: 2.5rem;
    }

    .node-scope .hero-image__body p {
        font-size: 1rem;

    }

    .node-scope .hero-image>img {
        flex-grow: 1;
        max-width: 444px;
        height: auto;
        object-position: center center;
        object-fit: cover;

    }

    /*=== Banner CTA ===*/

    .node-scope .banner--cta {
        flex-direction: column;
        align-items: flex-start;

        padding: 2rem;
    }

    /*=== Redes contacto ===*/

    .node-scope .redes-contacto-item {
        display: flex;
        align-items: start;
        justify-content: flex-start;
        flex-wrap: nowrap;
    }

    .node-scope .redes-contacto-item a {
        display: flex;
        text-wrap: auto;
        line-break: anywhere;
        line-height: 1;
        flex-wrap: wrap;

    }

    .node-scope .accordion-item:last-of-type .accordion-button.collapsed {
        border-radius: 8px;
        border: 1px solid var(--color-primary);
        background-color: var(--color-secondary);
        margin-bottom: 0px;
    }

    .node-scope .accordion-button:not(.collapsed) {
        margin-bottom: 0;
    }

    .node-scope #acId686373429 {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    /*===Card topic===*/

    .node-scope .card--topic {
        padding: 1rem;
    }

    .node-scope .card--topic .card__icon {
        width: 44px;
        height: 44px;
    }

}