@import url('https://fonts.googleapis.com/css2?family=Julius+Sans+One&family=Kantumruy+Pro:ital,wght@0,100..700;1,100..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Kantumruy Pro", sans-serif;
}

body {
    color: #fff;
}

/* HEADER */
header {
    background-image: url(/src/imagens/imagemFundo.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    position: relative;
    color: #fff;
}

#logo {
    width: 40px;
    border-radius: 5px;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    padding-top: 140px;
}

nav {
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

/* Menu Hambúrguer */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
    color: white;
}

ul a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.5s;
}

ul a:hover {
    color: #f5c400;
}

#faleConosco {
    background-color: #d4af37;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
}

#faleConosco:hover {
    color: #2e2e2e;
}

.textoPrincipal {
    margin-top: 5%;
    margin-left: 6%;
}

.textoPrincipal p {
    font-family: "Julius Sans One", sans-serif;
    margin-top: 1%;
    font-size: 3vh;
}

h1 {
    font-size: 5rem;
}

h1,
h1>span {
    font-family: "Julius Sans One", sans-serif;
}

h1 span {
    color: #E8C547;
}

.redesSociais img {
    width: 40px;
    transition: transform 0.3s;
}

.redesSociais {
    margin-top: 2.3%;
    margin-left: 6%;
    display: flex;
    gap: 30px;
}

.redesSociais img:hover {
    transform: scale(1.2);
}

/* RESPONSIVIDADE PARA TABLETS E TELAS MENORES */
@media (max-width: 768px) {
    nav {
        padding: 30px 40px;
    }

    ul {
        gap: 20px;
    }

    ul a {
        font-size: 0.9rem;
    }

    #faleConosco {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    h1 {
        font-size: 3rem;
        margin-bottom: 6%;
    }

    .textoPrincipal p {
        font-size: 2.5vh;
    }

    .textoPrincipal {
        margin-top: 8%;
    }

    .redesSociais {
        margin-top: 4%;
    }
}

/* RESPONSIVIDADE PARA 492PX - MENU HAMBÚRGUER */
@media (max-width: 492px) {
    header {
        height: 50%;
    }

    nav {
        padding: 30px 30px;
    }

    .menu-toggle {
        display: flex;
    }

    #logo {
        width: 35px;
    }

    ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: right 0.4s ease;
        padding: 20px;
    }

    ul.active {
        right: 0;
    }

    ul li {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
    }

    ul.active li {
        opacity: 1;
        transform: translateX(0);
    }

    ul.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    ul.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    ul.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    ul.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    ul.active li:nth-child(5) {
        transition-delay: 0.5s;
    }

    ul a {
        font-size: 1.5rem;
    }

    #faleConosco {
        padding: 12px 25px;
    }

    .overlay {
        padding-top: 100px;
    }

    .textoPrincipal {
        margin-left: 5%;
        margin-right: 5%;
        margin-top: 15%;
    }

    h1 {
        font-size: 1em;
    }

    .textoPrincipal p {
        font-size: 0.2vh;
        line-height: 1.6;
        margin-top: 5%;
        margin-bottom: 5%;
    }

    .redesSociais {
        margin-left: 5%;
        margin-top: 6%;
        gap: 30px;
    }

    .redesSociais img {
        width: 35px;
    }
}

/* MAIN */

main {
    background-color: #212429;
    font-family: "Kantumruy Pro", sans-serif;
}

hr {
    margin: 0 auto;
    border: none;
    width: 90%;
    height: 4px;
    background: linear-gradient(to right, #212429, #d4af37, #212429);
    border-radius: 100%;
}

.titulo {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    text-align: center;
}

.titulo p {
    color: #aaa;
    font-size: 1.1em;
    font-weight: 300;
}

.titulo>span {
    color: #d4af37;
    border: #d4af37 1px solid;
    border-radius: 25px;
    padding: 10px;
    font-size: 20px;
    font-weight: 500;
    box-shadow: 0 2px 15px rgba(109, 102, 8, 0.233);
}

h2 {
    margin-top: 20px;
    font-size: 35px;
}

/* SECTION: SOBRE NÓS */

.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 20px;
    padding: 30px 5%;
}

