html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

body {
    background-color: rgb(22, 168, 163);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
}

header.masthead, footer {
    width: 100%;
    flex-shrink: 0;
    background-color: #fff;
    margin: 0;
}

main {
    flex: 1;
    /* Ocupa o espaço restante entre header e footer */
    width: 100%;
    display: flex;
    justify-content: center;
    /* Centraliza verticalmente o conteúdo dentro de main */
    align-items: center;
    /* Centraliza horizontalmente */
    flex-direction: column;
}

body {
    background-color: rgb(22, 168, 163);
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 400;
    font-style: normal;
}

footer {
    padding: 0;
    background: #2b2f34;
}

footer .copyright {
    font-size: 14px;
    padding: 20px;
    text-align: center;
    margin: 0;
}

.text-muted {
    color: #fff!important;
}

header.masthead .overlay {
    background-color: #fff;
}

header.masthead .site-heading {
    padding: 10px 0;
}

.texto {
    font-size: 25px;
    color: #fff;
    text-align: center;
}

.texto2 {
    font-size: 18px;
    color: #fff;
    text-align: center;
}

.sub-texto-ini {
    font-size: 17px;
    color: #fff;
}

.sub-texto {
    font-size: 20px;
    color: #fff;
}

.form-control {
    height: 50px;
    font-size: 18px;
    color: rgba(0, 0, 0, 1);
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 5px;
}

.rodape {
    bottom: 0px;
}

.menuRange {
    padding-left: 30px;
    color: #fff;
}

.img-escala img {
    width: 70%;
}

.corpo-resposta {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
}

.corpo-resposta p {
    font-style: normal;
    font-size: 20px;
    color: #000;
    text-align: center;
}

.tabEmpresa {
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    color: #f2a900;
}

@media screen and (max-width: 700px) {
    .img-escala img {
        width: 100%;
    }

    .site-heading img{
        width: 200px;
    }

    label[for="receberConteudo"] {
        display: none;
    }
}

.sub-texto-ini {
    text-align: justify;
}

@keyframes pulsate {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.pulsating {
    animation: pulsate 1s ease-in-out infinite;
}

label.error {
    font-size: 16px;
    color: #fff;
}