body {
    font-family: 'Yanone Kaffeesatz', sans-serif;
}

/* Tamanhos de fontes */

h1, .h1 {
    font-size: 1.3rem;
}

h2 {
    font-size: 1.2rem;
}

h3 {
    font-size: 1.3rem;
}

/* Cores gerais de textos e backgrounds */

.bg-whatsapp-green {
    background-color: #4cca5a;
}

.bg-twitter-blue {
    background-color: #1da1f2;
}

.bg-facebook-blue {
    background-color: #4267b2;
}

.text-yellow {
    color: #fd9b00;
}

.text-blue {
    color: #008ed0;
}

.text-orange {
    color: #ffad2c;
}
.bg-orange {
    background-color: #fd9b00;
}

.bg-blue {
    background-color: #008ed0;
}
/* Botões */

.btn-default {
    background-color: #fb8100;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
}

.btn-default:hover {
    background-color: #008ed0;
    color: white;
    transition: 0.3s;
}

.btn-radio {
    font-size: 1rem !important;
    background-color: white;
    color: #555;
    border: 1px solid #fb8100;
    font-size: 1rem !important;
    margin-top: -1.5rem;
}

.btn-radio-2 {
    background-color: #fb8100;
    color: #fff;
    margin-top: -1.5rem;
    font-size: 1.2rem !important;
}

.btn-naodoar {
    font-size: 1rem !important;
    background-color: white;
    color: #555;
    border: 1px solid #fb8100;
    margin-top: -2rem;
}

.btn-radio:hover, input[type=radio]:checked ~ .btn-radio {
    background-color: #fb8100;
    color: white;
}

/* Banner e conteúdos */

#banner {
    background-color: #008ed0;
}

.border-bottom-10{
    border-radius: 0 0 10px 10px;
}

.splash {
    width: fit-content;
    background-color: #fb8100;
    color: #fff;
}
.box-banner{
    max-width: 500px;
}
/* Formulário */

    /* Mostra somente um step por vez */

    .form {
        display: none;
    }

    #step_1 {
        display: block
    }

    /* * -- */

.js-loading-msg {
    color: #000;
}

.form-body {
    min-height: 28rem;
    border-radius: 35px;
}

.form-title {
    font-size: 1.7rem;
}

label {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.custom-checkbox .custom-control-label  {
    font-size: 1rem!important;
}

::-webkit-input-placeholder {
    font-size: 1.15rem;
}
  :-ms-input-placeholder {
    font-size: 1.15rem;
}
::placeholder {
    font-size: 1.15rem;
}

/* Estilizar mensagem de erro do formulário */

.invalid-tooltip {
    position: absolute;
    display: inline-block;
    top: 93%;
    border-bottom: 1px dotted #ccc;
    color: white;
    background-color: #d02626;
}

.invalid-tooltip::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 10%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #d02626 transparent;
}

/* Modal do formulário */

.js-modal-bg-default,
.js-modal-bg-af {
    background: hsla(0, 0%, 0%, 0.9);
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.js-form-modal {
    margin: auto 15px;
    position: absolute;
    z-index: 1001;
    top: 9%;
    bottom: 3%;
    right: 0;
    left: 0;
}

.js-modal-active {
    overflow: hidden;
}

.js-modal-active .js-form-modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.btn-close-modal {
    font-size: 45px;
    margin: 5px 14px;
    color: #fff !important;
    float: right;
    font-weight: 700;
    line-height: 1;
    opacity: .5;
    cursor: pointer;
}

/* Animação do modal do formulário */

.js-scale-up-right {
    -webkit-animation: scale-up-right 0.5s cubic-bezier(0.550, 0.055, 0.675, 0.190) both;
    animation: scale-up-right 0.5s cubic-bezier(0.550, 0.055, 0.675, 0.190) both;
}

@-webkit-keyframes scale-up-right {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        -webkit-transform-origin: 100% 50%;
        transform-origin: 100% 50%;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: 100% 50%;
        transform-origin: 100% 50%;
    }
}

@keyframes scale-up-right {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        -webkit-transform-origin: 100% 50%;
        transform-origin: 100% 50%;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: 100% 50%;
        transform-origin: 100% 50%;
    }
}

/* Media queries */
@media screen and (max-width: 310px){
    .btn-radio {
        font-size: 0.85rem !important;
    }
    .btn-naodoar{
        font-size: 0.8rem!important;
    }
}

@media screen and (min-width:768px) {

    .splash {
    background-color: #fff;
    color: #fd9b00;
    }

}

@media screen and (min-width:992px) {
    .js-form-modal {
        width: 40%;
        top: 5%;
        bottom: 5%;
        margin: auto;
    }
    #banner {
        background-image: url(../img/background.jpg);
        background-size: cover;
        background-position: right center;
        background-repeat: no-repeat;
    }

    .form-title {
        font-size: 1.8rem;
    }

    h1, .h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.65rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}
@media screen and (min-width: 1350px){
    .btn-radio {
        font-size: 1.2rem !important;
    }
}
