@font-face {
    font-family: "SamsungSharpSans";
    src: url("./fonts/SamsungSharpSans-Regular.otf") format("opentype");
}

@font-face {
    font-family: "Samsung-One";
    src: url("./fonts/SamsungOne-400_v1.1.ttf") format("truetype");
}

@font-face {
    font-family: "Samsung-Regular";
    src: url("./fonts/SamsungSharpSans-Regular.otf") format("opentype");
}

@font-face {
    font-family: "Samsung-Bold";
    src: url("./fonts/SamsungSharpSans-Bold.otf") format("opentype");
    font-weight: bold;
}

@font-face {
    font-family: "Samsung-Medium";
    src: url("./fonts/SamsungSharpSans-Medium.otf") format("opentype");
}

:root {
    --f-Samsung-One: "Samsung-One";
    --f-Samsung-Medium: "Samsung-Medium";
    --f-Samsung-Bold: "Samsung-Bold";
    --f-Samsung-Regular: "Samsung-Regular";

    --samsungRed: #FF0033;
    --samsungWhite: #fff;
    --samsungCian: #0077c8;
    --samsungBlack: #000;
    --samsungBlue: #0f299f;
    --samsungGreyDark: #d3d3d3;
    --samsungGrey: #9c9c9c;
    --samsungYellow: #FFB546;
    --samsungGold: #967a3e;
    --samsungGreen: #4c8502;

    --breakpoint-xl: 1200px;
    --breakpoint-lg: 992px;
    --breakpoint-md: 768px;
    --breakpoint-sm: 576px;
}

/* Agrega esto a tu CSS para corregir el margen derecho */
.content-wrapper {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
}

body {
    font-family: var(--f-Samsung-Regular) !important;
    background: var(--samsungWhite);
}

html {
    scroll-behavior: smooth;
}

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

[id] {
    scroll-margin-top: 80px;
}

/* // HOME BANNER // */

.home-banner {
    width: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: -webkit-fill-available;
    background: var(--samsungWhite) !important;
    z-index: 1000;
    padding: 1% 5%;
    transition: all 0.4s ease-in-out;
}

.container-fluid {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-right: 15px;
    padding-left: 15px;
}

.container-banner {
    position: relative;
    margin: 0 0 0 10%;

    @media (max-width: var(--breakpoint-lg)) {
        margin: 0 5%;
    }
}

#home {
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: center;
    background-position-x: right;
    height: auto;
    margin-top: 100px;
    background-color: #f1f1f1;
    padding: 1px 0;
    margin-top: 1px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 767px) {
    #home {
        background-size: contain;
        background-position-y: bottom;
    }
}

#home .title {
    color: var(--samsungBlack);
    font-family: var(--f-Samsung-Bold);
    margin: 0;
    text-align: left;
    font-size: 50px;
    max-width: 100%;
}

@media (max-width: 767px) {
    #home .title {
        font-size: 50px;
        max-width: 100%;
    }
}

.text-banner {
    font-weight: 900;
    font-family: var(--f-Samsung-Medium);
    color: var(--samsungCian);
    max-width: 100%;
    margin-bottom: 30px;
    text-align: left;
    font-size: 2vw;
    line-height: 1.2;

    @media (max-width: var(--breakpoint-lg)) {
        text-align: center;
    }

    @media (max-width: var(--breakpoint-md)) {
        font-size: 24px;
        line-height: 28px;
    }

    @media (max-width: var(--breakpoint-sm)) {
        font-size: 20px;
        line-height: 24px;
    }
}

.button {
    color: var(--samsungWhite) !important;
    border-radius: 14px;
    letter-spacing: 1px;
    font-size: clamp(1rem, 2vw, 1.2rem) !important;
    font-family: var(--f-Samsung-Bold) !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    line-height: 20px !important;
    cursor: pointer !important;
    text-transform: uppercase;
    text-align: center;
    text-shadow: none;
    border: none;
    box-shadow: none;
    background-image: none !important;
    text-decoration: none !important;
    display: inline-block;
    white-space: nowrap;
}