.fundoCasa {
    margin-left: 10%;
    position: relative;
    width: 350px;
    height: 250px;
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.quadradoInclinado {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #d4af37;
    transform: rotate(-6deg);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    z-index: 0;
}

.imagemCasa img {
    width: 360px;
    border-radius: 3%;
    margin-left: 69%;
}

.imagemCasa {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

#conteudo {
    background-color: #d4af37;
    position: relative;
    z-index: 3;
    bottom: 0;
    right: 30%;
    top: 50%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

#conteudo p {
    margin-left: 0;
    margin: 5%;
    text-align: left;
    padding: 4%;
    width: 200px;
    font-size: 15px;
    font-weight: 600;
}

#conteudo p span {
    font-size: 30px;
}

.ladoDireito h3 {
    margin-bottom: 4%;
    font-size: 30px;
}

#paragrafo1 strong {
    color: #d4af37;
}

#paragrafo1 {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 3%;
}

#paragrafo2 {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 3%;
}

#paragrafo3 {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 3%;
}

.metricas {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.metrica {
    background-color: #575656ce;
    text-align: center;
    padding: 15%;
    border-radius: 30px;
    margin-bottom: 5%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.metrica img {
    width: 60px;
    border-radius: 100%;
}

/* RESPONSIVIDADE SEÇÃO SOBRE - TABLETS */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        margin-left: 7%;
        padding: 10px 1%;
    }

    h2 {
        font-size: 25px;
    }

    .fundoCasa {
        grid-column: 1;
        grid-row: 2;
        margin: 0 auto;
        width: 300px;
        height: 220px;
        text-align: center;
        align-items: center;
        justify-content: center;
        padding-left: 10%;
    }

    .imagemCasa img {
        width: 310px;
    }

    .imagemCasa{
        margin-left: 10%;
    }

    #conteudo p {
        width: 180px;
        font-size: 14px;
    }

    .ladoDireito {
        grid-column: 1;
        grid-row: 3;
        padding: 0 30px;
        text-align: center;
        margin-top: 20%;
        margin-left: 0%;
    }

    .ladoDireito h3 {
        font-size: 26px;
    }

    #paragrafo1,
    #paragrafo2,
    #paragrafo3 {
        font-size: 16px;
        text-indent: 2%;
    }

    .metricas {
        grid-column: 1;
        grid-row: 4;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .metrica {
        padding: 12%;
    }
}


/* RESPONSIVIDADE SEÇÃO SOBRE - 492PX */
@media (max-width: 492px) {
    .container {
        grid-template-columns: 1fr;
        margin-left: 0%;
        padding: 5px 1%;
    }

    .titulo {
        padding: 30px 15px;
    }

    .titulo>span {
        font-size: 16px;
        padding: 8px 15px;
    }

    h2 {
        font-size: 24px;
        margin-top: 15px;
    }

    .titulo p {
        font-size: 0.95em;
    }

    .fundoCasa {
        width: 280px;
        height: 200px;
        margin: 0 auto;
    }

    .quadradoInclinado {
        transform: rotate(-4deg);
    }

    .imagemCasa img {
        width: 290px;
        margin-left: 50%;
    }

    #conteudo {
        right: 20%;
        top: 45%;
    }

    #conteudo p {
        width: 160px;
        font-size: 13px;
        padding: 3%;
    }

    #conteudo p span {
        font-size: 26px;
    }

    .ladoDireito {
        padding: 0 15px;
    }

    .ladoDireito h3 {
        font-size: 22px;
        margin-bottom: 6%;
    }

    #paragrafo1,
    #paragrafo2,
    #paragrafo3 {
        font-size: 15px;
        text-align: justify;
        margin-bottom: 4%;
    }

    .metricas {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-top: 15px;
    }

    .metrica {
        padding: 10%;
        border-radius: 20px;
    }

    .metrica img {
        width: 50px;
    }

    .metrica p {
        font-size: 14px;
        margin-top: 10px;
    }
}

/* RESPONSIVIDADE SEÇÃO SOBRE - 375PX */
@media (max-width: 375px) {
    .titulo>span {
        font-size: 14px;
        padding: 6px 12px;
    }

    h2 {
        font-size: 22px;
    }

    .titulo p {
        font-size: 0.9em;
    }

    .fundoCasa {
        width: 250px;
        height: 180px;
    }

    .imagemCasa img {
        width: 260px;
        margin-left: 45%;
    }

    #conteudo {
        right: 15%;
        top: 42%;
    }

    #conteudo p {
        width: 140px;
        font-size: 12px;
    }

    #conteudo p span {
        font-size: 24px;
    }

    .ladoDireito h3 {
        font-size: 20px;
    }

    #paragrafo1,
    #paragrafo2,
    #paragrafo3 {
        font-size: 14px;
    }

    .metricas {
        gap: 12px;
    }

    .metrica {
        padding: 8%;
    }

    .metrica img {
        width: 45px;
    }

    .metrica p {
        font-size: 13px;
    }
}


