2022-10-08 19:02:41 +00:00
|
|
|
*{
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2022-10-08 19:40:53 +00:00
|
|
|
|
2022-10-08 21:15:32 +00:00
|
|
|
body{
|
|
|
|
font-family: 'Inter', sans-serif;
|
|
|
|
}
|
|
|
|
|
2022-10-08 19:02:41 +00:00
|
|
|
.page-header{
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
width: 100%;
|
|
|
|
padding: 28px 0;
|
|
|
|
background-color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-logo{
|
|
|
|
display: block;
|
2022-10-08 19:40:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.Banner-principal{
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2022-10-08 21:15:32 +00:00
|
|
|
.Banner-principal-mobile{
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard{
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 80px 0 95px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-text{
|
|
|
|
max-width: 39%;
|
|
|
|
margin-right: 7%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-subtitulo{
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 32px;
|
|
|
|
text-transform: uppercase;;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-titulo{
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 48px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
margin-bottom: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-descriçao{
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
|
2022-10-08 19:40:53 +00:00
|
|
|
@media screen and (max-width: 414px){
|
|
|
|
.Banner-principal-desktop{
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.Banner-principal-mobile{
|
2022-10-08 21:15:32 +00:00
|
|
|
display: unset;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 992px){
|
|
|
|
.top-infocard{
|
|
|
|
flex-direction: column;
|
|
|
|
padding: 54px 30px 158px;
|
|
|
|
}
|
|
|
|
.top-infocard-text{
|
|
|
|
margin: 54px 30px 68px;
|
|
|
|
max-width: unset;
|
|
|
|
}
|
|
|
|
.top-infocard-subtitulo{
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
.top-infocard-titulo{
|
|
|
|
font-size: 28px;
|
|
|
|
}
|
|
|
|
.top-infocard-imagem{
|
|
|
|
width: 100%;
|
|
|
|
max-width: 240px;
|
2022-10-08 19:40:53 +00:00
|
|
|
}
|
2022-10-08 21:15:32 +00:00
|
|
|
|
2022-10-08 19:40:53 +00:00
|
|
|
}
|
|
|
|
|