2022-10-12 00:44:49 +00:00
|
|
|
*{
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2022-10-12 16:50:43 +00:00
|
|
|
body {
|
|
|
|
font-family: 'Inter', sans-serif;
|
|
|
|
}
|
2022-10-12 01:23:42 +00:00
|
|
|
|
2022-10-12 16:50:43 +00:00
|
|
|
/* Cabeçalho */
|
2022-10-12 00:44:49 +00:00
|
|
|
.header-logo {
|
|
|
|
width: 100%;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-header {
|
|
|
|
display: flex;
|
|
|
|
padding: 28px 0;
|
|
|
|
justify-content: center;
|
|
|
|
background: #000;
|
|
|
|
}
|
|
|
|
|
2022-10-12 16:50:43 +00:00
|
|
|
/* Banner principal */
|
2022-10-12 01:23:42 +00:00
|
|
|
.main-banner{
|
2022-10-12 00:44:49 +00:00
|
|
|
width: 100%;
|
2022-10-12 16:50:43 +00:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Primeiro infocard */
|
|
|
|
.top-infocard, .top-infocard-subtitle, .top-infocard-title, .top-infocard-description {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-text {
|
|
|
|
width: 40%;
|
|
|
|
max-width: 100%;
|
|
|
|
margin: 72px 0 72px;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-subtitle {
|
|
|
|
font-size: 32px;
|
|
|
|
line-height: 39px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-title {
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 48px;
|
|
|
|
line-height: 58px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
margin-bottom: 28px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-description {
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
/* or 150% */
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-figure {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-image {
|
|
|
|
width: 16%;
|
|
|
|
display: block;
|
|
|
|
|
2022-10-12 01:23:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 821px) {
|
|
|
|
.main-banner-mobile {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 820px) {
|
|
|
|
.main-banner-desktop {
|
|
|
|
display: none;
|
|
|
|
}
|
2022-10-12 00:44:49 +00:00
|
|
|
}
|