:root {
    --margin-lateral: 5%;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Barlow Semi Condensed', sans-serif !important;

    & h2 {
        font-size: clamp(2rem, 4vw, 3.5rem);
    }

    & h3 {
        font-size: clamp(2rem, 3vw, 2.5rem);
    }

    & p {
        font-size: clamp(1.25rem, 2vw, 1.5rem);
    }
}

.br_res {
    display: none;
}

.form-colabora {
    background-color: #ffffff;
    border-radius: 12px; /* Bordes redondeados */

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Sombra clara */

    padding: 50px;
    border: 1px solid #dddddd;
    margin-bottom: 50px;
}

.icono-corazon {
    font-size: 35px;
    color: #183C64;
}

/* Audio Player Bar */

.audio-player-bar {
    position: fixed;
    bottom: -100px;
    right: 5%;
    background-color: #26557E;
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: bottom 0.3s ease;
    min-width: 500px;
    max-width: 90%;
}

    .audio-player-bar.active {
        bottom: 30px;
    }

.audio-player-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.audio-play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #F84B40;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

    .audio-play-btn:hover {
        background-color: #e03d33;
        transform: scale(1.05);
    }

    .audio-play-btn:focus {
        outline: none;
    }

.audio-progress-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.audio-progress-bar {
    width: 100%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
}

.audio-progress-fill {
    height: 100%;
    background-color: #F84B40;
    width: 0%;
    transition: width 0.1s linear;
}

.audio-time {
    display: flex;
    justify-content: space-between;
    color: white;
    font-size: 0.875rem;
    font-family: Barlow, sans-serif;
}

.audio-close-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

    .audio-close-btn:hover {
        background-color: rgba(255, 255, 255, 0.3);
        transform: scale(1.05);
    }

    .audio-close-btn:focus {
        outline: none;
    }

@media (max-width: 768px) {

    .audio-player-bar {
        min-width: 90%;
        padding: 1rem;
    }

    .audio-player-content {
        gap: 0.75rem;
    }

    .audio-play-btn {
        width: 40px;
        height: 40px;
    }

    .audio-close-btn {
        width: 32px;
        height: 32px;
    }
}

/* Video Popup */

.video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

    .video-popup.active {
        display: flex;
    }

.video-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.video-popup-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    z-index: 10001;
}

.close-video-btn {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background-color: #1F4482;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10002;
}

    .close-video-btn:hover {
        background-color: #1a3a5d;
        transform: scale(1.1);
    }

.video-popup-content #player {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

#youtube-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Ratio 16:9 */
}

    #youtube-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 8px;
    }

/* Header */

#header {
    background-color: transparent;
    display: flex;
    align-items: center;
    position: fixed;
    box-sizing: border-box;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.5s ease, padding 0.5s ease;
    padding: 2rem var(--margin-lateral);

    &.scrolled {
        background-color: #26557EF2;
        padding: 1rem var(--margin-lateral);
        backdrop-filter: blur(14px);
    }
}

#botones_donar_socio_header {
    transition: transform 0.5s ease;
    transform-origin: right center;

    &.scrolled {
        transform: scale(0.8);
    }
}

.botones_donar_socio {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    justify-content: flex-end;
    z-index: 1001;
    font-size: 1rem;

    & a {
        text-decoration: none;
    }
}

.boton_donar_socio {
    padding: 0.75rem 1.5rem 0.75rem 1.5rem;
    border-radius: 10px;
    color: white;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: Barlow, sans-serif;
    font-weight: 600;

    &:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    &:active {
        transform: translateY(0);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
}

#hazte_socio {
    background-color: transparent;
    border: 1px solid white;

    &:hover {
        background-color: rgba(255, 255, 255, 0.15);
    }
}

#dona_ahora {
    background-color: #F84B40;
    border: none;

    &:hover {
        background-color: #e03d33;
    }
}

#logo {
    transition: transform 0.5s ease;
    transform-origin: left center;

    & img {
        width: 200px;
        height: auto;
    }

    &.scrolled {
        transform: scale(0.8);
    }
}

