@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

.container {
    max-width: 97%;
}

:root {
    --primary: #1A3048;
    --azul-claro: #5D82A9;
    --warning: #FFB100;
    --cta: #38E54D;
    --dark: #0F0A0A;
}

* {
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f7f7f7;
}

p {
    font-size: 1.1rem;
}

a:hover {
    text-decoration: none;
}

.name-input {
    display: none;
    visibility: hidden;
}

#exclusividades,
#sobre,
#processo,
#diferenciais,
#depoimentos {
    padding: 40px 0;
}

h2 {
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 30px;
}


@media (max-width: 768px) {
    h2 {
        font-size: 1.5rem;
    }
}

button:focus {
    outline: none;
}

.image-left img,
.image-right-down img {
    width: 100%;
    object-fit: cover;
    position: relative;
}

@media (max-width: 576px) {
    .image-right-down img {
        top: -2px;
    }
}

@media (max-width: 475px) {
    .image-left img {
        top: 3px;
    }

    .image-right-down img {
        top: -4px;
    }
}

@media (max-width: 360px) {
    .image-left img {
        top: 5px;
    }

    .image-right-down img {
        top: -6px;
    }
}

a.btn-contato {
    border: none;
    display: inline-block;
    color: #fff;
    background-color: var(--cta);
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    padding: 20px 30px;
    font-size: 1.3rem;
    margin-top: 20px;
    transition: all .3s;
    border-radius: 50px;
    border: 4px solid #fff;
}

a.btn-contato:hover {
    transform: scale(1.03);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


/* ENVIANDO FORM */
#enviando-form {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, .6);
    width: 100%;
    height: 100vh;
    display: none;
}

#enviando-form.active {
    display: block;
}

#enviando-form .wrapper {
    width: 200px;
    height: 60px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#enviando-form .circle {
    width: 20px;
    height: 20px;
    position: absolute;
    border-radius: 50%;
    background-color: #fff;
    left: 15%;
    transform-origin: 50%;
    animation: circle .5s alternate infinite ease;
}

@keyframes circle {
    0% {
        top: 60px;
        height: 5px;
        border-radius: 50px 50px 25px 25px;
        transform: scaleX(1.7);
    }

    40% {
        height: 20px;
        border-radius: 50%;
        transform: scaleX(1);
    }

    100% {
        top: 0%;
    }
}

#enviando-form .circle:nth-child(2) {
    left: 45%;
    background-color: var(--warning);
    animation-delay: .2s;
}

#enviando-form .circle:nth-child(3) {
    left: auto;
    right: 15%;
    animation-delay: .3s;
    background-color: var(--primary);
}

#enviando-form .shadow {
    width: 20px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, .5);
    position: absolute;
    top: 62px;
    transform-origin: 50%;
    z-index: -1;
    left: 15%;
    filter: blur(1px);
    animation: shadow .5s alternate infinite ease;
}

@keyframes shadow {
    0% {
        transform: scaleX(1.5);
    }

    40% {
        transform: scaleX(1);
        opacity: .7;
    }

    100% {
        transform: scaleX(.2);
        opacity: .4;
    }
}

#enviando-form .shadow:nth-child(4) {
    left: 45%;
    animation-delay: .2s
}

#enviando-form .shadow:nth-child(5) {
    left: auto;
    right: 15%;
    animation-delay: .3s;
}

#enviando-form .wrapper span {
    position: absolute;
    top: 75px;
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    width: 400px;
    left: -50%;
    text-align: center;
}

@media (max-width: 576px) {
    #enviando-form .wrapper span {
        width: 280px;
        left: -20%;
    }

}

/* HEADER TOP */
#header-top {
    padding: 15px 0;
    text-align: center;
    color: #fff;
    background-color: var(--primary);
}

#header-top a {
    background-color: #fff;
    padding: 10px 20px;
    display: inline-block;
    font-weight: bold;
    border-radius: 50px;
    color: var(--primary);
    margin-right: 10px;
    font-size: .9rem;
    transition: all .3s;
}

#header-top a i {
    color: #fff;
    background-color: var(--primary);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

#header-top a:hover {
    scale: 1.03;
}

