2022-10-13 20:37:11 +00:00
|
|
|
*
|
|
|
|
{
|
2022-10-13 16:08:11 +00:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2022-10-13 20:37:11 +00:00
|
|
|
body
|
|
|
|
{
|
|
|
|
font-family: 'Inter', sans-serif;
|
|
|
|
color: #000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-header
|
|
|
|
{
|
2022-10-13 16:08:11 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 28px 0;
|
|
|
|
background: #000000;
|
|
|
|
}
|
|
|
|
|
2022-10-13 20:37:11 +00:00
|
|
|
.header-logo
|
|
|
|
{
|
2022-10-13 16:08:11 +00:00
|
|
|
display: block;
|
2022-10-13 16:45:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.main-banner,
|
2022-10-13 20:37:11 +00:00
|
|
|
.middle-banner
|
|
|
|
{
|
2022-10-13 16:45:50 +00:00
|
|
|
width: 100%;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2022-10-13 20:37:11 +00:00
|
|
|
.top-infocard
|
|
|
|
{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2022-10-13 21:22:39 +00:00
|
|
|
padding: 72px 0 0;
|
2022-10-13 20:37:11 +00:00
|
|
|
}
|
2022-10-13 16:45:50 +00:00
|
|
|
|
2022-10-13 20:37:11 +00:00
|
|
|
.top-infocard-text
|
|
|
|
{
|
|
|
|
max-width: 766px;
|
|
|
|
}
|
2022-10-13 16:45:50 +00:00
|
|
|
|
2022-10-13 20:37:11 +00:00
|
|
|
.top-infocard-subtitle
|
|
|
|
{
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 32px;
|
|
|
|
line-height: 39px;
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
2022-10-13 16:45:50 +00:00
|
|
|
|
2022-10-13 20:37:11 +00:00
|
|
|
.top-infocard-title
|
|
|
|
{
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
margin-bottom: 28px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
line-height: 58px;
|
|
|
|
font-size: 48px;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
2022-10-13 16:45:50 +00:00
|
|
|
|
2022-10-13 20:37:11 +00:00
|
|
|
.top-infocard-description
|
|
|
|
{
|
2022-10-13 21:22:39 +00:00
|
|
|
/*text-align: center; (ficaria mais bonito)*/
|
2022-10-13 20:37:11 +00:00
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
margin-bottom: 72px;
|
|
|
|
}
|
2022-10-13 16:45:50 +00:00
|
|
|
|
2022-10-13 20:37:11 +00:00
|
|
|
.top-infocard-image
|
|
|
|
{
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
width: 315px;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
2022-10-13 16:45:50 +00:00
|
|
|
|
2022-10-13 21:22:39 +00:00
|
|
|
.top-cards{
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(3, max-content);
|
|
|
|
gap: 20px;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 176px 0 80px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-card{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
padding: 26px 26px 34px;
|
|
|
|
background: #FFFFFF;
|
|
|
|
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.23);
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-card-image{
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 26px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-card-description{
|
|
|
|
max-width: 300px;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.bottom-cards{
|
|
|
|
margin-top: 140px;
|
|
|
|
background: linear-gradient(180deg, #00C8FF 0%, #15ACD6 100%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.bottom-cards-wrapper{
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(2, max-content);
|
|
|
|
gap: 20px;
|
|
|
|
justify-content: center;
|
|
|
|
position: relative;
|
|
|
|
top: -60px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bottom-card{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
padding: 36px 32px 66px;
|
|
|
|
background: #FFFFFF;
|
|
|
|
box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
|
|
|
|
}
|
|
|
|
|
|
|
|
.bottom-card-image{
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 14px;
|
|
|
|
}
|
2022-10-13 16:45:50 +00:00
|
|
|
|
2022-10-13 21:22:39 +00:00
|
|
|
.bottom-card-description{
|
|
|
|
max-width: 368px;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
}
|
2022-10-13 16:45:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-10-13 20:37:11 +00:00
|
|
|
@media screen and (max-width: 414px)
|
|
|
|
{
|
2022-10-13 16:45:50 +00:00
|
|
|
.main-banner-desktop,
|
2022-10-13 20:37:11 +00:00
|
|
|
.middle-banner-desktop
|
|
|
|
{
|
2022-10-13 16:45:50 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-13 20:37:11 +00:00
|
|
|
@media screen and (min-width: 415px)
|
|
|
|
{
|
2022-10-13 16:45:50 +00:00
|
|
|
.main-banner-mobile,
|
2022-10-13 20:37:11 +00:00
|
|
|
.middle-banner-mobile
|
|
|
|
{
|
2022-10-13 16:45:50 +00:00
|
|
|
display: none;
|
|
|
|
}
|
2022-10-13 20:37:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 768px)
|
|
|
|
{
|
|
|
|
.top-infocard
|
|
|
|
{
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-text
|
|
|
|
{
|
|
|
|
width: 357px;
|
|
|
|
padding: 72px 28px 65px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-subtitle
|
|
|
|
{
|
|
|
|
font-size: 20px;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-title
|
|
|
|
{
|
|
|
|
font-size: 28px;
|
|
|
|
line-height: 34px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-description
|
|
|
|
{
|
|
|
|
margin: 0 0px 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-infocard-image
|
|
|
|
{
|
|
|
|
width: 100%;
|
|
|
|
max-width: 240px;
|
|
|
|
}
|
|
|
|
}
|
2022-10-13 21:22:39 +00:00
|
|
|
|
|
|
|
@media screen and (max-width: 768px){
|
|
|
|
.top-cards{
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
padding: 90px 26px 80px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bottom-cards{
|
|
|
|
margin-top: 114px;
|
|
|
|
padding: 0 26px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bottom-cards-wrapper{
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
gap: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bottom-card-description{
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-footer{
|
|
|
|
padding-bottom: 26px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer-text{
|
|
|
|
max-width: 280px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 769px) and (max-width: 1200px){
|
|
|
|
.top-cards
|
|
|
|
{
|
|
|
|
grid-template-columns: repeat(2, max-content);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 769px) and (max-width: 992px){
|
|
|
|
.bottom-card-description
|
|
|
|
{
|
|
|
|
max-width: 280px;
|
|
|
|
}
|
|
|
|
}
|