
/*Comite*/

h3{
    font-size: 2rem;
    font-weight: 600;
    color: #434738;
}



.comite{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 5rem;
    padding-bottom: 3rem;
    background: var(--bg--lightgray);
}

.comite .tittles{
    width: 80%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.comite .cont{
    width: 90%;
    max-width: 1100px;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
}

.comite .cont .left{
    width: 50%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.5rem;
}

.comite .cont .right{
    width: 50%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.comite .cont .right img{
    width: 100%;
    height: auto;
}

    /*Media Querys*/

    @media screen and (max-width:1000px) {

        .comite .cont{
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
        }

        .comite .tittles{
            margin-bottom: 1.5rem;
        }

        .comite .cont .left{
            width: 80%;
            justify-content: flex-start;
            align-items: center;
            text-align: center;
            margin-bottom: 1rem;
        }

        .comite .cont .right{
            width: 80%;
        }
    }
    
    @media screen and (max-width:720px) {
        
        .comite{
            padding-top: 3rem;
            
        }

        .comite .cont{
            width: 90%;
        }

        .comite .cont .left{
            width: 100%;
        }

        .comite .cont .right{
            width: 100%;
        }
    }



/*Frase*/

.frase{
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padd-top: 3rem;
    padding: 5rem 0rem;
    background-color: var(--color-blue);
}

.frase p{
    max-width: 800px;
    font-size: 1.5rem;
    color: var(--color-white);
    font-style: italic;
    margin-left: 10%;
    margin-right: 10%;
}

@media screen and (max-width: 700px) {
    .frase p{
        font-size: 1.2rem;
    }
}

/*Pilares*/

.pilares{
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 3rem;
    background: var(--bg--lightgray);
}

.pilares .cont{
    width: 60%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 3rem;
}

.pilares .cont h3{
    margin-bottom: 2rem;
}

.pilares .cont .item{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.pilares .cont .item h6{
    color: var(--color-blue);
}

.pilares .cont .item h6::before{
    content: '• '; /* Punto antes del título */
    font-size: 1.2em; /* Tamaño del punto, ajustable según necesidad */
    color: var(--color-blue); /* Color del punto, ajustable */
}

.pilares .cont .item p{
    width: 70%;
    min-width: 300px;
}

    /*Media Querys*/

    @media screen and (max-width: 900px) {
        .pilares .cont{
            width: 80%;
        }
    }


/*Acreditacion*/

.acreditacion{
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 3rem;
    background: var(--bg--lightgray);
}

.acreditacion .cont{
    width: 60%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.acreditacion .cont h3{
    margin-bottom: 1.5rem;
}

.acreditacion .cont p{
    margin-bottom: 1rem;
}

.acreditacion .cont .item{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}

.acreditacion .cont h4{
    color: #434738;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}


.acreditacion .cont .item p{
    margin-bottom: 1rem;
    margin-right: 0.5rem;
}

.acreditacion .cont .item a{
    color: var(--text-lightblue);
    text-decoration: underline;
    transition: all 0.2s ease-in-out;
}

.acreditacion .cont .item a:hover{
    color: var(--color-blue);
}

    /*Media Querys*/

    @media screen and (max-width: 900px) {
        .acreditacion .cont{
            width: 80%;
        }
    }

    @media screen and (max-width: 670px) {
        .acreditacion .cont .item{
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
        }

        .acreditacion .cont .item p{
            margin-bottom: 0.2rem;
        }

        .acreditacion .cont .item a{
            margin-bottom: 1rem;
        }
        
    }