.register-button {
    border-color: var(--samsungYellow);
    background-color: var(--samsungYellow) !important;
    margin-bottom: 1rem !important;
    padding: 12px 24px;
    display: block;
    width: fit-content;
    margin-right: auto;
}

.conditions-button {
    border-color: var(--samsungRed);
    background-color: var(--samsungRed) !important;
    margin-bottom: 1rem !important;
    padding: 12px 14px;
    display: block;
    width: fit-content;
    margin-right: auto;
}

.vote-button {
    border-color: var(--samsungBlue);
    background-color: var(--samsungBlue) !important;
    margin-bottom: 1rem !important;
    padding: 12px 14px;
    display: block;
    width: fit-content;
    margin-right: auto;
}

/* // HEADER // */

.left-logo {
    width: 200px;
    transition: all 0.4s ease-in-out;
}

.nav-header {
    display: flex;
    gap: 1rem;
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
}

.nav-header .link,
.menu-toggle {
    color: var(--samsungBlack) !important;
    font-family: var(--f-Samsung-One);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}

.nav-header .show .link {
    color: var(--samsungBlack) !important;
}

.nav-header .link:hover {
    text-decoration: none;
    color: #666 !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Estilos responsive */
@media screen and (max-width: 1160px) {
    .nav-header {
        display: none;
        flex-direction: column;
        background: var(--samsungWhite);
        position: absolute;
        top: 80%;
        right: 7%;
        width: auto;
        padding: 15px;
        align-items: flex-start;
        margin: 0%;
        box-shadow: 0px 0px 9px 4px rgba(0, 0, 0, 0.15);
        gap: 0;
        border-top: 3px solid var(--samsungCian);
    }

    .nav-header a {
        color: var(--samsungBlack);
        text-decoration: none;
        padding: 10px;
        display: block;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        left: 90%;
        box-shadow: none !important;
        margin: 0;
        padding: 5px 0 0 0;
    }

    .menu-toggle:hover {
        background: transparent !important;
    }

    .nav-header.show {
        display: flex;
    }
}

/* // ALCANCE // */

.img-alcance {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .img-alcance {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.impact-image,
.map-image {
    max-width: 45%;
    height: auto;
    object-fit: contain;

    @media (max-width: 992px) {
        max-width: 90%;
    }

    @media (max-width: 768px) {
        max-width: 100%;
    }
}

/* // SFT2025 SECTION // */

#sft2025 {
    padding: 2.5% 5%;
    display: flex;
    flex-direction: column;
}

.sft2025-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sft2025-background {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    width: 100%;

    @media (max-width: 992px) {
        min-height: 400px;
        padding: 5%;
        background-size: contain;
    }

    @media (max-width: 768px) {
        min-height: 300px;
    }
}

.sft2025-title-container {
    margin-bottom: 2rem;
    text-align: center;
}

.texts-sft2025 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.blue-title {
    color: var(--samsungCian);
    font-weight: 600;
    font-family: var(--f-Samsung-Bold);
    margin: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.9rem;
    margin-left: 20px;
    margin-bottom: 0;

    @media (max-width: 992px) {
        font-size: 2rem;
    }

    @media (max-width: 768px) {
        font-size: 1.5rem;
    }
}

.sft2025-impact-titles {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.black-title {
    color: var(--samsungBlack);
    font-size: 2.2rem;
    font-weight: 600;
    font-family: var(--f-Samsung-Bold);
    margin: 0;
    text-align: center;

    @media (max-width: 992px) {
        font-size: 1.8rem;
    }

    @media (max-width: 768px) {
        font-size: 1.4rem;
    }
}

.red-title {
    color: var(--samsungRed);
    font-size: 2.2rem;
    font-weight: 600;
    font-family: var(--f-Samsung-Bold);
    margin: 0;
    text-align: center;

    @media (max-width: 992px) {
        font-size: 1.8rem;
    }

    @media (max-width: 768px) {
        font-size: 1.4rem;
    }
}

/* // ACERCA DE // */

#acerca_de {
    padding: 0 5% 2.5%;
    background-color: var(--samsungWhite);
    display: flex;
    height: auto;
    flex-direction: column;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}

.content-acerca-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
}

.acerca-content {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
}

.video-home {
    display: flex;
    justify-content: end;
    width: 100%;
    max-width: 380px;
    width: 50%;
}

@media screen and (max-width: 990px) {
    .video-home {
        max-width: 100%;
        justify-content: center;
        width: 100%;
    }

    .content-acerca-title {
        align-items: center;
        width: 100%;
    }

    .acerca-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

.button-blue {
    border-color: var(--samsungCian);
    background-color: var(--samsungCian);
    font-family: var(--f-Samsung-One) !important;
    color: var(--samsungWhite) !important;
    font-weight: 600 !important;
    font-size: clamp(1rem, 2vw, 1.2rem) !important;
    padding: 10px 24px;
    border-radius: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: fit-content;
    margin-top: 2.5rem;
    text-decoration: none !important;
}

.s6 {
    padding-left: 0;
    text-align: left;
    color: var(--samsungCian);
    line-height: normal;
    font-family: var(--f-Samsung-Medium);
    max-width: 1020px;
    font-size: 1.25rem;
}


/* // ETAPAS // */

.img-etapas {
    width: 100%;
    height: auto;
    display: flex;
    height: auto;
    flex-direction: column;
}

.etapas {
    text-align: center;
    background-color: #f8f9fa;
    padding: 0;
}

#etapas {
    padding: 5%;
    display: flex;
    height: auto;
    flex-direction: column;
}

#etapas .column {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0% 2%;
}

