@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&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&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
html, body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
    box-sizing: border-box;
    background-color: #111;
    color: white;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-size: 16px;
}
header {
    color: white;
    padding: 10px;
}
a {
    text-decoration: none;
    color: white;
}
nav {
    display: none;
}
.nav-logo > img {
    width: 100px;
}
main {
    background-image: url("../imagens/home.png");
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}
.banner {
    background-color: #000000a9;
    height: 1200px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 40px;   
}
.text-paragraph {
    background-color: #0000009a;
    padding: 10px 20px 40px 30px;
    border-radius: 20px;
    max-width: 600px;
    margin: 50px 0px;
}
.text-paragraph > h1 {
    font-size: 2.3em;
}
.text-paragraph > p {
    margin: 50px 0px;
}
.text-paragraph > a {
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.603);
    border-radius: 6px;
    color: #ffffff;
    font-weight: 600;
}
.text-paragraph > a:hover {
    background-color: rgb(255, 226, 97);
    color: #222;
    transition: 0.7s;
}
.about {
    margin: 30px 0px;
}
.about > h2 {
    font-size: 3em;
    text-align: center;
}
.box-pai-about {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 50px;
    align-items: center;
    justify-content: space-around;
    padding: 0px 30px;
}
.box-child-about {
    padding: 20px;
    background-color: #444;
    border-radius: 20px;
    max-width: 600px;
}
.box-child-about > h2 {
    font-size: 2em;
    margin-top: 20px;
}
.box-child-about > p {
    margin-top: 30px;
}
.box-img-about {
    max-width: 600px;
}
.box-img-about > img {
    width: 100%;
    height: 80%;
}
.gestao {
    padding: 0px 30px;
    border-top: 3px solid #444;
    border-bottom: 3px solid #444;
}
.gestao > h2 {
    font-size: 3em;
    text-align: center;
}
.box-pai-gestao {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 50px;
    align-items: center;
    justify-content: space-around;
}
.box-child-gestao {
    border-radius: 20px;
    background-color: #444;
    padding: 20px;
    max-width: 600px;
}
.box-child-gestao > h2 {
    font-size: 2em;
    margin-top: 20px;
}
.box-child-gestao > p {
    margin-top: 30px;
}
.box-img-gestao {
    max-width: 600px;
}
.box-img-gestao > img {
    width: 100%;
    height: 80%;
}
.destaque-pai {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: center;
    padding: 0px 30px;
    margin: 0 auto;
}
.destaque {
    border-bottom: 3px solid #444;
    padding: 40px 0px;
}
.destaque > h2 {
    font-size: 3em;
    text-align: center;
}
.destaque-box {
    background-color: #444;
    padding: 10px 30px;
    border-radius: 20px;
    flex-basis: 200px;
    flex-grow: 1;
    flex-shrink: 0;
}
.destaque-box > img {
    display: block;
    margin: 0 auto;
    width: 100px;
}
footer {
    background-color: #111;
    color: white;
    margin-top: 40px;
}
.footer-pai {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-pai > .footer-child {
    padding: 20px;
    flex-basis: 300px;
    display: flex;
    flex-direction: column;
}
.footer-child > a {
    color: rgba(255, 255, 255, 0.76);
    text-decoration: none;
    margin: 5px 0px;
}
.footer-child > a:hover {
    color: rgb(255, 226, 97);
    transition: 0.5s;
    margin-left: 10px;
    font-weight: 600;
}
.footer-bottom {
    text-align: center;
    padding: 10px;
    border-top: 2px solid #444;
    font-size: 0.9em;
}
.footer-bottom > p > a {
    color: rgb(255, 226, 97);
    text-decoration: none;
    font-weight: 600;
}