/* Banner section -------------------------------------------------------------------------------*/

#banner {
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 25%, transparent 42%, rgba(0,0,0,0.7) 100%), url('/Landings/Landing2026/img/banner/nina_sin_fondo.webp'), url('/Landings/Landing2026/img/banner/fondo_sin_nina.webp');
    background-size: 100% 100%, 133%, 133%;
    background-position-y: 0%, 41%, 41%;
    background-position-x: 0%, 0%, 60%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    height: min(100dvh, 1250px);
    position: relative;
    padding: 0 var(--margin-lateral) 2rem var(--margin-lateral);
    box-sizing: border-box;

    & img {
        width: 400px;
        height: auto;
    }
}

#banner_cont {
    text-align: left;
    color: white;
    font-weight: 400;

    & h2 {
        margin-top: 1rem;
        font-family: Barlow, sans-serif;
        font-size: clamp(1rem, 5vw, 1.5rem) !important;
        font-weight: 500;
    }
}

#botones_spot_mensaje {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.btn_spot_mensaje {
    display: flex;
    padding: 0.75rem 1rem 0.75rem 1rem;
    border-radius: 10px;
    background-color: transparent;
    color: white;
    text-align: center;
    text-decoration: none;
    border: 1px solid white;
    font-size: 1rem;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    outline: none;

    & img {
        width: 20px !important;
        height: auto;
        vertical-align: middle;
        transition: transform 0.3s ease;
    }

    & span {
        font-family: Barlow, sans-serif;
        font-size: 1rem;
        vertical-align: middle;
    }

    &:hover {
        background-color: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);

        & img {
            transform: scale(1.1);
        }
    }

    &:focus {
        outline: none;
    }

    &:active {
        transform: translateY(0);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
}

@keyframes parpadeo {

    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

#btn_scroll {
    display: flex;
    justify-content: center;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    animation: parpadeo 2s ease-in-out infinite;
    padding: 2rem 0;

    & img {
        width: 3rem;
        height: auto;
        transition: transform 0.3s ease, filter 0.3s ease;
    }

    &:hover {
        transform: translateY(-3px);
        animation: none;

        & img {
            transform: scale(1.15);
            filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
        }
    }

    &:active {
        transform: translateY(-1px);

        & img {
            transform: scale(1.05);
            filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
        }
    }
}

/* Section: formulario -------------------------------------------------------------------------------------------*/

#seccion_formulario {
    background-color: white;
    display: flex;
    margin: 4% var(--margin-lateral) 0 var(--margin-lateral);
    gap: 2rem;
}

#seccion_formulario_izq {
    --width-columna-izq-formulario: 60%;
    width: var(--width-columna-izq-formulario);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    & h2 {
        width: 100%;
        font-size: clamp(1.5rem, 10vw, 3.5rem) !important;
        margin: 0;
        font-weight: 800;
        color: #183C64;
    }

    & h3 {
        font-weight: 600;
        margin-bottom: 1rem;
        color: #183C64;
    }

    & p {
        font-family: Barlow, sans-serif;
        font-weight: 400;
        line-height: 1.5;
        color: #4D6172;
    }
}

#seccion_formulario_dch {
    --width-columna-dch-formulario: 40%;
    width: var(--width-columna-dch-formulario);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#seccion_formulario_titulo {
    box-sizing: border-box;
    display: flex;

    & img {
        display: none;
    }
}

#seccion_formulario_texto {
    display: flex;
    margin-left: calc(-1 (var(--margin-lateral) (100%/var(--width-columna-izq-formulario)) + 1.5%));
}

#seccion_formulario_img {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 40%;

    & img {
        width: 100%;
        height: 100%;
    }
}

#seccion_formulario_cont {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 60%;
    margin-left: 1rem;
}

