body {
    font-family: 'Baloo 2', cursive;
    color: #6b6e6f;
}

/* Tamanhos de fontes */

h1 {
    font-size: 1.5rem;
}

h2 {
    font-size: 1.3rem;
}

.font-semibold {
    font-weight: 600;
}

#content-1 .btn-default {
    font-size: 0.9rem;
}

/* Cores gerais de textos e backgrounds */

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

.text-blue {
    color: #063b58;
}

/* Botões */

.btn-default {
    background-color: #f29f05;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}

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


/* Banner e conteúdos */

#banner {
    background-image: url(../img/background.webp);
    background-size: cover;
    background-position: 10%;
    background-repeat: no-repeat;
}

figure {
    margin:0;
}

.card {
    border: 1px solid rgba(0,0,0,0.2);
}

#content-1 .card {
    border-radius: 30px;
}

#content-2 .card {
    border-radius: 10px;
}

.card-img-top {
    border-radius: 30px 30px 0 0;
}

.blurry-text {
    text-shadow: 0 0 8px #063b58;
    color: transparent;
}

/* Arrow do Collapse */
#content-2 .btn-link {
    background-image: url(../img/arrow-up.webp);
    background-repeat: no-repeat;
    background-position: 97% center;
    background-size: 14px;
    font-size: 1.1rem;
    text-decoration: none;
    word-break: break-all;
}

#content-2 .collapsed {
    background-image: url(../img/arrow-down.webp) !important;
}
/* Arrow do Collapse */


/* Slick */

/* mudar cor dos 'pontos' */
.slick-dots li.slick-active button:before,
.slick-dots li button:before {
    color: #f29f05 !important;
}

.slick-next {
    right: -7px !important;
}

.slick-prev {
    left: -15px !important;
}

/* Formulário */

    /* Mostra somente um step por vez */

    .form {
        display: none;
    }

    #step_1 {
        display: block
    }

    /* * -- */

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

.form-body {
    background-color: #003647;
    border-radius: 40px;
}

label {
    margin-bottom: 0.1rem;
    color: #fff;
}

.custom-control-label {
    color: #fff !important;
}

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

.errors {
    background-color: #d02626;
    color: #fff;
    margin-bottom: 5px;
}

.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 Step Sucesso */
.form svg {
    width: 60px;
    display: block;
    margin: auto;
}

.path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
}

.circle {
    -webkit-animation: dash .9s ease-in-out;
    animation: dash 0.9s ease-in-out;
}

.check {
    stroke-dashoffset: -100;
    -webkit-animation: dash-check .9s .35s ease-in-out forwards;
    animation: dash-check 0.9s .35s ease-in-out forwards;
    stroke-linecap: round;
}

@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes dash-check {
    0% {
        stroke-dashoffset: -100;
    }
    100% {
        stroke-dashoffset: 900;
    }
}

@keyframes dash-check {
    0% {
        stroke-dashoffset: -100;
    }
    100% {
        stroke-dashoffset: 900;
    }
}

/* FIM Animação Step Sucesso */

/* 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 (min-width:992px) {
    .js-form-modal {
        width: 40%;
        top: 5%;
        bottom: 5%;
        margin: auto;
    }

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

    h1 {
        font-size: 2.3rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .form-body {
        width: 450px;
        height: 450px;
        border-radius: 50%;
    }

    #banner {
        background-position: center;
    }

    #content-1 .btn-default {
        font-size: 1rem;
    }
}

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

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

    h1 {
        font-size: 2.3rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .form-body {
        width: 500px;
        height: 500px;
    }

}