/* DEPOIMENTOS */

.seta {
    width: 70px;
    margin: 2%;
}

#setaEsquerda {
    transform: scaleX(-1);
}

.carrossel {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 5%;
}

.carrossel>div {
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: stretch;
    /* Para que ambos tenham a mesma altura */
    flex-wrap: wrap;
    /* Permite que os cards quebrem linha em telas menores */

}

.comentarios img {
    width: 45px;
    border-radius: 100%;
}

.comentarios {
    display: block;
    margin: 5px;
    flex: 1;
    min-width: 290px;
    max-width: 370px;
    border: #d4af37 2px solid;
    border-radius: 5px;
    padding: 3%;
}

.comentarios p {
    text-indent: 1%;
    margin-left: 10%;
    margin-right: 10%;
}

.divisor {
    margin: 5px auto;
    margin-top: 5%;
    margin-bottom: 5%;
    border: none;
    height: 1px;
    border-radius: 50%;
    background: linear-gradient(to right, #816816, #d4af37, #816816);
}

.autor {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-autor {
    display: flex;
    flex-direction: column;
}

.info-autor .nome {
    font-weight: bold;
}

.info-autor .cargo {
    font-size: 0.9em;
    color: #ffffffd3;
}


/* ===== ANIMAÇÕES DO CARROSSEL ===== */

/* Container dos depoimentos com overflow hidden para esconder elementos durante animação */
.carrossel>div {
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: stretch;
    flex-wrap: wrap;
    overflow: hidden;
    /* Esconde elementos que saem durante a animação */
    position: relative;
    /* Para as animações funcionarem corretamente */
}

/* Animação: sai deslizando para a esquerda e desaparece */
.slide-out-left {
    animation: slideOutLeft 0.3s ease-in-out forwards;
}

/* Animação: sai deslizando para a direita e desaparece */
.slide-out-right {
    animation: slideOutRight 0.3s ease-in-out forwards;
}

/* Animação: entra deslizando pela direita */
.slide-in-right {
    animation: slideInRight 0.3s ease-in-out forwards;
}

/* Animação: entra deslizando pela esquerda */
.slide-in-left {
    animation: slideInLeft 0.3s ease-in-out forwards;
}

/* Define a animação de saída para esquerda */
@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

/* Define a animação de saída para direita */
@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Define a animação de entrada pela direita */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Define a animação de entrada pela esquerda */
@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Adiciona transição suave ao hover nas setas */
.seta {
    width: 70px;
    margin: 2%;
    transition: transform 0.2s ease, opacity 0.2s ease;
    /* Transição suave no hover */
}

/* Efeito visual quando passa o mouse sobre as setas */
.seta:hover {
    transform: scale(1.1);
    /* Aumenta levemente a seta */
    opacity: 0.8;
    /* Deixa levemente transparente */
}

/* Ajuste específico para a seta esquerda manter a inversão no hover */
#setaEsquerda:hover {
    transform: scaleX(-1) scale(1.1);
    /* Mantém invertida e aumenta */
}

/* IMÓVEIS */

.cards {
    align-items: center;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.fundoCard {
    background: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.fundoCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(153, 141, 100, 0.3);
}

.imagemCard {
    position: relative;
}

.imagemCondominio {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.cards h3 {
    color: #d4af37;
    font-size: 1.2em;
    margin-bottom: 10px;
    padding: 3%;
    padding-bottom: 1%;
}

.infoCard .iconeLocalizacao {
    width: 20px;
    margin-left: 3%;
}

.infoCard span {
    color: #999;
    font-size: 1.1em;
    display: inline-block;
    margin-bottom: 15px;
}

.infoCard hr {
    margin: 0 auto;
    border: none;
    margin-bottom: 5%;
    height: 1px;
    background: linear-gradient(to right, #3a3939, #686868, #3a3939);
}

.infoEmpreendimento {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-left: 6%;
    margin-bottom: 20px;
}

.infoEmpreendimento img {
    width: 20px;
}

.infoEmpreendimento {
    color: #d4af37;
}

.saibaMais img,
#saibaMais img {
    width: 20px;
}

#saibaMais {
    text-align: center;
    font-size: 20px;
    margin: 3%;
}

.saibaMais {
    text-align: center;
    font-size: 20px;
    margin-bottom: 5%;
    font-weight: 600;
}

.saibaMais a {
    text-decoration: none;
    color: #fff;
}

.saibaMais:hover {
    transform: translateY(-3px);
}

#saibaMais:hover {
    transform: translateY(-3px);
}

.saibaMais p {
    text-align: center;
}

/*botão saiba mais*/
.outrosEmpreendimentos {
    display: none;
}

@media (max-width: 492px) {

    .imagemCard img {
        width: 100%;
    }
    .imoveis .titulo {
        padding: 30px 10px;
    }

    .imoveis .titulo>span {
        font-size: 12px;
        padding: 6px 10px;
    }

    .imoveis h2 {
        font-size: 20px;
        margin-top: 10px;
    }

    .imoveis .titulo p {
        font-size: 0.9em;
    }

    .cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
        margin-bottom: 25px;
        max-width: 40%;
        margin-left: 15%
    }

    .fundoCard {
        max-width: 80%;
    }

    .imagemCondominio {
        height: 200px;
    }

    .cards h3 {
        font-size: 1.1em;
        padding: 3.5%;
        padding-bottom: 1.5%;
    }

    .infoCard .iconeLocalizacao {
        width: 16px;
        margin-left: 3.5%;
    }

    .infoCard span {
        font-size: 0.95em;
        margin-bottom: 12px;
    }

    .infoCard hr {
        margin-bottom: 4%;
    }

    .infoEmpreendimento {
        gap: 14px;
        margin-left: 6%;
        margin-bottom: 15px;
        font-size: 14px;
    }

    .infoEmpreendimento img {
        width: 17px;
    }

    .saibaMais {
        font-size: 16px;
        margin-bottom: 4.5%;
        font-weight: 500;
    }

    .saibaMais img,
    #saibaMais img {
        width: 15px;
    }

    #saibaMais {
        font-size: 16px;
        margin: 3.5%;
    }
}



