/* ######################################## Generales ######################################## */
.section-container {
    /* Display & position */
    display: flex;
    flex-direction: column;
    padding: 5vh 0; /* Separacion vertical entre secciones */
}

.section-container__item {  /* Flex item */
    /* Box model */
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;

    /* Alineacion */
    justify-self: center; /* Alineacion horizontal */
    align-self: center; /* Alineacion vertical */
}

h2 {
    font-size: var(--font-size-h3);
}

/* ------------------------------------------ SECCION PRINCIPAL ------------------------------------------ */
.intro {
    padding: 0;  /* Evito margenes para que video quede pantalla completa */
}

.intro .title {
    display: flex;
    flex-direction: column;
    font-weight: 100;
}

.intro .title span {
    color: var(--color-terciario-medio);
    font-weight: 500;
} 

.intro .text-container {
    padding: 3vh;
}

.intro .text-container .btn-link {
    /* Box model */
    padding: var(--padding-button);
    margin-bottom: 2vh;

    /* Border */
    border: 1px solid #fff;
    border-radius: var(--border-radius-button);

    /* Color */
    color: #fff;
    background-color: transparent;

    /* Otro */
    font-size: var(--font-size);
    cursor: pointer;
}

.intro .video_container video {
    /* Display */
    display: block; /* por defecto son inline y dejan un espacio en blanco debajo */

    /* Box model */
    width: 100%;
    height: 100%;
}


/* ------------------------------------------ SECCION TIMELINE ------------------------------------------ */
h3 {
    display: flex;
    flex-direction: column;
}

h3 span {
    font-weight: 200;
}

.image-container {
    overflow: hidden; /* Oculta el exceso de imagen que salga del contenedor */
}

section img {
    /* Box model */
    width: 70%;
    height: 70%;
    object-fit: cover; /* La imagen se recorta para cubrir el contenedor */
    max-height: 500px;
}

/* ------------------------------------------ SECCION PROXIMOS PASOS ------------------------------------------ */
section .next_steps p {
    margin-bottom: 15px;
}

section .next_steps ul {
    list-style-type: disc;
    margin-left: 12px;
}

section .next_steps ul li {
    list-style-type:circle;
    margin-bottom: 12px;
    margin-left: 24px;
    text-align: left;
}

/* ######################################## BODY QUERIES ######################################## */
@media (min-width: 1000px) {
    .section-container {
        flex-direction: row; /* Cambio a fila para pantallas más grandes */
        flex-wrap: nowrap; /* Permitir el ajuste de elementos en múltiples filas */
    }

    .section-container__item {
        flex-basis: 50%;
        padding: 0;
    }

    .section-container>*:first-child {
        margin-right: 2vw;  /* Separacion lateral entre contenedores texto e imagen */
    }
}