/* ================================
   HERO PRINCIPAL
================================ */
.principal {
    background: var(--color-primario);
    padding: 150px 20% 50px;
    text-align: left;
    color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.principal h1 {
    font-size: 3rem;
    font-weight: 700;
}

.principal img {
    /* width: 400px;
    height: auto; */

    width: 100px;
    height: 400px;
    border-radius: 50%;

}

.principal div {
    margin-left: 20px;
    text-decoration: dashed;


}

/* TABLET */
@media (max-width: 992px) {
    .principal {
        padding: 150px 10%;
    }

    .principal div {
        margin-left: 0;
    }

    .principal h1 {
        font-size: 2.5rem;
    }

    .principal img {
        width: 200px;
        height: 200px;
    }
}

/* CELULAR */
@media (max-width: 600px) {
    .principal {
        padding: 150px 20px;
            flex-direction: column;
    }

    .principal h1 {
        font-size: 2rem;
    }

    .principal img {
        width: 200px;
        height: 200px;
    }
}


/* ================================
   PRESENTACIÓN
================================ */
#presentacion {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    gap: 50px;
    margin: 80px auto;
    max-width: 1200px;
    padding: 0 20px;
}

#presentacion .img img {
    width: 400px;
    height: 600px;
    object-fit: cover;
    border-radius: 5px;
}

#presentacion .texto {
    max-width: 600px;
    font-size: var(--fuente-md);
    line-height: 1.6;
    color: var(--gris-oscuro);
}

#presentacion .texto h2 {
    color: var(--color-secundario);
}

#presentacion .texto p {
    text-align: justify;
}

#presentacion ul li {
    margin-bottom: 5px;
}

#presentacion ul li a {
    text-decoration: none;
    color: white;
}

/* TABLET */
@media (max-width: 992px) {
    #presentacion {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 50px;
    }

    #presentacion .img img {
        width: 260px;
        height: 450px;
    }

    #presentacion .texto {
        max-width: 90%;
    }
}

/* CELULAR */
@media (max-width: 600px) {
    #presentacion .img img {
        width: 100%;
        height: auto;
        max-width: 300px;
    }

    #presentacion {
        gap: 25px;
        margin-top: 40px;
    }

    #presentacion .texto h2 {
        font-size: 1.4rem;
    }

    #presentacion .texto {
        font-size: 1rem;
    }
}


/* ================================
   INFORMACIÓN (FULL WIDTH)
================================ */
#informacion {
    background: var(--color-terciario);
    width: 100%;
    padding: 60px 0;
}

#informacion .contenedor {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#informacion .contenedor > div {
    max-width: 600px;
    font-size: var(--fuente-md);
    line-height: 1.6;
}

#informacion h2 {
    color: var(--color-primario);
}

#informacion .img img {
    width: 330px;
    height: 600px;
    object-fit: cover;
    border-radius: 4px;
}

/* TABLET */
@media (max-width: 900px) {
    #informacion .contenedor {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #informacion .img img {
        width: 100%;
        height: auto;
        max-width: 350px;
    }
}

/* CELULAR */
@media (max-width: 600px) {
    #informacion .contenedor > div {
        font-size: 1rem;
    }
}


/* ================================
   POLÍTICA (FULL WIDTH)
================================ */
#politica {
    background: var(--gris-medio);
    width: 100%;
    padding: 60px 0;
}

#politica .contenedor {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 50px;
}

#politica img {
    width: 330px;
    height: 480px;
    object-fit: cover;
    border-radius: 4px;
}

#politica .texto {
    max-width: 650px;
    color: var(--gris-oscuro);
    font-size: var(--fuente-md);
    line-height: 1.6;
}

#politica .texto h2 {
    color: var(--color-secundario);
    margin-bottom: 15px;
}

/* TABLET */
@media (max-width: 900px) {
    #politica .contenedor {
        flex-direction: column;
        text-align: center;
    }

    #politica img {
        width: 100%;
        height: auto;
        max-width: 350px;
    }
}

/* CELULAR */
@media (max-width: 600px) {
    #politica .texto {
        font-size: 1rem;
    }
}
