*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(to right,#FFEEA9,#ffb056 );
    padding: 20px;
}

/* CONTAINER PRINCIPAL */
.tudo{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    background-color: #fff5e2;
    border: 2px solid #7B4019;
    border-radius: 12px;
    box-shadow: -10px 10px 40px #b88556;
    padding: 20px;
    gap: 40px;
}

/* HEADER */
header{
    display: flex;
    justify-content: center;
    width: 100%;
}

.header__item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo__titulo__e__titulo{
    display: flex;
    align-items: center;
    margin-top: 10PX;
}

.icone__header{
    width: 70px;
}

.titulo{
    margin-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);
}

/* MAIN */
main{
    display: flex;
    justify-content: center;
    width: 100%;
}

/* HERO */
.quadradao__da__main{
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 600px;
    background-image: url("../images/Mulher\ com\ guarda-chuva\ laranja\ no\ outono.png");
    background-size: cover;
    background-position: center;
    border: 2px solid #7B4019;
    padding: 20px;
}

/* CARD DE TEXTO */
.itens__main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    background: linear-gradient(to right,#ffac8b,#ffa743 );
    padding: 20px;
    border: 1px solid #fff5e2;
    box-shadow: 10px 10px 20px #7B4019;
    backdrop-filter: blur(5px);
}

/* TEXTO */
.titulo_sub{
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #7B4019;
    font-size: 16px;
}

.paragrafo{
    font-size: 16px;
    color: #7B4019;
    text-align: justify;
}

/* BOTÕES */
.botoes__juntos{
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.botoes{
    font-size: 16px;
    padding: 10px 15px;
    color: #7B4019;
    border: 1px solid #7B4019;
    border-radius: 5px;
    background: transparent;
}

.botoes:hover{
    background-color: #fff5e2;
    transform: scale(1.05);
    color: #b35e25;
    border-color: #b35e25;
}

/* FOOTER */
.footer__junto{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.p__footer,
.link__footer{
    font-size: 16px;
    color: #7B4019;
}

/* OUTROS */
strong{
    color: white;
    text-decoration: underline;
}

.strong__class{
    color: #FF7D29;
}

a{
    text-decoration: none;
    color: #7B4019;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}