#seccion_formulario_datos {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.dato_seccion_formulario {

    & h3 {
        margin: 0 !important;
        color: #4A91E2 !important;
        font-size: 3.25rem !important;
        font-weight: 800 !important;
    }

    & p {
        margin: 0;
        color: #26557E !important;
        font-size: 1.25rem !important;
        font-weight: 500 !important;
    }
}

/* Banner dato */

#banner_dato {
    background-color: #103A5D;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5rem var(--margin-lateral);
    text-align: center;

    & h2 {
        color: #FFFFFF;
        margin: 0;
        font-weight: 800;
        width: 100%;
    }

    & span {
        color: #70B0F9 !important;
    }
}

/* Banner impacto */

#banner_impacto {
    background-image: url('/HtmlResources/2026/1SSCC/landing%202026/foto-impacto.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: right;
    box-sizing: border-box;
    max-width: 100%;
}

#banner_impacto_cont {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    text-align: left;
    color: white;
    width: 57%;
    padding: var(--margin-lateral);

    & h2 {
        font-size: 1rem !important;
        letter-spacing: 2px;
        margin: 0;
        font-family: Barlow, sans-serif;
        font-weight: 500;
    }

    & h3 {
        font-size: clamp(3rem, 4vw, 3.5rem);
        margin: 10px 0 40px;
        font-weight: bold;
    }
}

#impacto_cards {
    display: flex;
    justify-content: left;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: nowrap;
}

.impacto_card {
    background-color: white;
    border-radius: 20px;
    padding: 2rem 2rem;
    width: 33%;
    text-align: left;
    color: #26557E;

    & img {
        width: 44px;
        height: 44px;
        margin-bottom: 15px;
    }

    & h4 {
        font-size: 3.5rem;
        margin: 15px 0;
        font-weight: 800;
    }

    & p {
        font-size: 1.25rem !important;
        font-weight: 400;
        color: #26557E;
        margin: 0;
    }
}

#btn_impacto {
    justify-content: flex-end;
    display: flex;
}

.btn_proyectos {
    padding: 15px 30px;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1rem;
    font-family: Barlow, sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;

    &:hover {
        background-color: white;
        color: #1a3a5d;
    }
}

/* Banner transformacion ---------------------------------------------------------------------------------------------------------------------------------*/

#transformacion {
    display: flex;
    padding: var(--margin-lateral);
    gap: 1rem;
}

#transformacion_izq {
    width: 40%;

    & h2 {
        margin: 0;
        font-weight: 800;
        color: #183C64;
        font-size: clamp(1.5rem, 3.5vw, 3.5rem);
        line-height: 1.2;
    }
}

#transformacion_dch {
    width: 60%;
}

#transformacion_porcentajes {

    & h3 {
        font-family: Barlow, sans-serif;
        font-weight: 800;
        color: #26557E;
        margin: 0;
    }

    & p {
        font-size: 1.25rem !important;
        font-family: Barlow, sans-serif;
        font-weight: 400;
        color: #26557E;
        margin: 1rem 0 2rem 0;
    }
}

.timeline {
    position: relative;
    padding-left: 40px;
    border-left: 3px solid #4BA3FF;
    margin-left: 12px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;

    &:last-child::after {
        content: "";
        position: absolute;
        left: -44px;
        bottom: -3px;
        width: 5px;
        height: 85%;
        z-index: 99;
        background: white;
    }

    &:first-child::before {
        content: "";
        position: absolute;
        left: -44px;
        bottom: 65px;
        width: 5px;
        height: 59%;
        z-index: 99;
        background: white;
    }
}

.circle {
    width: 11px;
    height: 11px;
    z-index: 100;
    background-color: white;
    border: 11px solid #4BA3FF;
    border-radius: 50%;
    position: absolute;
    left: -58px;
    top: 2px;
    padding: 6px;
}

.content {

    & h3 {
        font-weight: 800;
        color: #26557E;
        margin: 0;
    }

    & p {
        color: #103A5D;
        font-size: 1.25rem;
        margin: 0;
    }
}

#bar_chart {
    display: flex;
    gap: 10px;
    min-height: 464px;
}

