:root {
    --verde: #0387bc;
    --cinza: #6b6c6c;
    --button: var(--cinza);
    --cta: #eef0eb;
    --cta-white: var(--cinza);
    --cinza-claro: #007dc3;
    --cinza: #404041
}

@font-face {
    src: url(/assets/fonts/GothamMedium.ttf) format('truetype');
}

@font-face {
    src: url(/assets/fonts/Gotham-Bold.ttf) format('truetype');
}

@font-face {
    src: url(/assets/fonts/Gotham-Light.ttf) format('truetype');
}

* {}

html {
    scroll-behavior: smooth;
}

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



@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(--dark);
}

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

}

.container {
    max-width: 1240px;
}

/* HEADER */

header {
    padding: 0;
    margin: 0;
    position: relative;
}

header .area-form {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    padding-right: 20px;
    justify-content: flex-end;
    align-items: center;
    z-index: 99;
}

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

header .cta button {
    background-color: var(--verde);
    color: #fff;
    border-radius: 5px;
    padding: 10px 20px;
    text-align: center;
    font-weight: bold;
    border: none;
    text-transform: uppercase;
    font-size: 1.3rem;
}

header .area-form form {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

header .area-form form h2 {
    background-color: #b32233;
    color: #fff;
    padding: 10px;
    font-weight: 600;
    font-size: 2rem;
    text-align: center;
}

header .area-form form .conteudo {
    padding: 10px;
}

header .area-form form .form-input {
    width: 100%;
    margin-bottom: 10px;
}

header .area-form form .form-input input,
header .area-form form .form-input textarea {
    width: 100%;
    padding: 10px 20px;
    padding-left: 0;
    padding-bottom: 0;
    border: none;
    border-bottom: 3px solid var(--verde);
    outline: none;
}

header .area-form form .form-input select {
    border: 3px solid var(--verde);
    width: 100%;
    color: var(--verde);
    padding: 10px;
}


header .area-form form .form-input input::placeholder,
header .area-form form .form-input textarea::placeholder {
    color: var(--verde);
    font-weight: bold;
}

header .area-form form button {
    display: inline-block;
    width: 100%;
    font-weight: bold;
    text-transform: uppercase;
    background-color: transparent;
    color: #fff;
    background-color: var(--verde);
    transition: all .5s;
    padding: 10px 20px;
    border: none;
    font-size: 1.5rem;
    position: relative;
}

header .area-form form button:hover {
    color: #fff;
    background-color: var(--verde);
}

header .textos {
    color: #fff;
    text-align: right;
}

header h1 {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 2rem;
}

header p {
    font-weight: bold;
    font-size: 1.5rem;
}


@media (max-width: 992px) {

    header .area-form {
        position: inherit;
        padding: 0;
    }

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


/* PROCURA */

#procura .conteudo {
    position: relative;
    text-align: center;
}

#procura h2,
#procura h2 a {
    font-size: 2rem;
    text-transform: uppercase;
    color: var(--cinza);
}

#procura .textos {
    display: flex;
    justify-content: center;
    align-items: center;
}

#procura .textos div {
    background-color: #fff;
    padding: 20px;
}


#procura .imagem {
    text-align: right;
}

@media (max-width:992px) {
    #procura .imagem {
        text-align: left;
    }
}

@media (max-width:768px) {
    #procura {
        height: unset;
    }

    #procura .conteudo {
        position: initial;
    }

    #procura .imagem,
    #procura .textos,
    #procura {
        text-align: center;
    }

    #procura .textos {
        justify-content: center;
    }
}

/* LUGAR PERFEITO */
#lugar-perfeito {
    padding: 0;
    padding-top: 40px;
}

#lugar-perfeito h2 {
    color: var(--verde);
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

#lugar-perfeito ul {
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;

}

#lugar-perfeito ul li {
    width: 200px;
    text-align: center;
}

#lugar-perfeito .card-raizes img {
    width: 100px;
    margin-bottom: 10px;
}

#lugar-perfeito .card-raizes.verde p {
    color: var(--verde);
    margin-bottom: 0;
}