/* HEADER */
header {
    min-height: 600px;
    background-image: url(/assets/images/nova/header/header3.png);
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
}

header .text-main {
    padding: 10px;
    background-color: rgba(0, 0, 0, .5);
    color: #fff;
}

header .text-main h2 {
    color: var(--warning);
}

header .row {
    justify-content: flex-end;
}

header form {
    min-height: 600px;
    background-color: rgba(0, 0, 0, .5);
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

header form .inputs-form {
    width: 100%;
}

header form .inputs-form h2 {
    color: #fff;
    text-align: center;
    font-size: 1.6rem;
}

header button {
    background-color: var(--warning);
    display: inline-block;
    width: 100%;
    font-size: 1.3rem;
    padding: 10px 20px;
    text-align: center;
    border: none;
    font-weight: bold;
    transition: all .3s;
}

header button:hover {
    scale: 1.03;
}

@media (max-width: 1200px) {
    header {
        background-image: url(/assets/images/nova//header/header2.png);
    }

}

@media (max-width: 992px) {
    header {
        text-align: center;
        background-image: url(/assets/images/nova//header/header-mob.png);
    }

    header form {
        min-height: 500px;
    }

    header .col-12 {
        padding: 0 !important;
    }
}

/* SOBRE */
#sobre img {
    width: 400px;
    filter: drop-shadow(-10px 0px 0px var(--primary));
}

#sobre button {
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all .3s;
    margin-right: 10px;
}

#sobre button:hover {
    scale: 1.03;
    background-color: var(--primary);
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

@media (max-width: 992px) {
    #sobre {
        text-align: center;
    }

    #sobre img {
        width: 200px;
        display: block;
        margin: 0 auto;
        margin-bottom: 10px;
    }
}

/* EUSOU */
#eusou {
    position: relative;
}

#eusou img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#eusou .conteudo {
    background: rgba(255, 255, 255, 0) linear-gradient(to left, rgba(0, 0, 0, 0) 0%,
            rgba(26, 48, 72, .1) 0%,
            rgba(26, 48, 72, .3) 1%,
            rgba(26, 48, 72, 1) 59%) repeat scroll 0 0;
    position: relative;
    z-index: 15;
    color: #fff;
    padding: 40px 0;
}

#eusou p.princ {
    border: 2px solid #fff;
    padding: 20px;
    border-radius: 5px;
}

#eusou a {
    border: 3px solid #fff;
    color: #fff;
    border-radius: 5px;
    padding: 20px;
    display: inline-block;
    margin-top: 20px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all .3s;
}

#eusou a:hover {
    background-color: #fff;
    color: var(--primary);
    scale: 1.03;
}

#eusou ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

#eusou ul li {
    width: 48%;
    background-color: #fff;
    color: var(--primary);
    padding: 20px;
    border-radius: 10px;
    margin: 10px;
}


#eusou ul li .card-eu-sou {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#eusou ul li .card-eu-sou i {
    font-size: 1.6rem;
}

#eusou ul li .card-eu-sou h3 {
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

@media (max-width: 768px) {

    #eusou ul {
        align-items: unset;
    }

    #eusou ul li {
        width: 42%;
    }
}

/* PROCESSO */
#processo {
    overflow: hidden;
}

#processo .area-card-processo .card-processo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#processo .area-card-processo .card-processo .imagem,
#processo .area-card-processo .card-processo .content {
    width: 48%;
}

#processo .area-card-processo .card-processo .imagem {
    height: 350px;
}

#processo .area-card-processo .card-processo .imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 15px 20px 0px var(--primary);
}

#processo .area-card-processo .card-processo.invert .imagem img {
    box-shadow: -15px 20px 0px var(--primary);
}

#processo .area-card-processo .card-processo .content {
    padding: 20px;
}

#processo .area-card-processo .card-processo .content h3 {
    font-weight: bold;
    color: var(--azul-claro);
}

