:root {
    --fonte-xlarge: 26px;
    --fonte-large: 24px;
    --fonte-big: 20px;
    --fonte-medium: 16px;
    --fonte-small: 14px;

    --height-header: 130px;
    --height-footer: 130px;
}

@font-face {
    font-family: "Roboto-Regular";
    src: url("/home3/fonts/Roboto-Regular.ttf") format('woff2');
}

.notifyjs-bootstrap-error {
    font-family: 'Roboto-Regular';
}

* {
    box-sizing: border-box;
}

body {
    background-color: #00BF8F;
    margin-left: 0;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    overflow-y: scroll;
}


header {
    background: transparent url('/home3/imagens/Fundo_Primeira Rolagem.png') 0% 0% no-repeat padding-box;
    background-repeat: round;
    height: var(--height-header);
}

header .logo {
    background: transparent url('/home3/imagens/img/Logo.png') 0% 0% no-repeat padding-box;
    opacity: 1;
    margin-left: 70px;
    width: 448px;
    height: 124px;
}

.btn_login{
    position: absolute;
}

main {
    background-color: #f2fffc;
    padding: 30px 0;
    line-height: 1.5;
    font-family: 'Roboto-Regular';
}

main p {
    opacity: 1;
    text-align: justify;

    font-size: var(--fonte-medium);
    letter-spacing: 0px;
    color: #222933;
    margin-top: 10px;
}

main h1 {
    color: #00BF8F;
    font-size: var(--fonte-xlarge);
}
main h2 {
    color: #00BF8F;
    font-size: var(--fonte-large);
}
main h3 {
    color: #222933;
    font-size: var(--fonte-big);
}
main ul {
    color: #222933;
    font-size: var(--fonte-medium);
}
main span {
    color: #222933;
    font-size: var(--fonte-small);
}
main li {
    margin: 15px 0;
}

input {
    color: #707070;
}

main{
    min-height: calc(100vh - var(--height-header) - var(--height-footer));
    max-width: 1440px;
    width: calc(100vw - 140px);
    margin: auto;
    font-size: 0;
}

main .metade {
    width: 45%;
}

main .inteiro {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
}

main .margin-esquerda {
    margin-left: 5%;
}

main .margin-direita {
    margin-right: 5%;
}


footer {
    height: var(--height-footer);
    background-color: #222933;
}

footer .logo {
    display: inline-block;
    background: transparent url('/home3/imagens/Logotipo-Comdinheiro-branco.png') 0% 0% no-repeat padding-box;
    opacity: 1;
    margin-left: 70px;
    margin-top: 20px;
    width: 225px;
    height: 80px;
    float: left;
}

footer #contato {
    display: inline-flex;
    color: #ffffff;
    font-family: 'Roboto-Regular';
    font-weight: 400;
    font-size: var(--fonte-small);
    height: 40px;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 20px;
    margin-top: 50px;
    float: left;
}

footer #contato #texto-contato {
    font-weight: 800;
}

footer #redes {
    display: inline-block;
    color: #ffffff;
    font-family: 'Roboto-Regular';
    font-weight: 800;
    font-size: var(--fonte-small);
    margin-right: 80px;
    margin-top: 35px;
    float: right;
}

footer #icone-redes{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 15px;
    font-size: var(--fonte-medium);
    width: 137.5px;
}

footer #icone-redes i {
    color: #ffffff;
}

@media(max-width:1257px) {
    main .metade {
        width: 90%;
        margin-left: 5%;
        margin-right: 5%;
    }
    main .inteiro {
        width: 90%;
        margin-left: 5%;
        margin-right: 5%;
    }

    footer .logo {
        display: none;
    }
    footer #contato {
        margin-left: 70px;
    }
}

@media(max-width:940px) {

    :root {
        --fonte-xlarge: 18px;
        --fonte-large: 16px;
        --fonte-big: 14px;
        --fonte-medium: 12px;
        --fonte-small: 11px;
    }

    main p{

        line-height: 1.5;
    }
    main li {
        margin: 10px 0;
    }

}

@media(max-width:500px) {
    header, footer{
        display: none;
    }
    main {
       width: 100%;

    }
    footer #redes {
        display: none;
    }
}

.conteudo-aba.hidden{
    display:none;
}

.seletor-abas{
    white-space: nowrap;
    border-bottom: 1px solid gray;
    margin:0 2%;
    display: flex;
}
.seletor-abas input[type=radio]{
    display: none;
}
.seletor-abas label{
    border: 1px solid gray;
    border-left: none;
    padding: 8px;
    background-color: #f8f8f8;
    cursor: pointer;
    position: relative;
    top: 1px;
    font-size: 20px;
    flex: 1;
    text-align: center;
}
.seletor-abas label:first-of-type{
    border-top-left-radius: 5px;
    border-left: 1px solid gray;
}
.seletor-abas label:last-of-type{
    border-top-right-radius: 5px;
}
.seletor-abas input[type=radio]:checked + label{
    background-color: white;
    border-bottom: none;
    text-decoration: underline #00BF8F 3px;
    text-underline-offset: 5px;
}
.seletor-abas label .selected-amount-indicator{
    position: absolute;
    top: -7px;
    border: 1px solid #005EA0;
    padding: 0 2px;
    right: -2px;
    background-color: #005EA0;
    border-radius: 20px;
    font-size: 8px;
    color: #ffffff;
}
.conteudo-aba{
    display: block;
}
.conteudo-aba.hidden{
    display: none;
}

.abas{
    background-color: white;
    border: 1px solid gray;
    border-top: white solid 1px;
    margin: 0 2%;
    border-radius: 0 0 12px 12px;
}