#etapas .column img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 1rem;
}

#etapas .column .title {
    margin-bottom: 5px;
    font-size: 38px;
    text-align: center;
    font-weight: 600;
    font-family: var(--f-Samsung-Bold);
    text-align: center;
}

#etapas .column .subtitle {
    font-size: 18px;
    font-family: var(--f-Samsung-Bold);
    font-weight: 600;
    margin-bottom: 10px;
}

#etapas .column .subtitle.dark-blue {
    color: var(--samsungBlue);
}

#etapas .column .subtitle.red {
    color: var(--samsungRed);
}

#etapas .column .subtitle.yellow {
    color: var(--samsungYellow);
}

#etapas .column .subtitle.grey {
    color: var(--samsungGrey);
}

#etapas .column .subtitle.dark-green {
    color: var(--samsungGreen);
}

#etapas .column p {
    font-size: 18px;
    text-align: center;
    font-weight: 500;
    font-family: var(--f-Samsung-One);
    line-height: 25px;
}

.subtitle-presencial {
    font-size: 16px;
    font-family: var(--f-Samsung-Bold);
    font-weight: 600;
    margin: 0;
    color: var(--samsungGrey);
}

.etapas-content {
    display: flex;
}

@media screen and (max-width: 990px) {
    .etapas-content {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    @media (max-width: 767px) {
        #etapas .column .title {
            font-size: 32px;
        }
    }
}

/* // RECURSOS DIDACTICOS // */

.buttons-recursos {
    position: absolute;
    top: 76%;
    right: 5%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 2;
}

.button-blue2 {
    background-color: var(--samsungCian);
    color: var(--samsungWhite) !important;
    font-size: clamp(1rem, 2vw, 1.2rem) !important;
    padding: 12px 24px;
    border-radius: 12px;
    text-transform: uppercase;
    width: fit-content;
    text-align: center;
    font-family: var(--f-Samsung-Bold) !important;
    text-decoration: none !important;
    width: 100% !important;
}

