*{
    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: 1030px;
    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);
}
/* FOOTER */
.footer__junto{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
    align-items: center;
}

.p__footer,
.link__footer{
    font-size: 16px;
    color: #7B4019;
}
strong{
    text-decoration: underline;
    color: #FF7D29;
}
/*Guarda chuvas*/
.tudo__compras{
    display: flex;
    height: 60%;
    gap: 15px;
}
.guarda__chuvas{
    height: 180px;
    width: 170px;
    border: 1px solid #7B4019;
}
.azul{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border: 1px solid #7B4019;
    padding: 10px;
    background-color: rgb(255, 245, 236);
    border-radius: 15px;
    box-shadow: 10px 10px 15px #b88556;
}
.azul:hover{
    transform: scale(1.05);
    background: linear-gradient(to right,#ffac8b,#ffa743 );
}
.rosa{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border: 1px solid #7B4019;
    padding: 10px;
    background-color: rgb(255, 245, 236);
    border-radius: 15px;
    box-shadow: 10px 10px 15px #b88556;
}
.rosa:hover{
    transform: scale(1.05);
    background: linear-gradient(to right,#ffac8b,#ffa743 );
}
.marrom{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border: 1px solid #7B4019;
    padding: 10px;
    background-color: rgb(255, 245, 236);
    border-radius: 15px;
    box-shadow: 10px 10px 15px #b88556;
}
.marrom:hover{
    transform: scale(1.05);
    background: linear-gradient(to right,#ffac8b,#ffa743 );
}
.preto{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border: 1px solid #7B4019;
    padding: 10px;
    background-color: rgb(255, 245, 236);
    border-radius: 15px;
    box-shadow: 10px 10px 15px #b88556;
}
.preto:hover{
    transform: scale(1.05);
    background: linear-gradient(to right,#ffac8b,#ffa743 );
}
.p__compras{
    font-size: 18px;
    text-align: justify;
    color: #7B4019;
}
/*Main*/
.tudo__main{
    display: flex;
    background-image: url("../images/fall.jpg");
    background-size: 150%;
    height: 100%;
    min-height: 800px;
    flex-direction: column;
    padding: 15px;
    gap: 60px;
    border: 2px solid #7B4019;
    justify-content: center;
}
.hud__main{
    display: flex;
    text-align: center;
    flex-direction: column;
    gap: 10px;
}
h2{
    color: #7B4019;
}
h1{
    color: #7B4019;
    text-decoration:underline;
}
button{
    width: 120px;
    margin-right: 50px;
    padding: 10px;
    border: 1px solid #7B4019;
    border-radius: 5px;
    background: none;
    cursor: pointer;
    height: 60px;
}
button:hover{
    background-color: #fff5e2;
    transform: scale(1.05);
    color: #b35e25;
    border-color: #b35e25;
}
.botao{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
}
a{
    text-decoration: none;
    font-size: 20px;
    color:#7B4019;
}
a:hover{
    color: #FF7D29;
}