#lugar-perfeito .card-raizes.azul p {
    color: var(--cinza);
    margin-bottom: 0;
}

#lugar-perfeito .card-raizes p {
    font-weight: bold;
    font-size: 1.2rem;
}


@media (max-width:1200px) {
    #lugar-perfeito ul {
        padding: 0 100px;
    }

    #lugar-perfeito ul li {
        width: 200px;
    }

    #lugar-perfeito .card-raizes img {
        width: 80px;
    }
}

@media (max-width: 992px) {
    #lugar-perfeito ul {
        flex-wrap: wrap;
    }

    #lugar-perfeito ul li {
        width: 45%;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    #lugar-perfeito ul {
        padding: 0 30px;
    }

    #lugar-perfeito ul li {
        width: 100%;
        margin-bottom: 30px;
    }
}

/* GALERIA */
#galeria {
    padding: 0;
    height: 100%;
}


#galeria .conteudo {
    position: relative;
    bottom: -50px;
}

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

#galeria .area-card-galeria {
    width: 1400px;
    margin-left: auto;
    margin-bottom: 40px;
    overflow-x: hidden;
}

#galeria .card-galeria {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    margin: 0 20px;
}

#galeria .card-galeria img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

#galeria .card-galeria .content {
    padding: 20px;
    background-color: #fff;
}

#galeria .card-galeria .content h3,
#galeria .card-galeria .content i {
    color: var(--cinza);
}

#galeria .card-galeria .content h3 {
    font-size: 1.3rem;
}

#galeria .card-galeria .content .icones ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#galeria .card-galeria .content .icones ul li {
    width: 50%;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
}

#galeria .card-galeria .tamanho {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

#galeria .card-galeria .tamanho i {
    font-size: 1.5rem;
}

#galeria .card-galeria .tamanho span {
    font-weight: bold;
    font-size: 1.2rem;
}


#galeria .card-galeria .preco a {
    width: 100%;
    display: inline-block;
    background-color: var(--cinza);
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 1.6rem;
}

#galeria .card-galeria .content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#galeria .cta a{
    background-color: var(--verde);
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.3rem;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
}

@media (max-width: 1400px) {
    #galeria .area-card-galeria {
        width: 1200px;
    }
}

@media (max-width: 1200px) {

    #galeria .area-card-galeria {
        width: 1000px;
    }
}

@media (max-width: 1055px) {

    #galeria .area-card-galeria {
        width: 993px;
    }
}

@media (max-width: 992px) {

    #galeria .area-card-galeria {
        width: 100%;
    }
}

@media (max-width: 768px) {

    #galeria {
        height: unset;
    }
}

/* FUNDO */
#fundo-conteudo {
    background-color: var(--cinza);
    padding: 200px 0;
    padding-top: 50px;
}

/* DEPOIMENTOS */
#depoimentos {
    padding: 40px 0;
}

#depoimentos .texto-principal {
    padding: 0;
}

#depoimentos h2 {
    font-size: 2rem;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

#depoimentos .new-card-depoimento {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

#depoimentos .new-card-depoimento .texto {
    position: relative;
}


#depoimentos .new-card-depoimento img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 80px;
}


#depoimentos h2 .destaque {
    color: var(--verde);
}

#depoimentos p {
    font-size: 1.2rem;
    color: #fff;
    font-weight: bold;
}

#depoimentos .card-depoimento {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

#depoimentos .card-depoimento .imagem img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

#depoimentos .card-depoimento .imagem {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#depoimentos .card-depoimento .imagem h6 {
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
}

#depoimentos .card-depoimento .texto {
    width: 70%;
    padding: 20px;
}

#depoimentos .card-depoimento .texto p {
    margin: 0;
    color: #fff;
}

#depoimentos .card-depoimento.azul .texto {
    background-color: var(--cinza);
}

#depoimentos .card-depoimento.azul .texto p {
    max-width: 900px;
}

#depoimentos .card-depoimento.verde .texto p {
    margin-left: auto;
    max-width: 900px;
}