.button-red {
    background-color: var(--samsungRed);
    color: var(--samsungWhite) !important;
    font-size: clamp(1rem, 2vw, 1.2rem) !important;
    padding: 12px 24px;
    border-radius: 12px;
    text-transform: uppercase;
    width: fit-content;
    text-align: center;
    font-family: var(--f-Samsung-Bold) !important;
    text-decoration: none !important;
    width: 100% !important;
}

@media (max-width: 767px) {
    .recursos-content {
        flex-direction: column;
    }
}

/* // JURADOS // */

.col-12.texts {
    display: flex;
    align-items: flex-start;
}


#jurados {
    padding: 2.5% 5%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.jurados-icono {
    position: absolute;
    right: -90px;
    top: 80%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 0;
    max-width: 420px;
    height: auto;
    pointer-events: none;
}

.line {
    background-color: var(--samsungCian);
    width: 3px;
    min-height: 115px;
}

.black,
.blue,
.red {
    font-size: 2.9rem;
    margin-left: 20px;
    font-weight: 600;
    font-family: var(--f-Samsung-Bold);
    margin-bottom: 0;
}

.blue {
    color: var(--samsungCian);
}

.red {
    color: var(--samsungRed);
}

.black {
    color: var(--samsungBlack);
}

.jurados-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

#jurados .person {
    flex: 0 0 calc(20% - 30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 15px 0;
}

#jurados .person h4 {
    font-size: 1.5rem;
    color: var(--samsungBlack);
    font-family: var(--f-Samsung-Bold);
    text-align: center;
    margin-top: 0;
    margin-bottom: 1rem;
}

#jurados .person p {
    font-size: 1.1rem;
    color: var(--samsungBlack);
    font-family: var(--f-Samsung-Regular);
    text-align: center;
    width: 80%;
    margin-top: 0;
    margin-bottom: 1rem;
}

.person img {
    width: 100%;
    max-width: 230px;
    height: auto;
    margin-bottom: 10px;
}

@media (max-width: 1200px) {
    #jurados .person {
        flex-basis: calc(25% - 20px);
    }
}

@media (max-width: 992px) {
    #jurados .person {
        flex-basis: calc(33.33% - 20px);
    }

    .jurados-content {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    #jurados .person {
        flex-basis: calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    #jurados .person {
        flex-basis: 100%;
    }
}

/* // SECCION EMBAJADORES // */

#embajadores {
    padding: 2.5% 5%;
    display: flex;
    height: auto;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background: #07113f;
}

.embajadores-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.line-white {
    background-color: white;
    width: 3px;
    min-height: 115px;
}

.white {
    font-size: 2.9rem;
    margin-left: 20px;
    color: var(--samsungWhite);
    font-weight: 600;
    font-family: var(--f-Samsung-Bold);
    margin-bottom: 0;
}

.embajador {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 15px 0;
    flex: 0 0 220px;
}

.embajador h4 {
    font-family: var(--f-Samsung-Bold);
    font-size: 1.4rem;
    color: var(--samsungWhite);
    width: 100%;
    max-width: 220px;
    text-align: center;
}

.embajador img {
    width: 220px;
    height: 220px;
    margin-bottom: 10px;
    object-fit: cover;
}

@media (max-width: 992px) {
    .embajador {
        flex: 0 0 45%;
    }
}

@media (max-width: 576px) {
    .embajador {
        flex: 0 0 100%;
    }

    .embajadores-content {
        gap: 0rem;
    }
}

@media (max-width: 768px) {

    .black,
    .blue,
    .red,
    .white {
        font-size: 2.5rem;
    }

    .line,
    .line-white {
        min-height: 100px;
    }
}

@media (max-width: 580px) {

    .black,
    .blue,
    .red,
    .white {
        font-size: 2rem;
    }

    .line,
    .line-white {
        min-height: 80px;
    }
}

@media (max-width: 475px) {

    .line,
    .line-white {
        min-height: 115px;
    }
}


/* // SECCION CRITERIOS // */

#criterios {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    position: relative;
    width: 100%;
    padding: 0;
}

#criterios img {
    width: 100%;
    height: auto;
    display: block;
}