#bar_chart_izq, #bar_chart_dch {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.bar_item {
    display: flex;
    border-radius: 16px;
    align-items: end;
    color: white;
    padding: 1.5rem 1.5rem;
    gap: 1rem;
    box-sizing: border-box;

    & h4 {
        font-size: clamp(2.5rem, 4vw, 3.5rem) !important;
        margin: 0 !important;
        font-family: Barlow Semi Condensed, sans-serif !important;
        font-weight: 700 !important;
        color: white !important;
    }

    & h5 {
        margin: 0.25rem !important;
        font-size: clamp(0.85rem, 1.5vw, 1.25rem) !important;
        color: white !important;
        font-weight: 500;
    }
}

/* Sección Ubicación */

#ubicacion {
    background-color: #E1EAF2;
    background-image: url('/Landings/Landing2026/img/ubicacion/paises-escritos.webp');
    display: flex;
    align-items: self-end;
}

#ubicacion_cont {
    margin: 0 var(--margin-lateral) 2rem var(--margin-lateral);

    & h3 {
        font-size: clamp(2rem, 4vw, 3.5rem);
        font-weight: 800;
        color: #183C64;
        margin: 0.5rem 0 0 0;
        line-height: 1;
    }

    & h2 {
        font-size: 1rem;
        font-family: Barlow, sans-serif;
        font-weight: 400;
        color: #103A5D;
        letter-spacing: 3px;
    }

    & p {
        margin-bottom: 0;
        color: #26557E;
        font-size: 1.25rem;
        font-family: Barlow, sans-serif;
        font-weight: 400;
    }
}

#mundo_img {
    display: flex;
    justify-content: right;
    overflow: hidden;
    margin-left: -10%;
    width: 100%;

    & img {
        width: 100%;
    }
}

/* Sección Historias */

#historias {
    background-color: #26557E;
    color: white;

    & h2 {
        font-weight: 800;
        text-align: center;
        margin: 0;
        padding: 2.25rem var(--margin-lateral);
    }
}

#fotos_grid {
    display: flex;
}

.foto-item {
    width: 33.33%;
    min-height: 500px;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: self-end;
    padding: 2rem;
    box-sizing: border-box;

    & h3 {
        font-weight: 800;
        margin: 0;
    }

    & p {
        font-family: Barlow, sans-serif;
        margin: 0.5rem 0 0 0;
        font-weight: 400;
    }
}

#foto-item-1 {
    background-image: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%), url("/Landings/Landing2026/img/historias/amina-foto.webp");
}

#foto-item-2 {
    background-image: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%), url("/Landings/Landing2026/img/historias/kofi-foto.webp");
}

#foto-item-3 {
    background-image: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%), url("/Landings/Landing2026/img/historias/khadijaycheikh-foto.webp");
}

/* Sección Voluntarios */

#voluntarios {
    padding: 4rem calc(2*var(--margin-lateral));
    display: flex;
    justify-content: center;
    background-image: url("/Landings/Landing2026/img/voluntarios/fondo.webp");
    background-repeat: no-repeat;
    background-size: 60%;
    background-position: bottom right;
}

#voluntarios_dch {
    justify-content: center;
    display: flex;
    flex-direction: column;
    width: 55%;
    gap: 3rem;
}

#voluntarios_izq {
    width: 45%;

    & h2 {
        font-size: clamp(2rem, 4vw, 3.5rem);
        font-weight: 800;
        color: #183C64;
        margin: 2rem 0 0 0;
    }

    & p {
        font-family: Barlow, sans-serif;
        font-weight: 400;
        color: #4D6172;
        margin: 1rem 0 2rem 0;
    }
}

.voluntarios-item {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 10px;
    background-color: white;

    & img {
        width: 100%;
    }

    & h3 {
        font-size: 1.75rem;
        font-weight: 800;
        margin: 1rem 0 0 0;
        color: #183C64;
    }

    & p {
        font-size: 1rem !important;
        color: #183C64 !important;
        margin: 0.5rem 0 0.5rem 0 !important;
    }
}

