body{
    font-size: 16px;
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
}

.cor2{
    color: var(--cor2);
}
.espacamento{
    padding-top: 100px;
}

.topo-telas {
    background: linear-gradient(45deg, var(--cor1), var(--cor4));
    color: var(--branco);
    height: 200px;
    max-height: 200px;
    border-bottom-right-radius: 100px;
    border-bottom-left-radius: 100px;
}
@media (max-width: 992px) {
    .topo-telas {
        height: 100%;
        max-height: 100%;
        border-bottom-right-radius: 30px;
        border-bottom-left-radius: 30px;
    }
}

.topo-telas h1 {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 2;
    padding-top: 70px;
}

.titulo-secao{
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
}
.subtitulo-secao{
    text-align: center;
    font-size: 1.5rem;
}
.texto-subtitulo-secao{
    text-align: center;
    font-size: 1.2rem;
    padding-bottom: 50px;
}
.btn-padrao{
    background-color: var(--cor1);
    color: var(--cor3);
    height: 45px;
    padding: 10px;
}
.btn-padrao:hover{
    background-color: var(--cor2);
    color: var(--cor3);
}

.section {
    background-color: var(--cor3);
    color: var(--cor1); /* Azul escuro para o texto */
    padding: 50px;
    text-align: center;
}
.section h2 {
    font-size: 2.5rem;
}
.section p {
    font-size: 1.25rem;
}
.section .btn {
    background-color: var(--cor2); /* Azul escuro para o botão */
    color: var(--branco); /* Amarelo para o texto do botão */
    border: none;
}
.section .btn:hover {
    background-color: var(--cor4); /* Amarelo claro para o botão ao passar o mouse */
    color: var(--cor2); /* Azul escuro para o texto do botão ao passar o mouse */
}
.mb-60{
    margin-bottom: 60px;
}