:root {
    /* Texto */
    --font-size-timer: min(5vw, 50px);
    --font-size-icons: max(3vw, 40px);
}

h1, h2, h3, h4 {
    margin: 0;
}

.section-container {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

hr { /* Lineas horizontales */
    border: none; /* Quita el borde por defecto */
    height: 2px;  /* Define el grosor de la línea */
    background-color: #fff; /* Define el color de la línea */
    margin: 20px 0; /* Añade márgenes arriba y abajo */
}


/* ############################################# SECCION: PORTADA ############################################# */
.main_section {
    /* Display & Position */
    display: flex;
    flex-direction: column;
    justify-content: center;

    /* Box model */
    height: calc(100vh - var(--header-height));  /* Le agrego un poco mas que 100vh porque en mobile el zocalo del navegador le come un poco de altura y queda mal, prefiero que sobre */

    /* Background */
    background: linear-gradient(to right, #000, transparent), url("../images/AI.webp");  /* El estadio esta muy mal generada */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
}

.main_section .image-container-text {
    /* Box model */
    width: max(40vw, 180px);

    /* Texto */
    color: #fff;
    text-align: left;
}

.main_section .image-container-text p {
    text-align: left;
    margin-bottom: 4vh;
}

.main_section .image-container-text h1 {
    font-size: var(--font-size-h2);
    font-weight: 200;
    padding-bottom: 5vh;
}

.main_section .image-container-text h2 {
    font-size: var(--font-size-h1);
}

.image-container-text h2 span {
    color: var(--color-terciario-medio);
}

.main_section .image-container-text .btn-link {
    /* Box model */
    width: max-content;
    padding: var(--padding-button);
    /* Bordes */
    border: none;
    border-radius: var(--border-radius-button);
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 1); /* Añade una sombra sutil para darle relieve */
    /* Background */
    background-color: var(--color-primario-claro);
    /* background-color: var(--color-terciario-medio); */

    /* Font */
    color: #000;
    /* color: #fff; */
    text-decoration: none;
    font-weight: bold;
    /* Cursor */
    cursor: pointer;
}

.main_section .image-container-text .btn-link:hover {
    opacity: 0.7;
}

.main_section .atribucion {
    /* Display & Position */
    position: absolute;
    bottom: 0vh;
    right: 1vw;
    
    /* Box model */
    margin: 0;

    /* Color */
    color: #fff;
}

.main_section .atribucion a {
    color: #fff;
}

/* ############################################# SECCION: POR QUE TIPTOPIA ############################################# */
.section-title span {
    color: var(--color-secundario-medio);
}

.advantages-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center; /* Alineación horizontal */
    align-items: first baseline; /* Alineación vertical. Para que sea top */
    margin-top: 3vh;
}

.advantages-list > li {
    /* Display */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    /* Box model */
    flex-basis: 30%;
    min-width: 200px;
    margin: 3vh 1vw;
}

.advantages-list > li span {
    font-weight: bold;
    font-size: var(--font-size-h3);
    margin: 1vw 0;
}

.advantages-list * img {
    /* width: 10vw; */
    width: clamp(80px, 10vw, 100px);
    padding: 1vw;
}

/* ############################################# SECCION 3: RESULTADOS ############################################# */
.resultados-acumulados {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.roi-section {
    /* Display y alineación */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center; /* Alineación horizontal */
    align-items: center; /* Alineación vertical */
    /* Box model */
    padding: 2vw;
    padding-top: clamp(80px, 6vw, 120px);
}

.roi-value {
    min-width: 50%;
}

.roi-value span {
    font-size: var(--font-size-metric);
    font-weight: bolder;
}

.roi-value p, .roi-info p  {
    font-size: 24px; /* Fallback */
    font-size: clamp(20px, 2vw, 24px);
}

.roi-info span {
    font-weight: bold;
}

.roi-definition {
    display: flex;
    align-items: center;
    font-size: var(--font-size);
}

.roi-definition .info-icon {
    background-color: white;
    color: var(--color-terciario);
    font-weight: bold;
    margin-right: 10px;
    border-radius: 50%;
    padding: 0 5px;
}

.resultados-acumulados p {
    text-align: center;
}

.resultados-header p {
    margin: 0;
}


/* ############################################# SECCION: COMO FUNCIONA ############################################# */
.como-funciona {
    /* Display & Position */
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;

    /* Box model */
    padding: 1vh 0;
}

.como-funciona h2 {
    padding: 10px 0;
}

/* --------------------------------------------- steps ---------------------------------------------*/
.container_steps {
    /* Display */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container_steps .container_steps__step {
    /* Flexbox for centering */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Opcional: centra también horizontalmente */
    
    /* Box model */
    flex-basis: 33%;
    min-height: 20vh;
    width: 60%;
    margin: 1vh 2vw;
    padding: max(1vw, 1vh);

    /* Background */
    background-color: #fff;
    border: 0.1rem solid rgba(34, 34, 38, 0.08);
    border-radius: 2rem;
    box-shadow: rgba(34, 34, 38, 0.08) 0px 1px 8px 2px;
}

.container_steps .container_steps__step p {
    /* Alineacion */
    text-align: center;
}

.container_steps__step .icon {
    font-size: var(--font-size-icons);
    color: #037f51;
}

.container_steps__step:hover {
    box-shadow: rgba(34, 34, 38, 0.08) 0px 3px 16px 4px;
}

/* ____________________________________________ QUERIES: COMO FUNCIONA  ____________________________________________ */
@media (min-width: 1000px) {
    .container_steps {
        flex-direction: row; /* Diseño para desktop */
    }

    .container_steps__step {
        width: 20%;
    }
}


/* ############################################# SECCION: FAQS ############################################# */
.FAQS_container__answer {
    display: none; /* Oculta la respuesta por defecto */
}
.FAQS_container__question {
    /* background-color: aqua; */
    font-weight: 700;
    cursor: pointer; /* Cambia el cursor para indicar que es interactivo */
}
.FAQS_container__question.active + .FAQS_container__answer {
    display: block; /* Muestra la respuesta cuando la pregunta está activa */
}

.FAQS_container__question.active {
    opacity: 0.5;
}

.FAQS_container li {
    text-align: left;
    border-bottom: 1px solid #000;
    margin-bottom: 2vh;
}

.FAQS_container li p {
    margin: 0; /* Saco el margin por defecto */
    margin-bottom: 10px;
}