:root {
    --primary: #014163;
    --cta: #49A078;
    --dark: #333333;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #fff;
}

p {
    font-size: 1.1rem;
}

a:hover {
    text-decoration: none;
}

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

#cronometro,
#chamada,
#depoimentos,
#sobre-jbs,
#servicos {
    padding: 40px 0;
}

h2 {
    font-weight: bold;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 30px;
}


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

button:focus {
    outline: none;
}

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

a.btn-cta:hover,
button.btn-cta: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(--primary);
    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%;
    }

}

/* HEADER */
header {
    position: relative;
    padding: 0;
}

#atendimento-buttons {
    background-color: var(--primary);
}

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

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

header form {
    width: 300px;
    background-color: rgba(255, 255, 255, .7);
    padding: 10px;
    margin-right: 10px;
}

@media (max-width: 768px) {
    header form {
        width: unset;
        max-width: 70%;
    }

    header .area-form {
        background-color: var(--primary);
        position: initial;
        left: 0;
        bottom: 0;
        justify-content: center;
        align-items: center;
        padding-top: 10px;
    }
}

@media (max-width: 475px) {
    header form {
        width: unset;
        max-width: 100%;
    }
}

header form h2 {
    font-size: 1rem;
    text-align: center;
}

header form button {
    background-color: var(--cta);
    color: #fff;
    font-weight: bold;
    border: none;
    outline: none;
    text-align: center;
    width: 100%;
    padding: 10px;
    transition: all .3s;
}

header form button:hover {
    scale: 1.03;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.area-atendimento {
    position: initial;
    margin-bottom: 0;
    width: 100%;
    height: 100%;
    padding: 20px 0;
}

.area-atendimento .link-atendimento {
    font-weight: bold;
    display: inline-block;
    padding: 5px;
    font-size: .9rem;
    border-radius: 50px;
    margin-right: 10px;
}

.area-atendimento .link-atendimento.zap {
    background-color: #25d366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.area-atendimento .link-atendimento.zap i {
    background-color: #49a86c;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}


.area-atendimento .link-atendimento.phone {
    background-color: #434242;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.area-atendimento .link-atendimento.phone i {
    background-color: #7c7a7a;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

header .infos {
    align-items: baseline;
}

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

    header h2 {
        padding-top: 20px;
    }
}

@media (max-width: 768px) {
    .area-atendimento .link-atendimento {
        margin-bottom: 20px;
    }
}

/* AREA CONTADOR */
#cronometro {
    background-color: var(--primary);
}

#cronometro .area-img-padrao {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin: 40px 0;
}

#cronometro .area-img-padrao img {
    width: 200px;
}

@keyframes pulse-h2 {
    0% {
        scale: 1;
    }

    100% {
        scale: 1.05;
    }
}

#cronometro h2 {
    color: #fff;
}

#cronometro h2.baratos {
    background-color: var(--dark);
    padding: 20px;
    display: inline-block;
    animation: infinite pulse-h2 alternate 1s;
}

#cronometro ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
}

#cronometro ul li {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 130px;
}

#cronometro ul li i,
#cronometro ul li img {
    color: #fff;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

#cronometro ul li img {
    padding: 5px;
}


#cronometro ul li span {
    width: 100%;
    font-size: 1rem;
}

@media (max-width: 576px) {
    #cronometro ul {
        flex-wrap: wrap;
    }

    #cronometro ul li {
        width: 45%;
        margin-bottom: 20px;
    }
}

#cronometro p {
    color: #fff;
}

#cronometro .area-card-contador {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    color: #fff;
    border-radius: 5px;
}

#cronometro .area-card-contador .card-contador {
    text-align: center;
    margin: 0 20px;
}

#cronometro .area-card-contador .card-contador h3 {
    font-size: 3rem;

}

@media (max-width: 576px) {
    #cronometro .area-card-contador .card-contador h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 375px) {
    #cronometro .area-card-contador .card-contador {
        margin: 0 10px;
    }
}

/* SERVIÇOS */
#servicos .area-card-servico {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#servicos .area-card-servico .card-servico {
    width: 23%;
    margin: 10px;
    position: relative;
}

#servicos .area-card-servico .card-servico.start,
#servicos .area-card-servico .card-servico.end {
    background-color: #fff;
}

#servicos .area-card-servico .card-servico.start .content,
#servicos .area-card-servico .card-servico.end .content {
    background-color: unset;
    color: #000;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


#servicos .area-card-servico .card-servico.start .content i {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: var(--primary);
    text-shadow: 4px 0 0 #000;
}

