:root {
    --azul-logo: #21409a;
    --azul-claro-logo: rgb(33, 64, 154, 0.1);
    --roxo-logo: #292663;
    --amarelo-logo: #ffd400;
    --laranja-logo: #faa61a;
    font-size: 1;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.line {
    border-bottom: 1px solid var(--roxo-logo);
    width: 20vw;
}

.titulo {
    font-size: 1.8rem;
}

.subtitulo {
    font-size: 1.5rem;
}

.intertitulo {
    font-size: 1.1rem;
}

#resultados {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

#resultados .icone {
    color: var(--azul-logo);
}

.banner {
    background-color: white;
    background-repeat: no-repeat;
    background-size: cover;
    height: 50vh;
    color: black;
}

.tituloLeft,
.tituloRight {
    background-color: rgb(255, 255, 255);
    backdrop-filter: blur(5px);
    width: 60%;
    text-align: center;
}

.tituloLeft {
    border-radius: 0 50px 0 0;
}

.tituloRight {
    border-radius: 50px 0 0 0;
}

#imagem-r,
#imagem-l {
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
}

#imagem-r {
    border-radius: 50px 0 0 50px;
}

#imagem-l {
    border-radius: 0 50px 50px 0;
}

body {
    height: 100vh;
    width: 100%;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    background-color: var(--laranja-logo);
}

@media only screen and (max-width: 576px) {

    .tituloLeft,
    .tituloRight {
        width: 90%;
    }
}