body {
    font-family: 'Arial', sans-serif;
    color: #130A09;
}

/* Tamanhos de fontes */

h1 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.05rem;
}

p{
    font-size: 0.875rem;
}
.form-title{
    font-size: 1.125rem;
}
.small1{
    font-size: 0.65rem;
}
.small2{
    font-size: 0.6rem;
}
/* Cores gerais de textos e backgrounds */
.text-green{
    color: #69a339;
}
.bg-green{
    background-color: #50752f;
}
.bg-black{
    background-color: #130A09!important;
}
.text-black{
    color: #130A09!important;
}
/* Botões */

.btn-default {
    background: rgb(255,20,12);
    background: linear-gradient(180deg, rgba(255,20,12,1) 0%, rgba(255,184,75,1) 99%);
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 30px;
    border: none;
    transition: 0.3s;
}

.btn-default:hover {
    background: rgba(255,184,75,1);
    background: linear-gradient(0deg, rgba(255,20,12,1) 0%, rgba(255,184,75,1) 99%);
    color: white;
    transition: 0.3s;
}


/* Banner e conteúdos */

#banner {
    background-color: #130A09;
    background: linear-gradient(180deg, rgba(19,10,9,1) 50%, rgba(62,72,31,1) 50%);
}
figure {
    margin:0;
}

.card {
    border-radius: 30px;
}

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


/* 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: 30px;
}

/* 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;
}
.form-control{
    background-color: #F1F1F1;
}
/* 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 */


/* Media queries */
@media screen and (max-width: 300px){
    h1 {
        font-size: 1.5rem;
    }
    .btn-default{
        font-size: 1rem;
    }
    label, h4{
        font-size: 0.9rem;
    }
    p{
        font-size: 0.7rem;
    }
    h3 {
        font-size: 1.2rem;
    }
}
@media screen and (min-width: 768px){
    #banner {
        background-image: url(../img/imagem-banner.webp), url(../img/background.webp);
        background-size: 280px, cover;
        background-position: top right 90px, center;
        background-repeat: no-repeat;
    }

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

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

    h1 {
        font-size: 2.5rem;
    }

    #banner {
        background-size: 300px, cover;
        background-position: bottom -10px center, center;
    }

    #banner.banner-namoro {
        background-size: cover;
        background-position: center;
    }

}

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

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

    h1 {
        font-size: 2.8rem;
    }

    h4 {
        font-size: 1.35rem;
    }

    p{
        font-size: 1rem;
    }
    #banner {
        background-size: 350px, cover;
    }
}

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

    h4 {
        font-size: 1.5rem;
    }
}

@media screen and (min-width: 1600px){
    h1{
        font-size: 3.75rem;
    }
    .form-title {
        font-size: 1.5rem;
    }
    #banner {
        background-size: 400px, cover;
        background-position: bottom -20px center, center;
    }
}