@media (max-width: 992px) {
    #processo .area-card-processo .card-processo {
        flex-wrap: wrap;
    }

    #processo .area-card-processo .card-processo.invert {
        flex-wrap: wrap-reverse;
    }

    #processo .area-card-processo .card-processo .imagem,
    #processo .area-card-processo .card-processo .content {
        width: 100%;
    }

    #processo .area-card-processo .card-processo .content h3 {
        margin-top: 20px;
    }
}

/* DIFERENCIAIS */
#diferenciais {
    background-color: var(--primary);
    color: #fff;
}

#diferenciais .area-card-diferenciais {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    text-align: center;
}

#diferenciais .area-card-diferenciais .card-diferencial {
    width: 23%;
}

#diferenciais .area-card-diferenciais .card-diferencial .icon {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

#diferenciais .area-card-diferenciais .card-diferencial .icon i {
    background-color: #fff;
    color: var(--primary);
    width: 60px;
    height: 60px;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

#diferenciais .area-card-diferenciais .card-diferencial .content h3 {
    font-size: 1.3rem;
    font-weight: bold;
}

#diferenciais .area-card-diferenciais .card-diferencial .content p {
    font-size: .9rem;
}

@media (max-width: 992px) {
    #diferenciais .area-card-diferenciais {
        flex-wrap: wrap;
    }

    #diferenciais .area-card-diferenciais .card-diferencial {
        width: 45%;
    }
}

@media (max-width: 576px) {
    #diferenciais .area-card-diferenciais .card-diferencial {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* DEPOIMENTOS */
#depoimentos {
    padding-bottom: 0;
    background-color: #1A3048;
}

#depoimentos .item {
    background-color: #fff;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin: 20px;
}

#depoimentos .item i {
    color: #ffde00;
    filter: drop-shadow(1px 0px 0px #F57328);
}

#depoimentos .owl-nav,
#depoimentos .owl-dots {
    display: none;
}

#depoimentos .depovideos {
    padding: 40px 0;
    background-color: #f7f7f7;
}

#depoimentos .base-top {
    background-color: #fff;
    padding: 40px 0;

}

#depoimentos .depovideos .depoimentos-base {
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    padding-bottom: 40px;
}

#depoimentos .depovideos ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
    position: relative;
    margin-bottom: 0;
    z-index: 10;
}

#depoimentos .depovideos ul li {
    width: 31%;
    margin: 5px;
}

#depoimentos .depovideos ul li img {
    width: 100%;
    cursor: pointer;
    transition: all .3s;
    border-radius: 5px;
}

#depoimentos .depovideos ul li img:hover {
    scale: 1.03;
}
#depoimentos .card-audio{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
}
#depoimentos .card-audio h3,
#depoimentos .card-audio audio{
    width: 50%;
}
#depoimentos .card-audio h3{
    font-size: .9rem;
    margin-right: 20px;
    
}

@media (max-width: 768px) {
    #depoimentos .depovideos ul li {
        width: 47%;
    }
}

/* EXCLUSIVIDADES */
#exclusividades {
    background-color: var(--primary);
    color: #fff;
}

#exclusividades .card-exclusividade {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

#exclusividades .card-exclusividade .numero {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--azul-claro);
    color: transparent;
    font-size: 5rem;
    font-weight: 700;
    text-shadow: -5px -3px 0 #fff;
    margin-bottom: 0;
}

#exclusividades .card-exclusividade p {
    margin-bottom: 0;
    margin-left: 15px;
    font-size: 1.3rem;
    font-weight: 500;
}

@media (max-width:992px) {

    #exclusividades h2,
    #exclusividades .card-exclusividade {
        margin-bottom: 30px;
    }

    #exclusividades .card-exclusividade p {
        font-size: 1.1rem;
    }
}

@media (max-width:576px) {
    #exclusividades .card-exclusividade {
        flex-wrap: wrap;
        text-align: center;
    }

    #exclusividades .card-exclusividade .numero {
        width: 100%;
    }
}


/* RODAPÉ */

footer {
    padding-top: 30px;
    background-color: #f7f7f7;
}

footer img {
    width: 200px;
    margin: 15px;
}