/* CONTATOS */

.contatos {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.container-contato {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
}

.formulario {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
}

.formulario h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #fff;
}

.formulario form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.formulario label {
    font-size: 14px;
    color: #ccc;
    display: block;
}

.formulario input,
.formulario textarea {
    width: 100%;
    padding: 10px 15px;
    background-color: #393939;
    border: 1px solid #4a4a4a;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
}

.formulario textarea {
    min-height: 120px;
    resize: vertical;
}

.formulario input::placeholder,
.formulario textarea::placeholder {
    color: #888888;
}

.formulario input:focus,
.formulario textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.informacoes img {
    width: 50px;
    padding: 3%;
}

.formulario button {
    width: 100%;
    padding: 14px;
    background-color: #d4af37;
    border: none;
    border-radius: 5px;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 20px;
}

.formulario button:hover {
    transform: translateY(-2px);
    background-color: #ebbf46;

}

.informacoes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.informacoesContatos {
    background-color: #2d2d2d;
    border-radius: 10px;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.informacoesContatos:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(197, 155, 15, 0.493);
}

.informacoesContatos a {
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 20px;
}

.informacoesContatos img {
    width: 60px;
}

.textoInformacoes h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.textoInformacoes:hover {
    color: #d4af37;
}

.textoInformacoes p {
    font-size: 14px;
    color: #ccc;
}

iframe {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 10px;
}

/* FOOTER */

footer {
    background-color: #2a2a2a;
    color: #e2e8f0;
    padding: 60px 40px 30px;
    margin-top: auto;
    margin-top: 0; 
    margin-bottom: 0;
}

.footer-bottom {
    padding-bottom: 0;
    margin-bottom: 0; 
}

.footer-copyright {
    margin: 0; 
    padding: 0;
}

footer * {
    margin-bottom: 0;
}


.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon img {
    width: 40px;
    border-radius: 6px;
    display: block;
}

.footer-logo-text {
    font-size: 30px;
    font-weight: normal;
    font-family: "Julius Sans One", sans-serif;
}

.footer-logo-text span {
    color: #eab308;
}