#voluntarios-item-comunidades {
    margin-top: 50px;
    width: 80%;
}

#voluntarios-item-equipos {
    width: 80%;
}

#voluntarios-item-personas {
    margin-top: var(--margin-lateral);
    width: 80%;
}

.centrado {
    align-items: center;
    justify-content: center;
    display: flex;
}

.izquierda {
    align-items: center;
    justify-content: left;
    display: flex;
}

/* Sección Llamada a la accion */

#banner_llamada_a_la_accion {
    background-color: #26557E;
    padding: 4rem var(--margin-lateral) 3rem var(--margin-lateral);
    display: flex;
    flex-direction: column;
    align-items: center;

    & h2 {
        font-weight: 800;
        margin: 0 0 2rem 0;
        width: 100%;
        text-align: center;
        color: white;
    }
}

/* Suscripción */

#suscripcion {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#suscripcion_arriba, #suscripcion_abajo {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.suscripcion-item {
    --width-columna-suscripcion: 50%;
    width: var(--width-columna-suscripcion);
    min-height: 50dvh;
    box-sizing: border-box;

    & h3 {
        margin: 0;
    }

    & img {
        width: 100%;
    }
}

.suscripcion-item-texto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: calc(var(--margin-lateral)* (100%/var(--width-columna-suscripcion)));
    padding-right: calc(var(--margin-lateral)* (100%/var(--width-columna-suscripcion)));
    box-sizing: border-box;
    padding-top: 1rem;
    padding-bottom: 1rem;

    & h3 {
        font-weight: 800;
        color: #26557E;
    }

    & p {
        font-size: 1.25rem;
        font-family: Barlow, sans-serif;
        font-weight: 400;
        color: #4D6172;
    }
}

.btn_suscripcion {
    color: #26557E;
    background-color: transparent;
    border: 2px solid #26557E;
    border-radius: 10px;
    padding: 0.75rem 1.5rem 0.75rem 1.5rem;
    text-align: center;
    font-family: Barlow, sans-serif;
    font-weight: 500;
    text-decoration: none;
    width: fit-content;

    &:hover {
        background-color: #26557E;
        color: white;
    }
}

/* Footer */

#footer {
    background-color: #103A5D;
    color: white;

    & a {
        text-decoration: none;
        color: white;
    }
}

#footer_cont {
    display: flex;
    justify-content: space-between;
    padding: 2rem var(--margin-lateral);
}

#footer_izq, #footer_dch {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

#footer_telefono {
    display: flex;
    align-items: center;
    gap: 1rem;

    & h2 {
        margin: 0;
        font-size: 1.25rem !important;
        font-weight: 400 !important;
    }

    & img {
        width: 20px;
        height: 20px;
    }

    p {
        margin: 0;
    }
}

#footer_contacto {
    display: flex;
    gap: 1rem;
    justify-content: end;
    align-items: center;
    margin: 1rem 0 0 0;
}

#footer_contacto_rrss {
    display: flex;
    gap: 1rem;
}

.footer-contacto-item {
    padding: 0.5rem 1rem;
    background-color: #FFFFFF1A;
    border-radius: 8px;
    font-size: clamp(1rem, 5vw, 1.25rem) !important;
    font-family: Barlow, sans-serif !important;
    font-weight: 500 !important;
    display: flex;
    gap: 0.5rem;
    align-items: center;

    & img {
        width: 20px;
        height: 20px;
    }

    &:first-child:hover {
        transform: translateY(-2px);
    }

    &:active {
        transform: translateY(0);
    }
}

.footer-contacto-item-rrss {
    width: 48px;
    height: auto;

    & img {
        width: 100%;
        height: auto;
    }

    &:hover {
        transform: translateY(-2px);
    }

    &:active {
        transform: translateY(0);
    }
}

#footer_enlaces {
    display: flex;
    gap: 1rem;
    justify-content: end;
}

