2022-10-11 19:55:47 +00:00
|
|
|
* {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
font-family: 'Inter', sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* variaveis de cores */
|
|
|
|
|
|
|
|
:root {
|
|
|
|
--black: #000000;
|
|
|
|
--white: #FFFFFF;
|
|
|
|
--grey-body: #E5E5E5;
|
|
|
|
--grey: #E0E0E0;
|
|
|
|
--grey-footer: #BDBDBD;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* HEADER DA PAGINA */
|
|
|
|
|
|
|
|
header {
|
|
|
|
height: 100px;
|
2022-10-11 20:43:34 +00:00
|
|
|
width: 100%;
|
2022-10-11 19:55:47 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2022-10-11 20:43:34 +00:00
|
|
|
background-color: var(--black);
|
2022-10-11 19:55:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.header-logo {
|
|
|
|
display: block;
|
2022-10-11 20:43:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main {
|
2022-10-12 00:55:45 +00:00
|
|
|
background-color: var(--white);
|
2022-10-11 20:43:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* BANNER DESKTOP */
|
|
|
|
|
|
|
|
.banner-img {
|
|
|
|
width: 100%;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.banner-img-mobile {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2022-10-11 23:48:52 +00:00
|
|
|
|
|
|
|
/* AREA ABAIXO DO BANNER */
|
|
|
|
|
|
|
|
.container-midle {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container-midle-flex {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
padding-top: 74px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container-midle-title {
|
|
|
|
width: 22%;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 48px;
|
|
|
|
line-height: 58px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container-midle-subtitle {
|
|
|
|
width: 11.75%;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 32px;
|
2022-10-12 00:55:45 +00:00
|
|
|
line-height: 40px;
|
2022-10-11 23:48:52 +00:00
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container-midle-paragraph {
|
|
|
|
width: 40%;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
2022-10-12 00:55:45 +00:00
|
|
|
margin: 28px 0 74px;
|
2022-10-11 23:48:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* .container-midle-banner {
|
|
|
|
max-width: 315px;
|
|
|
|
} */
|
|
|
|
|
|
|
|
.container-midle-img {
|
2022-10-12 00:55:45 +00:00
|
|
|
|
2022-10-11 23:48:52 +00:00
|
|
|
width: 16%;
|
|
|
|
height: 16%;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2022-10-11 20:43:34 +00:00
|
|
|
@media (max-width:1024px) {
|
|
|
|
/* BANNER MOBILE */
|
|
|
|
.banner-img-desktop {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.banner-img-mobile {
|
|
|
|
display: block;
|
|
|
|
}
|
2022-10-12 00:55:45 +00:00
|
|
|
|
|
|
|
main{ background-color: var(--grey-footer);}
|
|
|
|
/* AREA ABAIXO DO BANNER */
|
|
|
|
|
|
|
|
.container-midle {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container-midle-flex {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container-midle-title {
|
|
|
|
width: 56.76%;
|
|
|
|
font-size: 28px;
|
|
|
|
line-height: 34px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container-midle-subtitle {
|
|
|
|
width: 33.33%;
|
|
|
|
font-size: 20px;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container-midle-paragraph {
|
|
|
|
width: 86%;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
margin: 15px 0 74px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2022-10-11 19:55:47 +00:00
|
|
|
}
|