.title-criterios {
    position: absolute;
    top: 72%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 2;
}

.title-criterios h2 {
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin: 0;
    line-height: 1.1;
    color: var(--samsungWhite);
    font-family: var(--f-Samsung-Bold);
}

.button-criterios-container {
    position: absolute;
    bottom: clamp(8%, 10%, 12%);
    right: clamp(5%, 8%, 10%);
    z-index: 2;
    display: flex;
    gap: 1rem;
}

.button-criterios {
    background-color: var(--samsungYellow);
    color: var(--samsungWhite) !important;
    font-weight: 700 !important;
    font-size: clamp(1rem, 2vw, 1.2rem) !important;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    text-transform: uppercase;
    text-decoration: none;
    font-family: var(--f-Samsung-One) !important;
    display: inline-block;
    white-space: nowrap;
    text-decoration: none !important;
}

@media (max-width: 768px) {
    #criterios img {
        width: 100vh;
        height: 35vh;
    }

    .title-criterios {
        top: 64% !important;
        left: 5% !important;
    }

    .title-criterios h2 {
        font-size: 2rem !important;
    }

    .button-criterios-container {
        left: 5%;
        bottom: 7% !important;
        flex-direction: column;
        align-items: flex-end;
    }

    .button-criterios {
        width: auto;
        min-width: 142px;
        text-align: right;
    }
}

/* // CONTACT FORM // */

#contactanos {
    padding: 2% 10%;
    display: flex;
    height: auto;
    flex-direction: row;
    justify-content: center;
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

@media (max-width: 450px) {
    #contactanos {
        padding: 5%
    }
}

.contactanos-header h2 {
    font-weight: bold;
    font-family: var(--f-Samsung-Regular);
    font-size: 2.5rem !important;
    text-align: center;
    margin-bottom: 1rem;
}

.contactanos-header p {
    text-align: center;
    font-size: 1.2rem;
    font-family: var(--f-Samsung-Regular);
    margin-bottom: 1.5rem;
    color: var(--samsungBlack);
}

#contactanos .form-box p {
    line-height: 30px;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 500;
    font-family: var(--f-Samsung-One);
    text-align: center;
}

#contactanos .form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    height: 100vh;
    align-items: center;
    width: 100%;
}

.form iframe {
    padding: 5%;
    width: 100%;
    height: 1400px;
    border: none;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    #contactanos {
        padding: 5%;
    }

    #contactanos .form {
        max-width: 100%;
        height: auto;
    }

    .form iframe {
        padding: 1rem;
        width: 100%;
        height: auto;
        min-height: 900px;
    }
}

/* // Footer // */

#footer {
    display: flex;
    justify-content: center;
    background-color: var(--samsungBlack);
    padding: 2.5rem 0;
    width: 100%;
    overflow: hidden;
}

.home-content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    max-width: 100%;
    margin: 0;
    padding: 0 0 0 2%;
    gap: 20px;
    min-height: 200px;

    /* // Responsive: Cambiar a diseño vertical en tablets y móviles */
    @media (max-width: 992px) {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 0 20px;
    }
}

.home-left-column {
    flex: 0 0 42%;
    max-width: 42%;
    padding-right: 60px;
    padding-top: 9vw;

    @media (max-width: 992px) {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
        text-align: center;
        padding-top: 5rem;
    }
}

.home-right-column {
    flex: 0 0 58%;
    max-width: 58%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    position: relative;
    height: auto;

    @media (max-width: 992px) {
        flex: 0 0 100%;
        max-width: 100%;
        justify-content: center;
        margin-top: 0;
    }
}

.home-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    position: relative;
    margin-right: -7%;
    max-width: 80vw;
    max-height: 40vw;

    @media (max-width: 1200px) {
        margin-top: -50px;
        margin-right: 0;
    }

    @media (max-width: 992px) {
        margin-top: 0;
        max-width: 80%;
    }

    @media (max-width: 768px) {
        max-width: 90%;
    }

    @media (max-width: 480px) {
        max-width: 100%;
    }
}