#footer_enlaces_izq, #footer_enlaces_dch {
    display: flex;
    gap: 1rem;
}

#logo_foot_n_o {
    width: 250px;
}

/* Media Queries */

@media (max-width: 1300px) {

    #footer_cont {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    #footer_izq, #footer_dch {
        width: 100%;
        align-items: center;
    }

    #footer_telefono {
        justify-content: center;
        width: 100%;
        margin-top: 1rem;

        & h2 {
            font-size: clamp(1.25rem, 5vw, 1.75rem) !important;
        }

        & p {
            font-size: clamp(1.25rem, 5vw, 1.75rem) !important;
        }
    }

    #footer_dch {
        gap: 3rem;
    }

    #footer_contacto {
        margin: 0;
    }
}

@media (max-width: 1000px) {

    #footer_contacto {
        flex-direction: column;
    }
}

@media (max-width: 1200px) {

    #banner {
        background-position-x: 0%, 30%, 60%;
        background-size: 100% 100%, 200%, 250%;
    }

    #ubicacion {
        flex-direction: column-reverse;
        align-items: normal;
        gap: 1rem;
    }

    #mundo_img {
        margin-left: 0;
    }
}

@media (max-width: 1024px) {

    #mundo_img {
        margin-left: 0;
    }

    .bar_item {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        margin: 0;
        padding: 1rem !important;
        gap: 0;
    }

    #banner_impacto_cont {
        width: 100%;
    }
}

@media (max-width: 1000px) {

    #seccion_formulario_titulo .br_res {
        display: unset;
    }

    #seccion_formulario {
        flex-direction: column;
        margin: 0;
    }

    #seccion_formulario_izq, #seccion_formulario_dch {
        width: 100%;
    }

    #seccion_formulario_titulo {
        align-items: end;
        background-color: #F2F6F9;

        & img {
            display: flex;
            width: 54%;
            margin-left: -3rem;
        }

        & h2 {
            padding: 3rem 0 1rem var(--margin-lateral);
        }
    }

    #seccion_formulario_img {
        display: none;
    }

    #seccion_formulario_texto {
        margin-left: 0;
    }

    #seccion_formulario_cont {
        width: 100%;
        margin: 2rem 5%;
    }
}

