2022-10-09 21:58:46 +00:00
|
|
|
*{
|
|
|
|
margin: 0;
|
2022-10-11 01:40:36 +00:00
|
|
|
box-sizing: border-box;
|
2022-10-09 21:58:46 +00:00
|
|
|
font-family: 'Inter', sans-serif;
|
|
|
|
}
|
|
|
|
body{
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Cabecalho da pagina */
|
|
|
|
header nav{
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
height: 101px;
|
|
|
|
|
|
|
|
background-color: #000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
header nav .logo{
|
|
|
|
height: 43px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Corpo da pagina */
|
|
|
|
|
|
|
|
/* Banner principal da pagina */
|
|
|
|
main .banner-container .banner-desktop img{
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
main .banner-container .banner-mobile{
|
|
|
|
display: none;
|
2022-10-11 01:40:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Titulo e descricao do site */
|
|
|
|
main section.container-description{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
padding: 73px 0 178px;
|
|
|
|
}
|
|
|
|
|
|
|
|
main section.container-description .description-text{
|
|
|
|
width: 40%;
|
|
|
|
}
|
|
|
|
|
|
|
|
main section.container-description .description-text h2.description-title{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 32px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
main section.container-description .description-text h2.description-title span.description-subtitle{
|
|
|
|
font-size: 48px;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
main section.container-description .description-text p.description{
|
|
|
|
line-height: 24px;
|
|
|
|
font-weight: 400;
|
|
|
|
padding: 28px 0 73px;
|
2022-10-09 21:58:46 +00:00
|
|
|
}
|