2022-10-10 22:54:03 +00:00
|
|
|
*{
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2022-10-10 23:13:56 +00:00
|
|
|
/* header com logo */
|
|
|
|
|
2022-10-10 22:54:03 +00:00
|
|
|
header{
|
|
|
|
background-color: black;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
height: 101px;
|
2022-10-10 23:13:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Banner principal */
|
|
|
|
|
|
|
|
.top-banner-desktop{
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-banner-mobile{
|
|
|
|
display: none;
|
|
|
|
max-height: 598px;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Banner pincipal mobile */
|
|
|
|
|
|
|
|
@media screen and (max-width:768px) {
|
|
|
|
.top-banner-desktop{
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-banner-mobile{
|
|
|
|
display: unset;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2022-10-10 22:54:03 +00:00
|
|
|
}
|