2022-10-10 14:16:28 +00:00
|
|
|
* {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2022-10-10 22:14:41 +00:00
|
|
|
body {
|
|
|
|
font-family: "Inter", sans-serif;
|
|
|
|
color: #000000;
|
|
|
|
}
|
|
|
|
|
2022-10-10 14:16:28 +00:00
|
|
|
.page-header {
|
|
|
|
display: flex;
|
|
|
|
padding: 28px 0;
|
|
|
|
justify-content: center;
|
|
|
|
background-color: #000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-logo {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-banner {
|
|
|
|
width: 100%;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2022-10-10 22:14:41 +00:00
|
|
|
.top-infocard {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
padding: 74px 0 180px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-inforcard-text {
|
2022-10-11 23:51:04 +00:00
|
|
|
max-width: 40%;
|
2022-10-10 22:14:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-subtitle {
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 32px;
|
|
|
|
line-height: 39px;
|
|
|
|
text-align: center;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-title {
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 48px;
|
|
|
|
line-height: 58px;
|
|
|
|
text-align: center;
|
|
|
|
text-transform: uppercase;
|
|
|
|
margin-bottom: 28px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-description {
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 150%;
|
|
|
|
margin-bottom: 74px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2022-10-10 23:56:28 +00:00
|
|
|
.top-cards {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(3, 1fr);
|
|
|
|
gap: 20px;
|
2022-10-11 23:51:04 +00:00
|
|
|
margin: 0 auto 80px;
|
|
|
|
width: 57%;
|
2022-10-10 23:56:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.top-card {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
background: #ffffff;
|
|
|
|
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.23);
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-card-image {
|
|
|
|
display: block;
|
2022-10-12 13:39:39 +00:00
|
|
|
margin-top: 35px;
|
2022-10-10 23:56:28 +00:00
|
|
|
}
|
|
|
|
.top-card-description {
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 16px;
|
2022-10-11 23:51:04 +00:00
|
|
|
line-height: 24px;
|
|
|
|
margin: 26px;
|
2022-10-10 23:56:28 +00:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2022-10-11 21:07:17 +00:00
|
|
|
.middle-banners {
|
2022-10-11 23:51:04 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2022-10-11 21:07:17 +00:00
|
|
|
background: #e0e0e0;
|
|
|
|
width: 100%;
|
2022-10-12 13:06:52 +00:00
|
|
|
margin-bottom: 192px;
|
2022-10-11 21:07:17 +00:00
|
|
|
}
|
2022-10-11 23:51:04 +00:00
|
|
|
|
|
|
|
.image-01 {
|
|
|
|
grid-area: image01;
|
|
|
|
}
|
|
|
|
.image-02 {
|
|
|
|
grid-area: image02;
|
|
|
|
}
|
|
|
|
.image-03 {
|
|
|
|
grid-area: image03;
|
|
|
|
}
|
|
|
|
|
2022-10-11 21:07:17 +00:00
|
|
|
.middle-banners-wrapper {
|
|
|
|
display: grid;
|
2022-10-11 23:51:04 +00:00
|
|
|
grid-template-areas: "image01 image02 image03";
|
|
|
|
width: 88%;
|
2022-10-11 21:07:17 +00:00
|
|
|
gap: 40px;
|
2022-10-12 13:06:52 +00:00
|
|
|
position: relative;
|
|
|
|
bottom: -62px;
|
2022-10-11 21:07:17 +00:00
|
|
|
}
|
2022-10-12 13:06:52 +00:00
|
|
|
.mb-imagens {
|
2022-10-11 23:51:04 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|
2022-10-12 14:57:27 +00:00
|
|
|
|
|
|
|
.bottom-cards {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(4, 1fr);
|
|
|
|
gap: 16px;
|
2022-10-12 19:16:13 +00:00
|
|
|
margin: 0 auto 0;
|
2022-10-12 14:57:27 +00:00
|
|
|
width: 92%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bottom-card {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
background: #ffffff;
|
|
|
|
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.23);
|
|
|
|
}
|
|
|
|
|
|
|
|
.bottom-card-image {
|
|
|
|
display: block;
|
|
|
|
margin-top: 35px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bottom-card-description {
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
margin: 15px 32px 65px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2022-10-12 19:16:13 +00:00
|
|
|
.bottom-infocard {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
padding: 108px 280px 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bottom-infocard-text {
|
|
|
|
margin-bottom: 50px;
|
|
|
|
max-width: 41%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bottom-infocard-subtitle {
|
|
|
|
font-weight: 600;
|
|
|
|
font-size: 32px;
|
|
|
|
line-height: 39px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.bottom-infocard-description {
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.bottom-banner-desktop {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2022-10-12 14:57:27 +00:00
|
|
|
@media screen and (max-width: 1024px) {
|
2022-10-10 14:16:28 +00:00
|
|
|
.main-banner-desktop {
|
|
|
|
display: none;
|
|
|
|
}
|
2022-10-12 19:16:13 +00:00
|
|
|
.bottom-banner-desktop {
|
|
|
|
display: none;
|
|
|
|
}
|
2022-10-10 22:14:41 +00:00
|
|
|
.top-infocard {
|
2022-10-12 14:57:27 +00:00
|
|
|
padding: 73px 32px 90px;
|
2022-10-12 13:39:39 +00:00
|
|
|
margin: 0 auto 0;
|
2022-10-10 22:14:41 +00:00
|
|
|
}
|
|
|
|
.top-inforcard-text {
|
2022-10-12 13:06:52 +00:00
|
|
|
margin-bottom: 65px;
|
|
|
|
max-width: 100%;
|
2022-10-10 22:14:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-subtitle {
|
|
|
|
font-size: 20px;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
.top-infocard-title {
|
|
|
|
font-size: 28px;
|
|
|
|
line-height: 34px;
|
2022-10-11 21:07:17 +00:00
|
|
|
margin-bottom: 14px;
|
2022-10-10 22:14:41 +00:00
|
|
|
}
|
|
|
|
.top-infocard-description {
|
|
|
|
line-height: 24px;
|
2022-10-12 14:57:27 +00:00
|
|
|
margin-bottom: 0;
|
2022-10-10 22:14:41 +00:00
|
|
|
}
|
2022-10-10 23:56:28 +00:00
|
|
|
|
|
|
|
.top-cards {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-10-12 13:06:52 +00:00
|
|
|
justify-content: center;
|
2022-10-10 23:56:28 +00:00
|
|
|
gap: 24px;
|
2022-10-12 13:39:39 +00:00
|
|
|
margin: 0 auto 80px;
|
|
|
|
width: 84%;
|
|
|
|
}
|
|
|
|
.middle-banners {
|
|
|
|
margin-bottom: 112px;
|
|
|
|
}
|
|
|
|
.middle-banners-wrapper {
|
|
|
|
grid-template-areas: "image02 image01 " "image03 image03";
|
|
|
|
bottom: -32px;
|
|
|
|
row-gap: 24px;
|
|
|
|
column-gap: 14px;
|
|
|
|
margin: 0 24px 0;
|
2022-10-10 23:56:28 +00:00
|
|
|
}
|
2022-10-12 14:57:27 +00:00
|
|
|
|
|
|
|
.bottom-cards {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
gap: 16px;
|
|
|
|
margin: 0 auto 98px;
|
|
|
|
width: 88%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bottom-card-description {
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
2022-10-12 19:16:13 +00:00
|
|
|
.bottom-infocard {
|
|
|
|
flex-direction: column-reverse;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.bottom-infocard-text {
|
|
|
|
margin-top: 50px;
|
|
|
|
max-width: 100%;
|
|
|
|
margin: 50px 32px 88px;
|
|
|
|
}
|
|
|
|
.bottom-infocard-subtitle {
|
|
|
|
font-size: 24px;
|
|
|
|
line-height: 29px;
|
|
|
|
margin-bottom: 9px;
|
|
|
|
}
|
2022-10-10 14:16:28 +00:00
|
|
|
}
|
|
|
|
@media screen and (min-width: 1024px) {
|
|
|
|
.main-banner-mobile {
|
|
|
|
display: none;
|
|
|
|
}
|
2022-10-12 19:16:13 +00:00
|
|
|
.bottom-banner-mobile {
|
|
|
|
display: none;
|
|
|
|
}
|
2022-10-10 14:16:28 +00:00
|
|
|
}
|