#depoimentos .card-depoimento.verde .texto {
    background-color: var(--verde);
    text-align: right;
}

@media (max-width: 1200px) {
    #depoimentos .texto-principal {
        padding: 0 100px;
    }

    #depoimentos .card-depoimento.azul .texto p {
        max-width: 700px;
    }

    #depoimentos .card-depoimento.verde .texto p {
        margin-left: auto;
        max-width: 700px;
    }

}

@media (max-width: 992px) {
    #depoimentos .texto-principal {
        padding: 0 100px;
    }

    #depoimentos .card-depoimento .texto p {
        font-size: 1.5rem;
    }

}

@media (max-width: 768px) {
    #depoimentos {
        margin-top: 40px;
    }

    #depoimentos .texto-principal {
        padding: 0 30px;
    }

    #depoimentos p {
        font-size: 1.5rem;
    }

    #depoimentos .card-depoimento .texto {
        width: 100%;
    }

    #depoimentos .card-depoimento.azul {
        flex-wrap: wrap;
    }

    #depoimentos .card-depoimento.verde {
        flex-wrap: wrap-reverse;
    }


    #depoimentos .card-depoimento .texto p {
        font-size: 1.5rem;
    }

}

/* INFOS */
#infos {
    padding-bottom: 40px;
}

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

#infos .area-card-info .card-info {
    background-color: var(--cinza-claro);
    color: #fff;
    padding: 20px;
    text-align: center;
    width: 100%;
    min-height: 165px;
}

#infos .area-card-info .card-info:nth-child(2) {
    margin: 0 20px;
}


#infos .area-card-info .card-info h2 {
    font-size: 2rem;
    text-transform: uppercase;
}

#infos .area-card-info .card-info p {
    font-weight: bold;
    font-size: 1.3rem;
}

@media (max-width: 1118px) {
    #infos .area-card-info .card-info h2 {
        text-transform: uppercase;
    }

    #infos .area-card-info .card-info p {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    #infos .area-card-info .card-info h2 {
        text-transform: uppercase;
    }

    #infos .area-card-info .card-info p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {

    #infos .area-card-info {
        flex-wrap: wrap;
        justify-content: center;
    }

    #infos .area-card-info .card-info {
        width: 80%;
        margin-bottom: 10px;
    }

    #infos .area-card-info .card-info:nth-child(1) {
        text-align: center;
    }

    #infos .area-card-info .card-info:nth-child(3) {
        text-align: center;
    }

    #infos .area-card-info .card-info:nth-child(2) {
        margin-bottom: 10px;
    }
}

/* CONTATO */
#contato {
    color: #fff;
    padding-bottom: 40px;
}

#contato h2 {
    font-size: 2rem;
    padding-bottom: 10px;
    text-transform: uppercase;
    margin: 50px 0;
    position: relative;
}

#contato h2::after {
    content: "";
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
}

#contato .textos {
    text-align: right;
}

#contato h3 {
    font-size: 3rem;
    position: relative;
    padding-bottom: 10px;
}

#contato h3::after {
    content: "";
    width: 80%;
    height: 3px;
    background-color: var(--verde);
    position: absolute;
    right: 0;
    bottom: 0;
}

#contato p {
    font-size: 1.2rem;
    font-weight: bold;
}

#contato img {
    width: 100%;
}

#contato .cta {
    display: block;
    width: 89.9%;
    margin-top: 20px;
    margin-left: auto;
    background-color: var(--verde);
}

#contato .cta a {
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.5rem;
    padding: 10px;
}

@media (max-width: 1200px) {
    #contato .container {
        padding: 0 100px;
    }
}

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

    #contato h3 {
        text-align: center;
    }

    #contato h3 br {
        display: none;
    }

    #contato h3::after {
        width: 100%;
    }

    #contato p {
        text-align: center;
    }

    #contato img {
        margin-bottom: 20px;
    }

    #contato .cta {
        text-align: left;
    }
}

@media (max-width: 768px) {
    #contato .container {
        padding: 0 30px;
    }

    #contato .cta {
        width: 95%;
    }
}