footer .logo {
    text-align: center;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer .logo p {
    text-align: center;
}

footer iframe {
    width: 100%;
}

footer h3 {
    font-size: 1.5rem;
}

footer p,
footer ul li a {
    font-size: 1rem;
}

footer ul li a,
footer ul li a:hover {
    color: #000;
}

footer .desen {
    text-align: center;
}

footer .desen a {
    color: var(--cta);
    font-weight: bold;
}


/* WHATSAPP */
#modalWhatsapp {
    color: #000;
}

#modalWhatsapp button.cta {
    color: #000;
    background-color: var(--cta);
    font-size: 1rem;
    font-weight: 500;
    padding: 20px 40px;
    transition: all .5s;
    border: none;
    outline: none;
    width: 100%;
    transition: all .3s;
    font-weight: bold;
    text-transform: uppercase;
}

#modalWhatsapp button.cta:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    color: #000;
}

.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    z-index: 90;
    position: fixed;
    bottom: 100px;
    right: 40px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 35px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    cursor: pointer;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.8);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

@keyframes pulse-phone {
    0% {
        box-shadow: 0 0 0 0 rgba(97, 103, 122, .8);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}


.btn-contato-phone {
    position: fixed;
    right: 40px;
    bottom: 20px;
    color: #fff;
    background-color: #61677A;
    font-size: 1.5rem;
    font-weight: 500;
    transition: all .5s;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    transition: all .3s;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    animation-name: pulse-phone;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    z-index: 999;
}

.btn-contato-phone:hover {
    color: #fff;
}

@media (max-width: 576px) {

    #btn-zap {
        justify-content: flex-start;
    }

    .btn-contato-phone {
        right: 20px;
        bottom: 20px;
        width: 55px;
        height: 55px;
    }
}

#modalSaibaMais h2 {
    font-size: 1.6rem;
    color: var(--azul);
}


#modalDiferenciais .cta a {
    color: #000;
    background-color: var(--cta);
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 20px;
    transition: all .5s;
    border: none;
    outline: none;
    transition: all .3s;
    font-weight: bold;
    margin: 20px 0;
    text-transform: uppercase;
    border-radius: 50px;
    display: inline-block;
}


/* DIFERENCIAIS MAIN */
#diferenciais-main {
    padding: 40px 0;
}

#diferenciais-main .container {
    background-color: var(--primary);
    color: #fff;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

#diferenciais-main .container .textos {
    padding: 40px;
}

#diferenciais-main .container .textos h2 {
    position: relative;
}

#diferenciais-main .container .textos h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 400px;
    height: 3px;
    background-color: #fff;
}

@media (max-width: 768px) {
    #diferenciais-main .container .textos h2::after {
        width: 200px;
    }
}

#diferenciais-main .container .textos ul {
    list-style: none;
    margin: 20px 0;
    border-radius: 10px;
    padding: 20px;
    box-shadow: rgba(255, 255, 255, 0.5) 0px 3px 8px;
}


#diferenciais-main .container .textos .cta a {
    background-color: #38E54D;
    color: #fff;
    border-radius: 5px;
    display: inline-block;
    font-weight: bold;
    font-size: 1rem;
    padding: 10px 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

/* O QUE EH */
#oqueeh {
    background-color: #fff;
    padding: 40px 0;
}

#oqueeh .container {
    padding: 40px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 15px;
}

#oqueeh .container h2 {
    position: relative;
}

#oqueeh .container h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 400px;
    height: 3px;
    background-color: var(--primary);
}

@media (max-width: 768px) {
    #oqueeh .container h2::after {
        width: 200px;
    }
}

#oqueeh .container ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

#oqueeh .container ul li {
    width: 19%;
    margin: 5px;
    border-radius: 5px;
    text-align: center;
    position: relative;
}

#oqueeh .container ul li .card-oqueeh img {
    display: inline-block;
    width: 100%;
    border-radius: 5px;
}

#oqueeh .container ul li .card-oqueeh .content {
    border-radius: 5px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .5);
    text-align: center;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

#oqueeh .container ul li .card-oqueeh .content h3 {
    font-size: 1rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    #oqueeh .container ul li {
        width: 47%;
    }
    #oqueeh .container ul li .card-oqueeh .content h3{
        font-size: .9rem;
        font-weight: 400;
    }
}