.footer-description {
    color: #cbd5e0;
    line-height: 1.6;
    font-size: 14px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h3 {
    color: #eab308;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: start;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: block;
}

.footer-links a:hover {
    color: #eab308;
}

.newsletter-text {
    color: #cbd5e0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 30px;
    text-align: center;
}

.footer-copyright {
    color: #a0aec0;
    font-size: 14px;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    footer {
        padding: 40px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}



/* ===== ANIMAÇÕES DE SCROLL ===== */

/* Animação suave de scroll */
html {
    scroll-behavior: smooth;
}

/* Estado inicial dos elementos antes de animar */
.animate-element {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Estado animado quando o elemento entra na viewport */
.animate-element.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Animação especial para títulos */
.titulo.animate-element {
    transform: translateY(30px) scale(0.95);
}

.titulo.animate-in {
    transform: translateY(0) scale(1);
}

/* Animação para cards da esquerda */
.fundoCasa.animate-element,
.formulario.animate-element {
    transform: translateX(-50px);
    opacity: 0;
}

.fundoCasa.animate-in,
.formulario.animate-in {
    transform: translateX(0);
    opacity: 1;
}

/* Animação para cards da direita */
.ladoDireito.animate-element,
.informacoes.animate-element {
    transform: translateX(50px);
    opacity: 0;
}

.ladoDireito.animate-in,
.informacoes.animate-in {
    transform: translateX(0);
    opacity: 1;
}

/* Animação especial para métricas */
.metrica.animate-element {
    transform: scale(0.8) translateY(30px);
    opacity: 0;
}

.metrica.animate-in {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Animação para cards de empreendimentos */
.fundoCard.animate-element {
    transform: translateY(50px) scale(0.95);
    opacity: 0;
}

.fundoCard.animate-in {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Animação para footer */
.footer-brand.animate-element,
.footer-section.animate-element {
    transform: translateY(30px);
    opacity: 0;
}

.footer-brand.animate-in,
.footer-section.animate-in {
    transform: translateY(0);
    opacity: 1;
}

/* Animação do header ao carregar a página */
@keyframes fadeInHeader {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in-header {
    animation: fadeInHeader 1.5s ease-out;
}

/* Transição suave na navegação */
nav {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Efeito de hover aprimorado para cards */
.fundoCard {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fundoCard:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Efeito de hover para informações de contato */
.informacoesContatos {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.informacoesContatos:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Efeito de hover para métricas */
.metrica {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.metrica:hover {
    transform: translateY(-5px) scale(1.05);
}

/* Animação suave para botões */
.formulario button,
#faleConosco,
#saibaMais {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Garante que o header não fique sobre o conteúdo */
header {
    position: relative;
    z-index: 2;
}

main {
    position: relative;
    z-index: 1;
}

/* Animação para elementos do carrossel */
.comentarios {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.comentarios:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Animação suave para HRs */
hr {
    transition: all 0.6s ease;
}

/* Fade in suave para imagens */
img {
    transition: opacity 0.3s ease;
}


/* Efeito de onda no hover dos links */
.footer-links a {
    position: relative;
    overflow: hidden;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background-color: #eab308;
    transition: left 0.3s ease;
}

.footer-links a:hover::before {
    left: 0;
}

/* Animação para inputs em foco */
.formulario input:focus,
.formulario textarea:focus {
    transform: scale(1.02);
    transition: all 0.3s ease;
}

/* Otimização de performance */
.animate-element,
.fundoCard,
.metrica,
.comentarios {
    will-change: transform, opacity;
}

/* Reduz animações em dispositivos com preferência por movimento reduzido */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .animate-element {
        opacity: 1;
        transform: none;
    }
}


/* CÓDIGO DE RESPONSIVIDADE */

/* Ajustes gerais para responsividade */
* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

@media (max-width: 1100px) {

    header {
        height: 95vh;
        position: relative;
        color: #fff;
    }

    #logo {
        width: 35px;
    }


    nav {
        padding: 25px 35px;
    }

    ul {
        gap: 25px;
        align-items: center;
        color: white;
    }

    ul a {
        font-weight: 400;
        font-size: 15px;
    }

    #faleConosco {
        padding: 7px 15px;
        font-weight: 500;
    }

    .textoPrincipal {
        margin-top: 2%;
        margin-left: 6%;
        padding: 3%;
    }

    .textoPrincipal p {
        font-size: 3vh;
    }

    h1 {
        font-size: 4.4rem;
    }

    .redesSociais img {
        width: 40px;
        transition: transform 0.3s;
    }

    .redesSociais {
        margin-top: 1%;
        margin-left: 9%;
        display: flex;
        gap: 35px;
    }

    /* MAIN */

    hr {
        height: 3px;
    }

    .titulo {
        padding: 50px 25px;
    }

    .titulo p {
        font-size: 0.9em;
    }

    .titulo>span {
        padding: 10px;
        font-size: 15px;
    }

    h2 {
        margin-top: 15px;
        font-size: 25px;
    }

    /* SECTION: SOBRE NÓS */

    .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 25px 3%;
    }

    .fundoCasa {
        margin-left: 10%;
        width: 320px;
        height: 200px;
    }

    .imagemCasa img {
        width: 300px;
        border-radius: 3%;
        margin-left: 55%;
    }

    .quadradoInclinado {
        transform: rotate(-7deg);
    }

    #conteudo p {
        width: 160px;
        font-size: 14px;
        font-weight: 500;
    }

    #conteudo p span {
        font-size: 27px;
    }

    .ladoDireito h3 {
        margin-bottom: 4%;
        font-size: 24px;
    }

    #paragrafo1 {
        font-weight: 400;
        font-size: 16px;
        margin-bottom: 3%;
    }

    #paragrafo2 {
        font-weight: 400;
        font-size: 16px;
        margin-bottom: 3%;
    }

    #paragrafo3 {
        font-weight: 400;
        font-size: 16px;
        margin-bottom: 3%;
    }

    .metricas {
        gap: 25px;
    }

    .metrica img {
        width: 50px;
        border-radius: 100%;
    }

    /* DEPOIMENTOS */

    .seta {
        width: 45px;
        margin: 2%;
    }

    .carrossel>div {
        gap: 20px;
    }

    .comentarios img {
        width: 35px;
    }

    .comentarios {
        margin: 4px;
        min-width: 250px;
        max-width: 350px;
    }

    .comentarios p {
        font-size: 14px;
    }

    .info-autor .cargo {
        font-size: 0.8em;
    }

    /* IMÓVEIS */

    .cards {
        gap: 10px;
        margin-bottom: 40px;
        max-width: 1000px;
    }

    .fundoCard:hover {
        transform: translateY(-4px);
        box-shadow: 0 5px 25px rgba(100, 94, 74, 0.3);
    }

    .imagemCondominio {
        width: 100%;
        height: 200px;
    }

    .cards h3 {
        color: #d4af37;
        font-size: 1.1em;
        margin-bottom: 7px;
    }

    .infoCard .iconeLocalizacao {
        width: 10px;
    }

    .infoCard span {
        font-size: 1em;
    }

    .saibaMais {
        font-size: 17px;
        margin-bottom: 5.5%;
        font-weight: 500;
    }

    /* CONTATOS */

    .contatos {
        max-width: 900px;
        padding: 50px 15px;
    }

    .container-contato {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 70px;
    }

    .formulario h2 {
        font-size: 20px;
        text-align: center;
        margin-bottom: 27px;
    }

    .formulario form {
        gap: 10px;
    }

    .formulario label {
        font-size: 12px;
    }

    .formulario input,
    .formulario textarea {
        width: 100%;
        padding: 10px 15px;
        border-radius: 7px;
        font-size: 12px;
    }

    .formulario textarea {
        min-height: 100px;
    }

    .formulario button {
        width: 100%;
        padding: 10px;
        border-radius: 10px;
        color: #1a1a1a;
        font-size: 16px;
        font-weight: 600;
        margin-top: 15px;
    }

    .informacoesContatos img {
        width: 60px;
    }

    /* FOOTER */

    footer {
        padding: 50px 40px 30px;
    }

    .footer-logo-icon img {
        width: 30px;
    }

    .footer-logo-text {
        font-size: 19px;
    }
}

@media (max-width: 910px) {

    /* SECTION: SOBRE NÓS */

    .container {
        gap: 10px;
        padding: 25px 3%;
    }

    .fundoCasa {
        margin-left: 4%;
        width: 280px;
        height: 200px;
    }

    .imagemCasa img {
        width: 280px;
        border-radius: 3%;
        margin-left: 60%;
    }

    .quadradoInclinado {
        transform: rotate(-7deg);
    }

    #conteudo p {
        width: 160px;
        font-size: 14px;
        font-weight: 500;
    }

    #conteudo p span {
        font-size: 27px;
    }

    .ladoDireito h3 {
        margin-bottom: 4%;
        font-size: 24px;
    }

    #paragrafo1 {
        font-weight: 400;
        font-size: 14px;
        margin-bottom: 3%;
    }

    #paragrafo2 {
        font-weight: 400;
        font-size: 14px;
        margin-bottom: 3%;
    }

    #paragrafo3 {
        font-weight: 400;
        font-size: 14px;
        margin-bottom: 3%;
    }

    .metricas {
        gap: 25px;
    }

    .metrica img {
        width: 50px;
        border-radius: 100%;
    }

    /* IMÓVEIS */

    .cards {
        gap: 10px;
        margin-bottom: 40px;
        max-width: 700px;
    }

    /* CONTATOS */

    .contatos {
        max-width: 800px;
        padding: 50px 15px;
    }
}