@media (max-width: 768px) {

    .botones_donar_socio {
        font-size: 0.75rem;
        gap: 0.75rem;
    }

    .boton_donar_socio {
        padding: 8px;
    }

    .botones_donar_socio_cta {
        font-size: 1rem;
        gap: 1rem;
    }

    .boton_donar_socio_cta {
        padding: 11px;
    }

    #banner {
        background-position-x: 0%, 40%, 60%;
        background-position-y: 0%, 50%, 60%;
        background-size: 100% 100%, 300%, 350%;
    }

    #banner_cont {

        & h2 {
            font-weight: 400;
        }
    }

    #btn_scroll {
        padding-top: 0;

        & img {
            width: 2.5rem;
        }
    }

    #header {
        height: 65px;
        gap: 15px;
        padding: 15px;
        box-sizing: border-box;
    }

    #logo {
        margin: 0;

        & img {
            width: 120px;
            height: 32.07px;
        }
    }

    #btn_scroll {
        padding-bottom: 1rem;
    }

    #seccion_formulario_cont {
        font-size: 0.65rem;
    }

    #banner_dato {
        padding: 3rem var(--margin-lateral);
    }

    #impacto_cards {
        flex-direction: column;
        gap: 1rem;
    }

    #banner_impacto {
        background-image: url('/HtmlResources/2026/1SSCC/landing%202026/foto-impacto-movil.png'), url('/Landings/Landing2026/img/impacto/fondo-azul.webp');
        background-position: top center, bottom center;
        background-repeat: no-repeat, repeat;
        background-size: contain, contain;
    }

    #banner_impacto_titulo {
        padding-top: 93%;
        text-align: center;
    }

    .impacto_card {
        width: auto;
    }

    .impacto_card_title {
        display: flex;
        justify-content: space-between;
        align-items: center;

        & h4 {
            margin-top: 0;
        }
    }

    #btn_impacto {
        justify-content: center;
        margin-bottom: 20px;
    }

    .btn_proyectos {
        width: 100%;
    }

    #transformacion {
        flex-direction: column;
    }

    #transformacion_izq, #transformacion_dch {
        width: 100%;
    }

    #transformacion_izq {

        & h2 {
            font-size: clamp(1.5rem, 9vw, 2.5rem);
            margin-bottom: 2rem;
        }
    }

    .timeline-item {

        &:first-child::before {
            bottom: 70%;
        }

        &:last-child::after {
            bottom: -1%;
        }
    }

    #fotos_grid {
        flex-direction: column;
    }

    .foto-item {
        width: 100%;
        min-height: 365px;
    }

    #voluntarios {
        flex-direction: column;
        gap: 1rem;
        background-size: 200%;
        background-position: bottom center;
        padding: 2rem var(--margin-lateral);

        & h2 {
            margin: 0;
        }
    }

    #voluntarios_izq {
        width: 100%;
        display: flex;
        flex-direction: column;

        & h2 {
            font-size: clamp(2rem, 8vw, 3.5rem);
        }
    }

    #voluntarios_dch {
        width: 100%;
        gap: 1rem;
    }

    .voluntarios-item {
        margin: 0 0 10px 0 !important;
    }

    #voluntarios-item-comunidades {
        width: fit-content !important;
    }

    #voluntarios-item-equipos, #voluntarios-item-personas {
        width: 100% !important;
    }

    #banner_llamada_a_la_accion .br {
        display: none;
    }

    #suscripcion {
        flex-direction: column;
    }

    #suscripcion_arriba {
        flex-direction: column-reverse;
    }

    .suscripcion-item {
        width: 100%;
    }

    .suscripcion-item-img {
        min-height: 38dvh;
    }

    .suscripcion-item-texto {
        min-height: 0;
    }

    .btn_suscripcion {
        width: -webkit-fill-available;
        text-align: center;
    }

    #footer_enlaces {
        width: 100%;
        justify-content: space-around;
    }

    #footer_enlaces_izq, #footer_enlaces_dch {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 577px) {

    #banner_cont {

        & img {
            width: 80%;
        }
    }

    #botones_spot_mensaje {
        flex-direction: column;
        gap: 10px;
    }

    .btn_spot_mensaje {
        width: 100%;
        justify-content: center;
    }

    #seccion_formulario_datos {
        flex-direction: column;
        gap: 1rem;
        width: 90%;
    }
}

@media (max-width: 480px) {

    #banner {
        height: min(100dvh, 1040px);
    }
}

@media (max-width: 400px) {

    #banner {
        background-position-x: 0%, 45%, 50%;
        background-size: 100% 100%, 400%, 450%;
    }
}

/* Pantallas panorámicas: reducir claim cuando el viewport es muy apaisado */
@media (min-aspect-ratio: 2/1) and (min-width: 1024px) {

    #banner_cont > div:first-child img {
        width: clamp(280px, 35vh, 400px);
    }

    #banner_separator {
        height: 90px !important;
    }

    #botones_spot_mensaje {
        margin-top: 1rem;
    }
}

@media (min-aspect-ratio: 5/2) and (min-width: 1024px) {

    #banner_cont > div:first-child img {
        width: clamp(220px, 30vh, 350px);
    }

    #banner_separator {
        height: 70px !important;
    }

    #banner_cont {

        & h2 {
            margin-top: 0.5rem;
        }
    }
}

.colabora-options .btn.btn-option {
    border: 1px solid #336699;
}

#tipoRegistro .btn.btn-option {
    color: #336699;
    border: 1px solid #336699;
    border-radius: 15px;
}

.icono-corazon {
    color: #336699 !important;
}
.form-colabora a { color: var(--bs-body-color) !important; }
