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


:root {
    --cta: #27b157;
    --primary: #81a42a;
    --vermelho-logo: #e30613;
    --dark: #2D2727;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f7f7f7;

}

html {
    scroll-behavior: smooth;
}

a:hover {
    text-decoration: none;
}

#atendemos,
#barra-promo,
#mainprod,
#contato,
#loja,
#prova,
#beneficios,
#produtos {
    padding: 50px 0;
}

h2 {
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--primary);
}

button:focus {
    outline: none;
}

.bold {
    font-weight: bold;
}

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

/* BARRA TOPO */
#barra-topo {
    padding: 10px;
}

#barra-topo .col-12 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#barra-topo .col-12 a {
    font-weight: bold;
    background-color: var(--secondary);
    color: #fff;
    padding: 10px 15px;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 1.2rem;
    transition: all .3s;
    display: inline-block;
}

#barra-topo .col-12 a:hover {
    scale: 1.03;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

#barra-topo img {
    width: 200px;
}

@media (max-width: 768px) {
    #barra-topo .col-12 {
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }

    #barra-topo .col-12 a {
        display: inline-block;
        margin-top: 20px;
    }
}

@media (max-width: 340px) {
    #barra-topo .col-12 a {
        font-size: 1rem;
    }
}


/* 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(--dark);
    animation-delay: .2s;
}

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

#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%;
    }

}

/* BARRA TOP */
#barra-top {
    background-color: var(--dark);
    padding: 30px;
}

#barra-top img {
    width: 300px;
}

/* HEADER */

header {
    color: #fff;
    position: relative;
}

header .area-form {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 10;
}

header form {
    width: 300px;
    margin-right: 100px;
    text-align: center;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 10px;
}

header h2 {
    font-size: .9rem;
}

#carouselHeader img {
    width: 100%;
    object-fit: cover;
    max-height: 600px;
}

header form input,
header form textarea {
    padding: 10px;
}

header form button {
    background-color: var(--cta);
    color: #fff;
    font-weight: bold;
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 1rem;
    text-transform: uppercase;
    border: none;
}

@media (max-width: 769px) {

    header form {
        width: 100%;
        margin: 0;
        padding: 30px;
    }

    header .area-form {
        position: initial;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        display: flex;
        background-color: var(--terc);
        justify-content: flex-end;
        align-items: center;
        z-index: 10;
    }

    header form {
        background-color: var(--terc);
    }
}


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

#barra-promo .cta a:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(1.03);
}

/* BARRA PROMO */
#barra-promo {
    background-color: var(--dark);
    color: #fff;
}

#barra-promo .area-contador {
    display: flex;
    justify-content: center;
}

#barra-promo .area-card-contador {
    display: inline-flex;
    background-color: #EBB02D;
    justify-content: center;
    align-items: center;
    text-align: center;
}


#barra-promo .area-card-contador .card-contador {
    margin: 0 30px;
    text-align: center;

}

#barra-promo .area-card-contador .card-contador h3 {
    font-size: 2.4rem;
    font-weight: bold;
}

@media (max-width: 475px) {
    #barra-promo .area-card-contador {
        flex-wrap: wrap;
    }

    #barra-promo .area-card-contador .card-contador {
        width: 100%;
    }
}

/* SERVIÇOS */
#servicos-produtos .card-obra-andamento {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 50px;
}

#servicos-produtos .card-obra-andamento .img,
#servicos-produtos .card-obra-andamento .content {
    width: 50%;
}

#servicos-produtos .card-obra-andamento .img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    box-shadow: 15px 20px 0px var(--dark);
}

#servicos-produtos .card-obra-andamento.reverse .img img {
    box-shadow: -15px 20px 0px var(--dark);
}

#servicos-produtos .card-obra-andamento .content {
    padding: 40px;
}

#servicos-produtos .card-obra-andamento .content .saiba-mais a {
    background-color: var(--dark);
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 10px 20px;
    transition: all .3s;
    display: inline-block;
}

#servicos-produtos .card-obra-andamento .content .saiba-mais a:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    scale: 1.03;
}

@media (max-width: 768px) {
    #servicos-produtos .card-obra-andamento {
        flex-wrap: wrap;
    }

    #servicos-produtos .card-obra-andamento.reverse {
        flex-wrap: wrap-reverse;
    }

    #servicos-produtos .card-obra-andamento .img,
    #servicos-produtos .card-obra-andamento .content {
        width: 100%;
    }

    #servicos-produtos .card-obra-andamento .content {
        padding: 20px;
        margin-top: 20px;
    }

}


/* ATENDEMOS */
#atendemos {
    background-color: var(--dark);
    color: #fff;
}

#atendemos .area-card-atendemos {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#atendemos .area-card-atendemos .card-atendemos {
    text-align: center;
    width: 300px;
}


#atendemos .area-card-atendemos .card-atendemos i {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    align-items: center;
    border: 3px solid var(--primary);
    color: var(--primary);
}

#atendemos .area-card-atendemos .card-atendemos h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
}


.owl-carousel button.owl-dot {
    display: none;
}

.owl-carousel .owl-nav {
    display: flex;
    justify-content: center;
}

.owl-carousel .owl-nav button.owl-next span,
.owl-carousel .owl-nav button.owl-prev span {
    font-size: 5rem;
}


#prova {
    background-color: #f7f7f7;
    color: var(--dark);
}

#prova .g-negocio {
    width: 250px;
    margin-bottom: 20px;
}

#prova .stars {
    color: #FFDE00;
    filter: drop-shadow(1px 0px 0px #F57328);
}

#prova .area-contador {
    margin-top: 30px;
}

#prova .card-contador {
    text-align: center;
}

#prova .card-contador .numero {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

#prova .card-contador .numero i {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: var(--dark);
    border-radius: 50%;
    margin-bottom: 20px;
}

#prova .card-contador .numero .content-main {
    width: 100%;
}

.owl-dots {
    display: none;
}

button:focus {
    outline: none;
}

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

#prova .owl-nav {
    position: absolute;
    top: 0;
    left: -5%;
    display: flex;
    margin: 0 auto;
    width: 110%;
    padding: 0;
    justify-content: space-between;
    align-items: center;
    color: var(--dark);
    font-weight: bold;
    opacity: 1;
}

#prova .owl-nav button span {
    font-size: 6rem;
    padding: 0;
    margin: 0;
}

@media (max-width: 992px) {

    #prova .owl-nav {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {

    #prova .owl-nav {
        position: initial;
        left: 0;
        display: flex;
        width: 100%;
        padding: 0 40px;
        justify-content: center;
        align-items: center;
    }
}


/* RODAPÉ */
footer {
    padding-top: 30px;
}

footer a.loja {
    font-weight: bold;
    color: #F57328;
}

footer img {
    width: 200px;
    margin-bottom: 20px;
}

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

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

footer hr {
    border-color: #000;
}

footer .desenvo a {
    color: #F57328;
    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;
}

.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-whatsapp-pulse {
        right: 20px;
        bottom: 90px;
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
        padding: 0;
    }

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

header form label {
    color: #000 !important;
}

#modalTelefone a {
    background-color: #61677A;
    color: #fff;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    margin-bottom: 10px;
}