*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Poppins', 'sans-serif';
    list-style: none;
    text-decoration: none;
}

*::-webkit-scrollbar{
    background: #dbeafe;
    width: 8px;
}

*::-webkit-scrollbar-thumb{
    background: #35a2df;
    border-radius: 5px;
}

.capa{
    background: url('../img/capa.png');
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.capa .example-img{
    width: 800px;
    height: 800px;
    border-top-left-radius: 50%; 
    border-bottom-left-radius: 50%; 
    overflow: hidden; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    position: absolute;
    top: -160px;
    right: 0px;
}

.capa .example-img img{
    width: 800%;
    height: 70%;
    object-fit: cover;
    object-position: center;

}

.capa .circle{
    width: 800px;
    height: 800px;
    border-top-left-radius: 50%; 
    border-bottom-left-radius: 50%; 
    overflow: hidden; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    position: absolute;
    top: -160px;
    right: 25px;
    background: #35a1df83;
}
.capa .circle2{
    width: 800px;
    height: 800px;
    border-top-left-radius: 50%; 
    border-bottom-left-radius: 50%; 
    overflow: hidden; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    position: absolute;
    top: -160px;
    right: 60px;
    background: #5079c469;
}
.capa .circle3{
    width: 800px;
    height: 800px;
    border-top-left-radius: 50%; 
    border-bottom-left-radius: 50%; 
    overflow: hidden; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    position: absolute;
    top: -160px;
    right: 120px;
    background: #5079c438;
}

.capa .text{
    position: absolute;
    top: 160px;
    left: 200px;

}

.capa .text h1{
    color: #02273a;
    font-size: 50px;
    font-weight: 600;
    line-height: 1.2;
}

.capa .text p{
    color: #565c63;
    font-size: 20px;
    font-weight: 300;
}

.capa .text button{
    margin: 40px 0px;
    padding: 5px 10px;
    background: transparent;
    border-style: none;
    border: 2px solid #078dd5;
    background-color: #078dd5;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.capa .text button:hover{
    transform: scale(1.1);
    cursor: pointer;
    color: white;
    background-color: #078dd5a6;
}

.content{
    padding: 40px 0px;
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    display: flex;
    flex-direction: row;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    z-index: 20;
}

.content .colunas{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.content .coluna{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.content .coluna .box{
    width: 300px;
    height: 320px;
    border-radius: 5px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
    padding: 20px 20px;
    margin: 15px 15px;
    position: relative;
}

.content .coluna .box h1{
    color:#47a4da;
    font-size: 40px;
    line-height: 1;
    width: 100%;
    text-align: end;
}
.content .coluna .box h2{
    color:#47a4da;
    font-size: 20px;
    font-weight: 600;
}

.content .coluna .box p{
    color: rgb(124, 124, 124);
    text-align: start;
    margin: 10px 0px;
}

.content .coluna .box a{
    position: absolute;
    margin: 10px 0px;
    color: #35a2df;
    display: flex;
    align-items: center;
    flex-direction: row;
    bottom: 5px;
    right: 15px;
}

.coluna-2{
    margin-top: 80px;
}

.texto-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction:column;
    margin-left: 50px;
    width: 400px;
    font-size: 20px;
    color: #02273a;
}

.texto-content a{
    text-align: center;
    width: 100%;
    margin: 20px 0px;
    padding: 10px 20px;
    color: #078dd5;
    border: 1px solid #078dd5;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.texto-content a:hover{
    transform: scale(1.1);
    color: white;
    background: #078dd5;
}

.valores {
    width: 100%;
    height: fit-content;
    background:  #a8ceff;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0px;
}

.valores h1{
    color: white;
    margin-bottom: 20px;
    font-size: 30px;
}

.valores .box-valores{
    padding: 20px 30px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
    background: white;
    margin: 10px 0px;
    width: 1000px;
    border-radius: 5px;
}

.valores .box-valores h2{
    color: #078dd5;
}

.valores .box-valores p{
    color: #565c63;
    margin-top: 10px;
}


footer{
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    height: 300px;
    background:  #dbeafe;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

footer h2{
    color: #02273a;
    font-size: 20px;
    margin-bottom: 20px;
}

footer img{
    height: 200px;
}

footer ul{
    margin: 0px 80px;
}

footer ul li{
    padding: 4px 0px;
}

footer ul li a{
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #02273a;
}

footer ul li a i{
    margin-right: 4px;
}

@media (max-width: 1366px){  
body{
    overflow-x: hidden;
}  
.capa{
    height: 400px;
}
.capa .example-img{
    width: 500px;
    height: 600px;
    border-top-left-radius: 60%; 
    border-bottom-left-radius: 60%; 
    top: -100px;
    right: -60px;
}
.capa .example-img img{
    width: 800%;
    height: 70%;
    object-fit: cover;
    object-position: center;
}
.capa .circle{
    width: 500px;
    height: 600px;
    border-top-left-radius: 60%; 
    border-bottom-left-radius: 60%; 
    top: -100px;
    right: -25px;
}
.capa .circle2{
    width: 500px;
    height: 600px;
    border-top-left-radius: 60%; 
    border-bottom-left-radius: 60%;  
    top: -100px;
    right: 20px;
}
.capa .circle3{
    width: 500px;
    height: 600px;
    border-top-left-radius: 60%; 
    border-bottom-left-radius: 60%; 
    top: -100px;
    right: 85px;
}
.capa .text{
    top: 140px;
    left: 100px;
}
.capa .text h1{
    font-size: 35px;
    font-weight: 600;
}
.capa .text p{
    font-size: 17px;
    font-weight: 400;
}
}

@media (max-width: 992px){
    .capa .example-img{
        display: none;
    }
    .capa .example-img img{
        display: none;
    }
    .capa .circle{
        display: none;
    }
    .capa .circle2{
        display: none;
    }
    .capa .circle3{
        display: none;
    }
    .content{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .content .colunas{
        margin-bottom: 40px;
    }
    .texto-content{
        width: 600px;
    }
    .valores .box-valores{
        width: 90%;
    }
    footer ul{
        margin: 0px 20px;
    }
}

@media (max-width: 576px){
    .capa .text{
        top: 120px;
        left: 30px;
    }
    .capa .text h1{
        font-size: 28px;
        font-weight: 600;
    }
    .capa .text p{
        margin-top: 10px;
        font-size: 17px;
        font-weight: 400;
    }
    .content{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .content .colunas{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .content .colunas .coluna{
        margin: 5px 0px;
    }

    .content .colunas .coluna .box{
        width: 320px;
    }
    .texto-content{
        margin: 0px;
        width: 320px;
    }
    .texto-content h1{
        font-size: 25px;
        text-align: center;
    }
    .texto-content p{
        font-size: 17px;
        text-align: center;
    }
    .valores .box-valores{
        width: 90%;
    }
    footer{
        height: fit-content;
        display: flex;
        align-items: start;
        flex-direction: column;
        padding: 0px 40px;
    }
    footer img{
        align-self: center;
    }
    footer ul{
        margin: 20px 0px;
    }
}

@media (max-width: 360px){
    .capa .text{
        top: 120px;
        left: 30px;
    }
    .capa .text h1{
        font-size: 28px;
        font-weight: 600;
    }
    .capa .text p{
        margin-top: 10px;
        font-size: 17px;
        font-weight: 400;
    }
    .content{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .content .colunas{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .content .colunas .coluna{
        margin: 5px 0px;
    }

    .content .colunas .coluna .box{
        width: 320px;
    }
    .texto-content{
        margin: 0px;
        width: 320px;
    }
    .texto-content h1{
        font-size: 25px;
        text-align: center;
    }
    .texto-content p{
        font-size: 17px;
        text-align: center;
    }
    .valores .box-valores{
        width: 90%;
    }
    footer{
        height: fit-content;
        display: flex;
        align-items: start;
        flex-direction: column;
        padding: 0px 40px;
    }
    footer img{
        align-self: center;
    }
    footer ul{
        margin: 20px 0px;
    }
}