.title-text {
    padding: 0 0 0 1rem;
}

.title-container {
    display: flex;
    align-items: center;
    margin-bottom: 30px;

    @media (max-width: 992px) {
        justify-content: center;
        align-items: center;
        margin-bottom: 30px;
        flex-direction: column;
        gap: 2rem;
    }
}

.first-banner-title {
    color: var(--samsungBlack);
    font-family: var(--f-Samsung-Bold);
    margin: 0;
    text-align: left;
    font-size: 2.8vw;
    line-height: 1;
    font-weight: 900;
    white-space: nowrap;

    @media (max-width: 992px) {
        text-align: center;
        font-size: clamp(24px, 4vw, 45px);
    }

    @media (max-width: 768px) {
        font-size: clamp(20px, 5vw, 35px);
    }

    @media (max-width: 480px) {
        font-size: clamp(18px, 6vw, 28px);
    }
}

.logo-icon {
    width: 8vw;
    height: auto;
    margin-top: 5px;

    @media (max-width: 992px) {
        width: 80px;
    }

    @media (max-width: 768px) {
        width: 60px;
    }
}

#home p {
    color: var(--samsungCian);
    max-width: 100%;
    margin-bottom: 15px;
    text-align: left;
    line-height: 29px;
    font-size: 2.3rem;
    font-weight: 900;
    font-family: var(--f-Samsung-Bold);

    @media (max-width: 992px) {
        text-align: center;
    }

    @media (max-width: 768px) {
        font-size: 20px;
        line-height: 24px;
    }

    @media (max-width: 480px) {
        font-size: 18px;
        line-height: 22px;
    }
}

/* // Botones responsive */
.button {
    @media (max-width: 992px) {
        padding: 10px 20px;
        font-size: 13px;

        display: inline-block;
        text-align: center;
    }

    @media (max-width: 768px) {
        padding: 10px 20px;
        font-size: 13px;
        display: inline-block;
        text-align: center;
    }
}

.ods-icons-container {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 0.7vw 5%;

    @media (max-width: 992px) {
        justify-content: center;
        padding: 20px 5%;
    }

    @media (max-width: 768px) {
        gap: 8px;
    }

    @media (max-width: 480px) {
        flex-wrap: wrap;
        gap: 15px;
        padding: 20px 3%;
    }
}

