*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    transition: 0.2s ease;
}

body{
    display: flex;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(to right,#FFEEA9,#ffb056 );
    padding: 20px;
}

/* CONTAINER PRINCIPAL */
.tudo{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    max-height: 1150px;
    background-color: #fff5e2;
    border: 2px solid #7B4019;
    border-radius: 12px;
    box-shadow: -10px 10px 40px #b88556;
    padding: 15px;
}

/* HEADER */
header{
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 20px 0;
}

.header__item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo__titulo__e__titulo{
    display: flex;
    align-items: center;
}

.icone__header{
    width: 70px;
}

.titulo{
    padding-left: 10px;
    color: #7B4019;
    font-size: 24px;
}

.header__services{
    display: flex;
    gap: 35px;
}

.links{
    font-size: 25px;
    color: #7B4019;
    text-decoration: underline;
}

.links:hover{
    color:#FF7D29;
    transform: scale(1.05);
}

/* CONTEÚDO */
main{
    display: flex;
    justify-content: center;
    width: 100%;
}

.conteudo{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 20px;
    border: 2px solid #7B4019;
    background-image:url("../images/fall.jpg");
    background-size: cover;
    padding: 20px;
}

h1{
    text-decoration: underline;
    color: #7B4019;
    font-size: 32px;
}

h2{
    font-size: 18px;
}

p{
    margin-top: 5%;
    font-size: 18px;
    color: #633212;
}

/* ABOUT */
.Itens_img_p{
    display: flex;
    gap: 60px;
    width: 100%;
    align-items: center;
    margin-left: 10%;
}

.Imagem_do_about{
    width: 35%;
    border: 1px solid #7B4019;
    height: 90%;
}

.paragrafo{
    width: 50%;
    height: 90%;
    padding: 15px;
    text-align: justify;
    background: linear-gradient(to right,#ffac8b,#ffa743 );
    border: 1px solid white;
    box-shadow: 10px 10px 25px #b88556;
    align-items: center;
    justify-content: center;
}

/* BANNER */
.img_banner{
    width: 90%;
    height: 80px;
    background-image: url("../images/fundo.png");
    background-size: cover;
    border: 1px solid #7B4019;
}

/* CAIXAS */
.caixas{
    display: flex;
    gap: 20px;
    width: 100%;
}

.quadrado{
    flex: 1;
    height: 120px;
    border: 1px solid #ffffff;
    box-shadow: 10px 10px 25px #b88556;
}

.quadrado:hover{
    transform: scale(1.05);
}

/* FOOTER */
.footer__junto{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    align-items: center;
}

.p__footer,
.link__footer{
    font-size: 16px;
    color: #7B4019;
}
strong{
    text-decoration: underline;
    color: #FF7D29;
}
