@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: poppins;
    background-color: #292929;
    color: white;
}

.bold {
    font-weight: bold;
}

.container {
    width: 85%;
    margin: 0 auto;
    /* border: solid red 1px; */
}

.flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

/*reader*/

header {
    background-image: url(../img/header.png);
}

.header-txt {
    width: 60%;
}

header .img-header img {
    width: 100%;
    padding-top: 50px;
}

.img-header {
    width: 40%;
    height: 500px;


    display: flex;
    align-items: center;
    justify-content: center;
}

#img-header-cll {
    width: 40%;
    height: 500px;
    border: 2px solid black;

    display: flex;
    align-items: center;
    justify-content: center;

    display: none;
}

.header-txt h1 {
    font-weight: 400;
    line-height: 35px;
    margin-bottom: 25px;
}

.header-txt h1 span {
    font-weight: 700;
}

.btn-header {
    display: inline-block;
    text-decoration: none;
    color: white;
    background-image: linear-gradient(45deg, black, #636363);
    padding: 15px;
    border-radius: 5px;

}

/*pilares*/
#pilares {
    padding: 30px 0;
}

#pilares h2 {
    text-align: center;
    margin-bottom: 15px;
}

#pilares p {
    text-align: center;
}

#pilares a {
    display: inline-block;
    text-decoration: none;
    color: white;
    background-image: linear-gradient(45deg, black, #636363);
    padding: 15px;
    border-radius: 5px;
    text-align: center;
}

#pilar-cll {
    display: none;
}

#pilar-pc {
    -webkit-user-drag: none;
}



/*depoimentos*/

#depoimentos {
    background-color: white;
    color: #292929;
    padding: 25px 0;
}

#depoimentos h2 {
    text-align: center;
    padding-bottom: 20px;
}

#depoimentos .container img {
    width: 100%;
}

#dep-cll {
    display: none;
}



/*publico*/

#publico {
    padding: 25px 0;
}

#publico .container h2 {
    padding-bottom: 15px;
}

.sub-publico {
    background-color: white;
    color: #292929;
    padding: 25px;
    text-align: center;
    margin-bottom: 20px;
    font-size: 2em;
}

#publico .container .list {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

#publico .container p.sub-titulo {
    margin-bottom: 15px;
    font-size: 14px;
}

#publico a {
    margin-top: 20px;
    display: inline-block;
    text-decoration: none;
    color: white;
    background-image: linear-gradient(45deg, black, #636363);
    padding: 15px;
    border-radius: 5px;
}


/*Bio*/

#bio {
    padding: 25px 0;
}

.text-bio {
    width: 55%;
    text-align: justify;

}

#title-cll {
    display: none;
}

.img-bio {
    width: 40%;

}

.img-bio img {
    width: 100%;
    border-radius: 25px;
}



@media (min-width:360px) and (max-width: 500px) {

    h1 {
        font-size: 23px;
    }

    #pilares p {

        text-align: justify;
    }

    .flex {
        flex-direction: column;
    }

    .header-txt {
        width: 100%;
        text-align: center;
    }

    .header-txt h1 {
        text-align: center;
        margin-top: 500px;
    }

    .img-header {
        display: none;
    }

    #img-header-cll {
        display: none;
        width: 100%;
        height: 200px;
    }

    header {
        background-image: url(../img/head-cll.png);
        background-repeat: no-repeat;
        background-size: 100%;
        height: 600px;
    }

    /*pilares*/
    #pilares {
        margin-top: 200px;
    }

    #pilares p {
        text-align: center;
    }

    #pilares h2 {
        font-size: 39px;
    }

    #pilar-pc {
        display: none;
    }

    #pilar-cll img {
        width: 100%;
        border-radius: 25px;
        border: solid white 2px;
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.39);
        margin: 10px 0;
    }

    #pilar-cll {
        display: block;
        margin-top: 25px;
    }

    #pilares a {
        display: block;
        margin: 20px;
    }


    /*bio*/
    .img-bio {
        width: 100%;
        height: 300px;
    }

    .text-bio {
        width: 100%;
        margin-top: 155px;
    }

    #title-pc {
        display: none;
    }

    h2#title-cll {
        display: block;
        padding: 15px 0;
    }

    /*depoimentos*/
    #dep-pc {
        display: none;
    }

    #dep-cll {
        display: block;
    }

    #depoimentos h2 {
        margin-bottom: 20px;
    }

    /*bio*/
    #title-pc {
        display: none;
    }

    h2#title-cll {
        text-align: center;
    }

    /*publico*/
    #publico a {
        display: block;
        text-align: center;
    }

    .sub-publico {
        font-size: 1em;
    }
}