@font-face {
    font-family: "DidactGothic";
    src: url("../fonts/DidactGothic.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "DidactGothic-regular";
    src: url("../fonts/DidactGothic-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'DidactGothic-regular', sans-serif;
}

/* Tamanhos de fontes */

h1 {
    font-size: 1.5rem;
}

h2 {
    font-size: 1.3rem;
}

h3 {
    font-size: 1.1rem;
}

/* Cores gerais de textos e backgrounds */

.bg-dark-section {
    background-color: #2C2C2C;
}

.bg-dark-section {
    background-color: #2C2C2C;
}

.bg-yellow {
    background-color: #FDC62F;
}

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

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

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

.text-green-dark {
    color: #009A44;
}

.text-green-light {
    color: #A4CA62;
}

.text-yellow {
    color: #FDC62F;
}

.text-gray-dark {
    color: #2C2C2C;
}

.text-gray-light {
    color: #9EA2A1;
}

/* Botões */

.btn-default {
    background-color: #FDC62F;
    color: #2C2C2C;
    font-weight: bold;
    text-transform: uppercase;
}

.btn-default:hover {
    background-color: #FDC62F;
    color: #2C2C2C;
    transition: 0.3s;
}

.btn-gray {
    background-color: #2C2C2C;
    color: #FFFFFF;
    font-weight: normal;
    text-transform: uppercase;
}

.btn-gray:hover {
    background-color: #2C2C2C;
    color: #FDC62F;
    transition: 0.3s;
}

.btn-group-lg>.btn,
.btn-lg {
    border-radius: 0.8rem;
}

.btn {
    border-radius: 0.6rem;
}

.btn-radio {
    background-color: white;
    color: #555;
    border: 1px solid #ced4da;
    margin-top: -1.5rem;
}

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


/* Banner e conteúdos */


.section-bg-paper {
    background-image: url(../img/bg_sections.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.nav-header {
    background: rgb(6 6 6 / 41%);
}

.box-limit {
    max-width: 100%;
}

.line-box {
    line-height: 0.2em;
}

.border-rounded {
    border-radius: 45px;
}

figure {
    margin: 0;
}

.card {
    background: linear-gradient(0deg, rgb(0 70 16 / 49%) 20%, #2fc72721 74%) !important;
    border-radius: 23px;
    border: none;
}

.card-img-top {
    border-top-left-radius: calc(23px - 1px) !important;
    border-top-right-radius: calc(23px - 1px) !important;
}

.label-card {
    background: #2E2F2E;
    border-radius: 10px;
    border: 2px solid #CAEE8C;
    min-width: 180px;
    position: absolute;
    z-index: 99;
}

.card-body p {
    font-size: 0.9rem;
}

.box-inf {
    border-radius: 18px;
}

/* Toggle do menu topo */
.dropdown-toggle::after {
    display: none;
}

/* Toggle do menu topo */


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

#content-3 .btn-link:hover {
    color: #A4CA62;
}

.btn:focus {
    box-shadow: none;
}

#content-3 .collapsed {
    background-image: url(../img/arrow-down.webp) !important;
}

.border-rounded-collapse {
    -webkit-border-radius: 13px;
    -moz-border-radius: 13px;
    border-radius: 13px;
}

.border-rounded-collapse-content {
    -webkit-border-bottom-right-radius: 13px;
    -webkit-border-bottom-left-radius: 13px;
    -moz-border-radius-bottomright: 13px;
    -moz-border-radius-bottomleft: 13px;
    border-bottom-right-radius: 13px;
    border-bottom-left-radius: 13px;
}

/* Arrow do Collapse */

/* Timer*/

.timer-glow {
    text-shadow: rgb(245 216 48 / 90%) 0px 0px 5px;
}

.css-timer::after {
    content: counter(count);
    animation: counter 5s linear;
    counter-reset: count 0;
}

@keyframes counter {
    0% {
        counter-increment: count 3;
    }

    50% {
        counter-increment: count 2;
    }

    70% {
        counter-increment: count 1;
    }

}

/* timer */


/* Slick */

/* definir opacidade dos cards não ativos */
#content-3 .slick-slide {
    opacity: 0.4;
}

/* definir opacidade do card ativo */
#content-3 .slick-current {
    transition: 0.3s;
    opacity: 1;
}

/* definir tamanho dos cards não ativos */
#content-3 .card {
    margin-bottom: 4rem;
    transform: scale(0.9);
}

/* definir tamanho do card não ativo */
#content-3 .slick-current .card {
    transition: 0.3s;
    transform: scale(1.1);
}

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

/* Formulário */

/* Mostra somente um step por vez */

.form {
    display: none;
}

.form-control {
    border: none;
    background-color: #F1F1F1;
}

#step_1 {
    display: block
}

.legend-line-height {
    line-height: normal;
}

label {
    color: #646161;
}

.form-control::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: c;
    opacity: 1;
    /* Firefox */
}

.form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #868686;
}

.form-control::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #868686;
}

/* * -- */

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

.form-body {
    min-height: 28rem;
}

/* 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 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%;
    }
}

/* Animação Step Sucesso */
.form svg {
    width: 80px;
    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 Step Insucesso */

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

.fade-in {
    fill: #dc3545;
    stroke: #dc3545;
    stroke-linecap: round;
    opacity: 1;
    animation: fadeInOpacity 0.5s ease-in 1;
}

@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Fim Animação Step Insucesso */

/* Media queries */

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

    .img-pos {
        padding-top: 392px;
    }

    .box-limit {
        max-width: 360px;
    }

    .js-form-modal {
        width: 40%;
        top: 5%;
        bottom: 5%;
        margin: auto;
    }

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

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

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

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.7rem;
    }

}

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