.ods-icon {
    width: 60px;
    height: auto;
    transition: transform 0.3s ease;

    @media (max-width: 992px) {
        width: 50px;
    }

    @media (max-width: 768px) {
        width: 45px;
    }

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

.section-logos-arranged {
    width: auto;
    padding: 20px 5%;
    background-color: var(--samsungWhite);
}

.images-logos {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2.5rem;
    width: 100%;
}

/* Logo 1 */
.logo-optimized {
    height: 2.4vw;
    max-height: 70px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Logo 2 - Conciencia (reducido) */
.logo-conciencia {
    height: 2.4vw;
    max-height: 70px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Logo 3 */
.logo-pper {
    height: 1.8vw;
    max-height: 60px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Logo 4 - Enabling People (a la derecha) */
.logo-enabling {
    height: 4.5vw;
    max-height: 90px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-left: auto;
}

/* Para un redimensionamiento más fluido */
@media screen and (max-width: 1400px) {
    .logo-optimized {
        height: 3.5vw;
    }

    .logo-conciencia {
        height: 4.5vw;
    }

    .logo-pper {
        height: 45px;
    }

    .logo-enabling {
        height: 90px;
    }
}

@media screen and (max-width: 1200px) {

    .logo-optimized,
    .logo-conciencia {
        height: 50px;
    }

    .logo-pper {
        height: 40px;
    }

    .logo-enabling {
        height: 80px;
    }
}

/* Responsive - Tablets */
@media screen and (max-width: 1160px) {
    .images-logos {
        justify-content: center;
        gap: 20px;
    }

    .logo-enabling {
        margin-left: 0;
        height: 70px;
    }

    .logo-optimized,
    .logo-conciencia {
        height: 45px;
    }

    .logo-pper {
        height: 35px;
    }
}

/* Responsive - Mobile */
@media screen and (max-width: 767px) {
    .images-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .logo-optimized,
    .logo-conciencia,
    .logo-pper {
        height: 40px;
    }

    .logo-enabling {
        height: 60px;
        margin-left: 0;
    }
}

/* Extra small screens */
@media screen and (max-width: 480px) {
    .section-logos-arranged {
        padding: 10px;
    }

    .images-logos {
        gap: 10px;
    }

    .logo-optimized,
    .logo-conciencia,
    .logo-pper {
        height: 35px;
    }

    .logo-enabling {
        height: 50px;
    }
}

/* // Recursos didácticos hero section */
.recursos-hero-section {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    padding: 0;
}

.recursos-hero-container {
    position: relative;
    z-index: 2;
}

.recursos-hero-row {
    min-height: 420px;
}

.recursos-hero-title-container {
    position: absolute;
    top: 72%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 2;
}

.recursos-hero-title {
    font-size: 2.9rem;
    font-weight: bold;
    letter-spacing: -0.5px;
    margin: -44px;
    line-height: 1.1;
    color: var(--samsungWhite);
    font-family: var(--f-Samsung-Bold);
}

.recursos-hero-buttons {
    position: absolute;
    top: 76%;
    right: 10%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 2;
}

.recursos-hero-btn {
    color: var(--samsungWhite);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 12px 24px;
    border-radius: 12px;
    text-transform: uppercase;
    width: fit-content;
    text-align: center;
    font-family: var(--f-Samsung-Bold, 'Arial', sans-serif);
}

.recursos-hero-btn-blue {
    background-color: var(--samsungCian);
}

.recursos-hero-btn-red {
    background-color: var(--samsungRed);
}

/* Add responsive adjustments */
@media (max-width: 992px) {
    .recursos-hero-buttons {
        right: 5%;
    }

    .title-text {
        padding: 0;
    }

    .container-banner {
        margin: 0;
    }
}

@media (max-width: 768px) {
    .recursos-hero-title {
        font-size: 2.5rem;
        top: -17vh;
        position: absolute;
        left: 56vw;
        text-align: center;
    }

    .buttons-recursos {
        width: 40%;
    }

    .button-blue2 {
        font-size: 0.8rem !important;
    }

    .button-red {
        font-size: 0.8rem !important;
    }

    .recursos-hero-btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .recursos-hero-title {
        font-size: 2rem;
    }

    .recursos-hero-buttons {
        top: auto;
        bottom: 10%;
        right: 50%;
        transform: translateX(50%);
        width: 80%;
        align-items: center;
    }

    .recursos-hero-btn {
        width: 100%;
        font-size: 0.8rem;
        padding: 8px 16px;
    }
}


/* --- Landing Modal (popup) --- */
body.no-scroll {
    overflow: hidden;
}

.s4t-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
}

.s4t-modal-overlay.show {
    display: flex;
}

.s4t-modal-box {
    position: relative;
    background: transparent;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    max-width: 690px;
    width: 100%;
    max-height: 90vh;
}

.s4t-modal-box img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 90vh;
    border-radius: 16px;
}

@media (max-width: 768px) {
    .s4t-modal-box {
        max-width: 92vw;
    }
}

@media (max-width: 480px) {
    .s4t-modal-box {
        max-width: 100vw;
        max-height: 88vh;
        overflow-y: auto;
    }
}

.s4t-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    color: #333333;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 1px 18px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bolder;
    background-image: none;
    background-color: #e0e0e0;
    /* gris base */
    transition: background-color 0.2s ease, color 0.2s ease;
}

.s4t-modal-close:hover {
    background-color: #d6d6d6 !important;
    /* gris sutil al hover */
    color: #222222;
    background-image: none !important;
}