*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: Arial, Helvetica, sans-serif;
}
body{
    height: 100vh;
    width: 100%;
}
header{
    background-color: #1B2336;
    padding: 20px 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo img{
    height: 70px;
    width: auto;

}
li{
    display: inline-block;
}
li a{
    color: white;
    font-size: 18px;
    font-weight: 440px;
    margin-right: 25px;
    text-decoration: none;
}
li a:hover{
    color: #0898f9;
    transform: scale(5);
}
button{
    width: auto;
    background-color: #0898f9;
    color: white;
    font-size: 16px;
    padding: 10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    white-space: nowrap;       
}
button:hover{
    background-color: #F2F2F2;
    color:#1B2336;
    transform: scale(1.05);
}

main{
    background-color: white;
}
.banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 4rem;
    padding-left: 10rem;
    padding-right: 10rem;
}
.banner-texto {
    flex: 1;
    max-width: 50%;
}
.banner-texto h1 {
    font-size: 48px;
    color: #0D1C3F;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}
.banner-texto p {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 30px;
} 
.btn-primario, .btn-secundario {
    width: auto;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    margin-right: 10px;
    cursor: pointer;
}
.btn-primario {
    background-color: #1B2336;
    color: white;
}
.btn-secundario {
    background-color: #F2F2F2;
    color: #1B2336;
}

.banner-imagens {
    display: grid;
    grid-template-columns: repeat(2, auto);
    column-gap: 8px;
    row-gap: 8px;
    justify-content: center;
}

.banner-imagens img {
    width: 15vw;
    height: 15vw;
    border-radius: 12px;
    object-fit: cover;
    display: block;
    margin: 0;
    align-items: center;
}

.footer{
    background-color:#1B2336;
    color: white;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
}  