@media (max-width: 768px) {
    header {
        height: 77vh;
    }

    #logo {
        width: 30px;
    }


    nav {
        padding: 15px 25px;
    }

    ul {
        gap: 20px;
    }

    ul a {
        font-weight: 400;
        font-size: 12.5px;
    }

    #faleConosco {
        padding: 6px 12px;
        font-weight: 350;
    }

    .textoPrincipal {
        margin-top: 1%;
        margin-left: 6%;
        padding: 3%;
    }

    .textoPrincipal p {
        font-size: 2.5vh;
    }

    h1 {
        font-size: 3.8rem;
    }

    .redesSociais img {
        width: 34px;
    }

    .redesSociais {
        margin-top: 0.5%;
        margin-left: 9%;
        gap: 35px;
    }

    /* MAIN */

    hr {
        height: 3px;
    }

    .titulo {
        padding: 50px 25px;
    }

    .titulo p {
        font-size: 0.9em;
    }

    .titulo>span {
        padding: 10px;
        font-size: 15px;
    }

    h2 {
        margin-top: 15px;
        font-size: 25px;
    }

    /* SECTION: SOBRE NÓS */

    .container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 23px 3%;
    }

    .fundoCasa {
        margin-left: 6%;
        margin-top: 10%;
        width: 270px;
        height: 190px;
    }

    .imagemCasa img {
        width: 260px;
        border-radius: 3%;
        margin-left: 60%;
    }

    .quadradoInclinado {
        transform: rotate(-8deg);
    }

    #conteudo p {
        width: 130px;
        font-size: 10px;
        font-weight: 460;
    }

    #conteudo p span {
        font-size: 20px;
    }

    #conteudo {
        right: 38%;
    }

    .ladoDireito h3 {
        margin-bottom: 4%;
        font-size: 17px;
    }

    #paragrafo1 {
        font-weight: 400;
        font-size: 13px;
        margin-bottom: 3%;
    }

    #paragrafo2 {
        font-weight: 400;
        font-size: 13px;
        margin-bottom: 3%;
    }

    #paragrafo3 {
        font-weight: 400;
        font-size: 13px;
        margin-bottom: 3%;
    }

    .metricas {
        gap: 10px;
        font-size: 12px;
    }

    .metrica img {
        width: 40px;
        border-radius: 100%;
    }

    /* DEPOIMENTOS */

    .seta {
        width: 40px;
        margin: 2%;
    }

    .carrossel>div {
        gap: 15px;
    }

    .comentarios img {
        width: 30px;
    }

    .comentarios {
        margin: 4px;
        min-width: 210px;
        max-width: 320px;
    }

    .comentarios p {
        font-size: 13px;
    }

    .info-autor .cargo {
        font-size: 0.7em;
    }

    /* IMÓVEIS */

    .cards {
        gap: 10px;
        margin-bottom: 40px;
        max-width: 700px;
    }

    .imagemCondominio {
        width: 100%;
        height: 200px;
    }

    .cards h3 {
        color: #d4af37;
        font-size: 1em;
        margin-bottom: 7px;
    }

    .infoCard .iconeLocalizacao {
        width: 10px;
    }

    .infoCard span {
        font-size: 0.9em;
    }

    .saibaMais {
        font-size: 15px;
        margin-bottom: 5.2%;
        font-weight: 350;
    }

    /* CONTATOS */

    .contatos {
        display: grid;
        grid-template-columns: 1fr;
        max-width: 800px;
        padding: 5px 10px;
    }

    .container-contato {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .formulario h2 {
        font-size: 18px;
        text-align: center;
        margin-bottom: 27px;
    }

    .formulario form {
        gap: 10px;
    }

    .formulario label {
        font-size: 12px;
    }

    .formulario input,
    .formulario textarea {
        width: 100%;
        padding: 10px 15px;
        border-radius: 7px;
        font-size: 12px;
    }

    .formulario textarea {
        min-height: 100px;
    }

    .formulario button {
        width: 100%;
        padding: 10px;
        border-radius: 10px;
        color: #1a1a1a;
        font-size: 16px;
        font-weight: 600;
        margin-top: 15px;
    }

    .informacoesContatos img {
        width: 40px;
    }

    /* FOOTER */

    footer {
        padding: 50px 40px 30px;
    }

    .footer-logo-icon img {
        width: 30px;
    }

    .footer-logo-text {
        font-size: 19px;
    }
}