#servicos .area-card-servico .card-servico.end .content i {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: var(--primary);
    text-shadow: 0px 4px 0 #000;
}

#servicos .area-card-servico .card-servico.end .content a {
    display: block;
}

#servicos .area-card-servico .card-servico .imagem {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#servicos .area-card-servico .card-servico .imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#servicos .area-card-servico .card-servico .content {
    /* background-color: rgba(0, 0, 0, .6); */
    position: relative;
    z-index: 10;
    color: #fff;
    min-height: 400px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    text-align: center;
    /* padding: 20px; */
    margin: 0;
}

#servicos .area-card-servico .card-servico.start .content,
#servicos .area-card-servico .card-servico.end .content {
    display: flex;
    align-items: center;
}

#servicos .area-card-servico .card-servico .content div {
    width: 100%;
}

#servicos .area-card-servico .card-servico .content h3 {
    font-weight: bold;
    font-size: 1.3rem;
    width: 100%;
    margin-bottom: 0;
    display: block;
    background-color: rgba(0, 0, 0, .6);
    padding: 10px;
}

#servicos .area-card-servico .card-servico.start .content h3,
#servicos .area-card-servico .card-servico.end .content h3 {
    background-color: unset;
}

#servicos .area-card-servico .card-servico .content p {
    font-weight: 500;
    font-size: 1.2rem;
}

#servicos .area-card-servico .card-servico .content a {
    background-color: var(--cta);
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px;
    border-radius: 50px;
    border: 4px solid #fff;
    display: none;
    margin-top: 20px;
    transition: all .3s;
}

#servicos .area-card-servico .card-servico:hover>.content a {
    display: inline-block;
    margin-bottom: 20px;
}

#servicos .area-card-servico .card-servico.end:hover>.content a {
    display: block;
}

#servicos .area-card-servico .card-servico .content a:hover {
    transform: scale(1.03);
}

#servicos .img-logo {
    width: 150px;
}

@media (max-width: 992px) {
    #servicos .area-card-servico .card-servico {
        width: 45%;
    }
}

@media (max-width: 576px) {
    #servicos .area-card-servico .card-servico {
        width: 100%;
    }

    #servicos .img-logo {
        width: 200px;
    }
}


/* SOBRE */
#sobre-jbs {
    background-color: var(--primary);
}

#sobre-jbs h2 {
    color: #fff;
}

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

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

#sobre-jbs p {
    color: #fff;
}

#sobre-jbs hr {
    border-color: #fff;
}

#sobre-jbs .card-contador {
    text-align: center;
    color: #fff;
}

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

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

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

#sobre-jbs a {
    background-color: var(--cta);
    color: #fff;
    border: 4px solid #fff;
    padding: 10px 15px;
    border-radius: 50px;
    display: inline-block;
    font-size: 1.6rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: all .3s;
}

#sobre-jbs a:hover {
    scale: 1.03;
}



/* DEPOIMENTOS */
#depoimentos {
    background-color: #fff;
}

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

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


.owl-dots {
    display: none;
}

button:focus {
    outline: none;
}

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

#depoimentos .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(--azul-logo);
    font-weight: bold;
    opacity: 1;
}

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

@media (max-width: 992px) {

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

@media (max-width: 576px) {

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

/* CHAMADA */

#chamada form {

    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#chamada form small {
    color: #fff;
    display: block;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 1rem;
}

#chamada form .area {
    width: 100%;
}

#chamada form h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: left;
}

#chamada form .area input {
    padding: 25px 15px;
}


#chamada form .area button {
    border: none;
    background-color: var(--cta);
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.3rem;
    text-align: center;
    border-radius: 50px;
    border: 4px solid #fff;
    width: 100%;
    padding: 10px 20px;
    transition: all .3s;
}


#chamada form .area button:hover {
    transform: scale(1.03);
}

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

/* RODAPÉ */

footer {
    padding-top: 30px;
    background-color: var(--dark);
    color: #fff;
}

footer p {
    line-break: anywhere;
}

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

footer .logo {
    text-align: center;
}

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

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

footer hr {
    border-color: #fff;
}

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;
        right: 20px;
    }

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



/* MAPA */
#mapa iframe {
    width: 100%;
    height: 400px;

}


/* DEPOIMENTOS */
#depo {
    padding: 40px 0;
    background-color: #f7f7f7;
}

#depo .card-depo {
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #fff;
    border-radius: 5px;
    margin: 20px;
}

#depo .card-depo i {
    color: #ffde00;
}