2022-10-13 19:01:20 +00:00
|
|
|
* {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
.body {
|
|
|
|
font-family: 'Inter', sans-serif;
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*Cabeçalho*/
|
|
|
|
.header {
|
|
|
|
display: grid;
|
|
|
|
background-color: black;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
height: 101px;
|
|
|
|
}
|
|
|
|
|
2022-10-13 19:35:55 +00:00
|
|
|
/*Banner Principal*/
|
|
|
|
|
|
|
|
.imagem-banner-principal {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.imagem-banner-principal-mobile {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2022-10-13 19:01:20 +00:00
|
|
|
|
|
|
|
@media (min-width: 2500px) {
|
2022-10-13 19:35:55 +00:00
|
|
|
.imagem-banner-principal-mobile {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2022-10-13 19:01:20 +00:00
|
|
|
|
2022-10-13 19:35:55 +00:00
|
|
|
@media (max-width: 1024px) {
|
|
|
|
.imagem-banner-principal {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.imagem-banner-principal-mobile {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 820px) {
|
|
|
|
}
|
2022-10-13 19:01:20 +00:00
|
|
|
|
2022-10-13 19:35:55 +00:00
|
|
|
@media (max-width: 320px) {
|
|
|
|
}
|