@media (max-width: 768px) {

    .contatos h2 {
        font-size: 20px;
        margin-top: 12px;
    }

    .contatos .titulo p {
        font-size: 0.9em;
    }

    .container-contato {
        gap: 3px;
        max-width: 80%;
        margin-left: 10%;
    }

    .formulario {
        padding: 25px 20px;
        border-radius: 8px;
    }

    .formulario h2 {
        font-size: 22px;
        margin-bottom: 22px;
    }

    .formulario form {
        gap: 12px;
    }

    .formulario label {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .formulario input,
    .formulario textarea {
        padding: 11px 13px;
        font-size: 14px;
        border-radius: 6px;
    }

    .formulario textarea {
        min-height: 110px;
    }

    .formulario button {
        padding: 13px;
        font-size: 15px;
        margin-top: 18px;
        border-radius: 6px;
    }

    .informacoes {
        gap: 16px;
    }

    .informacoesContatos {
        padding: 15px;
        border-radius: 8px;
    }

    .informacoesContatos a {
        gap: 15px;
    }

    .informacoesContatos img {
        width: 50px;
    }

    .textoInformacoes h3 {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .textoInformacoes p {
        font-size: 13px;
    }

    #mapa iframe {
        height: 220px;
        border-radius: 8px;
    }
}

/* Smartphones médios (até 492px) */
@media (max-width: 492px) {
    .contatos {
        padding: 30px 12px;
        max-width: 100%;
    }

    .contatos .titulo {
        padding: 25px 10px;
    }

    .contatos .titulo>span {
        font-size: 12px;
        padding: 6px 12px;
    }

    .contatos h2 {
        font-size: 20px;
        margin-top: 10px;
    }

    .contatos .titulo p {
        font-size: 0.88em;
        margin-top: 8px;
    }

    .container-contato {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .formulario {
        padding: 20px 16px;
        border-radius: 8px;
        max-width: 100%;
    }

    .formulario h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .formulario form {
        gap: 10px;
    }

    .formulario label {
        font-size: 12px;
        margin-bottom: 3px;
    }

    .formulario input,
    .formulario textarea {
        padding: 10px 12px;
        font-size: 13px;
        border-radius: 5px;
    }

    .formulario input::placeholder,
    .formulario textarea::placeholder {
        font-size: 12px;
    }

    .formulario textarea {
        min-height: 100px;
    }

    .formulario button {
        padding: 12px;
        font-size: 14px;
        margin-top: 15px;
        border-radius: 5px;
    }

    .informacoes {
        gap: 14px;
        max-width: 100%;
    }

    .informacoesContatos {
        padding: 13px;
        border-radius: 8px;
    }

    .informacoesContatos a {
        gap: 12px;
        flex-direction: row;
    }

    .informacoesContatos img {
        width: 45px;
        flex-shrink: 0;
    }

    .textoInformacoes {
        flex: 1;
    }

    .textoInformacoes h3 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .textoInformacoes p {
        font-size: 12px;
        line-height: 1.5;
    }

    #mapa iframe {
        height: 200px;
        border-radius: 8px;
    }
}

/* Smartphones pequenos (até 375px) */
@media (max-width: 375px) {
    .contatos {
        padding: 25px 10px;
    }

    .contatos .titulo {
        padding: 20px 8px;
    }

    .contatos .titulo>span {
        font-size: 11px;
        padding: 5px 10px;
    }

    .contatos h2 {
        font-size: 18px;
        margin-top: 8px;
    }

    .contatos .titulo p {
        font-size: 0.85em;
    }

    .container-contato {
        gap: 25px;
    }

    .formulario {
        padding: 18px 14px;
        border-radius: 7px;
    }

    .formulario h2 {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .formulario form {
        gap: 9px;
    }

    .formulario label {
        font-size: 11px;
    }

    .formulario input,
    .formulario textarea {
        padding: 9px 11px;
        font-size: 12px;
    }

    .formulario input::placeholder,
    .formulario textarea::placeholder {
        font-size: 11px;
    }

    .formulario textarea {
        min-height: 90px;
    }

    .formulario button {
        padding: 11px;
        font-size: 13px;
        margin-top: 12px;
    }

    .informacoes {
        gap: 12px;
    }

    .informacoesContatos {
        padding: 12px;
        border-radius: 7px;
    }

    .informacoesContatos a {
        gap: 10px;
    }

    .informacoesContatos img {
        width: 40px;
    }

    .textoInformacoes h3 {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .textoInformacoes p {
        font-size: 11px;
    }

    #mapa iframe {
        height: 180px;
        border-radius: 7px;
    }
}