/* IMOVEL DOS SONHOS */
#imovel-sonhos {
    padding-bottom: 0px;
    height: 650px;
}

#imovel-sonhos h2 {
    font-weight: bold;
    text-transform: uppercase;
}

#imovel-sonhos .conteudo {
    position: relative;
    top: -200px;
}

@media (max-width: 576px) {
    #imovel-sonhos {
        height: unset;
    }

    #imovel-sonhos .conteudo {
        top: 0;
    }
}

#imovel-sonhos img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

#imovel-sonhos h2 {
    font-size: 2rem;
}

#imovel-sonhos p {
    color: #000;
    font-size: 1.3rem;
}


#imovel-sonhos h2 {
    color: var(--verde);
}

#imovel-sonhos .cta {
    margin: 30px 0;
    display: block;
    width: 89.9%;
    margin-right: auto;
    background-color: var(--cinza);
    text-align: right;
}

#imovel-sonhos .cta a {
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 3rem;
    padding: 10px;
}

@media (max-width: 768px) {
    #imovel-sonhos .cta a {
        font-size: 1.5rem;
    }

}

@media (max-width: 1200px) {
    #imovel-sonhos .container {
        padding: 0 100px;
    }
}

@media (max-width: 992px) {
    #imovel-sonhos .container {
        padding: 0 80px;
    }
}

@media (max-width: 768px) {
    #imovel-sonhos .container {
        padding: 0 30px;
    }
}


/* MELHORES */
#melhores .area-card-melhores .card-melhores {
    display: flex;
    align-items: center;
    width: 100%;
}

#melhores .area-card-melhores .card-melhores.verde {
    justify-content: flex-start;
}

#melhores .area-card-melhores .card-melhores.azul {
    justify-content: flex-end;
}


#melhores .area-card-melhores .card-melhores.verde img {
    margin-right: 20px;
}

#melhores .area-card-melhores .card-melhores.azul img {
    margin-left: 20px;
}

#melhores .area-card-melhores .card-melhores.azul img:nth-child(2) {
    margin: 0;
}

#melhores .area-card-melhores .card-melhores.azul h2 {
    text-align: right;
    color: var(--cinza);
}

#melhores .area-card-melhores .card-melhores .image img {
    width: 300px;
}


#melhores .area-card-melhores .card-melhores.verde h2 {
    color: var(--verde);
}

#melhores .area-card-melhores .card-melhores h2 {
    font-size: 2rem;
    width: 60%;
}


@media (max-width:1200px) {
    #melhores {
        margin-top: 50px;
    }

    #melhores .area-card-melhores .card-melhores .image img {
        width: 300px;
    }

    #melhores .area-card-melhores .card-melhores h2 {
        width: 60%;
    }
}

@media (max-width:768px) {
    #melhores .area-card-melhores .card-melhores .image img {
        width: 200px;
    }

    #melhores .area-card-melhores .card-melhores h2 {
        font-size: 2rem;
        width: 60%;
    }
}

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

#modalWhatsapp button.cta {
    color: #000;
    background-color: #25d366;
    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;
    right: 40px;
    bottom: 20px;




    position: fixed;
    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: 100px;

    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: 20px;
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
        padding: 0;
    }

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


/* RODAPÉ */
footer {
    padding-top: 30px;
    background-color: var(--cinza);
    color: #fff;
}

footer a,
footer p,
footer ul li {
    font-weight: bold;
    font-size: 1.5rem;
}

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

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

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

footer ul li a,
footer ul li a:hover {
    color: #fff;
    font-weight: bold;
}

footer hr {
    border-color: #fff;
}

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


.modal-body iframe {
    width: 100%;
    height: 400px;
}

/* REMAX USA */
#remaxusa {
    padding: 40px 0;
}

#remaxusa h2 {
    background-color: #b32233;
    color: #fff;
    padding: 10px;
    font-weight: 600;
    font-size: 2rem;
    text-align: center;
}

#carouselDemonstracoes img {
    height: 400px;
    object-fit: cover;
}

