@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;
  background-color: #212429;
}

/* HEADER */

header {
  background-image: url(/src/imagens/fundo.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 85vh;
  position: relative;
  color: #fff;
  border-radius: 40px;
  margin: 3.5%;
  margin-top: 6%;
  margin-bottom: 0;
}

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

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

nav {
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 85%;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  padding: 20px 50px;
  position: fixed;
  top: 0;
  left: 7.5%;
  z-index: 1000;
  background-color: transparent;
  transition: background-color 0.3s ease, padding 0.3s ease;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 450;
  color: white;
}

#new {
  color: #d4af37;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
  color: white;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

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

.nav-links a:hover {
  color: #f5c400;
}

.nav-button {
  display: flex;
  align-items: center;
}

#faleConosco {
  text-decoration: none;
  color: white;
  background-color: #d4af37;
  padding: 10px 20px;
  border-radius: 15px;
  font-weight: 500;
  transition: color 0.3s;
}

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

/* 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);
}

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

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

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

h1 {
  font-size: 5rem;
}

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

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

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

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

/* MAIN */

main {
  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: 50px 20px;
  grid-column: 1 / 3;
  grid-row: 1 / 2;
  text-align: center;
}

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

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

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

/* SECTION: SOBRE NÓS */

.container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 10px;
  padding: 40px 7%;
  padding-top: 0;
}

.videoContainer {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  display: flex;
  align-items: flex-start;
}

.videoContainer video {
  width: 50%;
  border-radius: 3%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin-left: 20%;
}

.ladoDireito {
  margin-right: 10%;
}

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

#paragrafo1 strong {
  color: #d4af37;
}

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

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

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

.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: 50px;
  border-radius: 100%;
}

/* 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 */
/* Seção de Filtros */
.filtros-container {
  background: #2a2a2a;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5%;
}

.filtros-titulo {
  color: #d4af37;
  font-size: 1.5em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.filtros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.filtro-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filtro-item label {
  color: #999;
  font-size: 0.9em;
  font-weight: 600;
}

.filtro-item select {
  background: #1a1a1a;
  border: 1px solid #444;
  border-radius: 5px;
  color: #fff;
  padding: 10px;
  font-size: 1em;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.filtro-item select:hover {
  border-color: #d4af37;
}

.filtro-item select:focus {
  outline: none;
  border-color: #d4af37;
}

.filtros-acoes {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 20px;
}

.btn {
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-aplicar {
  background: #d4af37;
  color: #1a1a1a;
}

.btn-aplicar:hover {
  background: #c49d2f;
  transform: translateY(-2px);
}

.btn-limpar {
  background: transparent;
  color: #999;
  border: 1px solid #444;
}

.btn-limpar:hover {
  border-color: #d4af37;
  color: #d4af37;
}

.resultados-info {
  text-align: center;
  color: #999;
  margin-bottom: 30px;
  font-size: 1.1em;
}

.resultados-info span {
  color: #d4af37;
  font-weight: 600;
}

.cards {
  align-items: center;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  margin-bottom: 50px;
  max-width: 1100px;
  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;
}

#condominioStartCostaDourada2 {
  font-size: 19px;
}

.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: 0.9em;
  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;
}

/* 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 label {
  margin-top: 3%;
  margin-bottom: 2%;
  font-size: 16px;
  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;
}

/* CONSTRUTORAS */
.construtoras {
  position: relative;
  padding: 4.5%;
  background-color: #212429;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.slide {
  display: flex;
  gap: 70px;
  min-width: 100%;
  flex-shrink: 0;
  animation: deslizar 40s linear infinite;
}

.slide img {
  margin-left: 1px;
  margin-right: 1px;
  height: 60px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.slide img:hover {
  transform: scale(1.1);
}

@keyframes deslizar {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.construtoras::before,
.construtoras::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}

.construtoras::before {
  left: 0;
  background: linear-gradient(to right, #212429, transparent);
}

.construtoras::after {
  right: 0;
  background: linear-gradient(to left, #212429, transparent);
}

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

/* ===== 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;
  }
}

/*? RESPONSIVIDADE  */

@media screen and (max-width: 1024px) {
  /* NAV */

  nav {
    width: 90%;
    padding: 25px 55px;
    left: 5%;
  }

  .logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 18px;
    font-weight: 450;
    color: white;
  }

  .nav-links {
    gap: 18px;
  }

  /* HEADER */
  header {
    height: 40vh;
    margin-top: 10%;
  }

  #logo {
    width: 45px;
  }

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

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

  .redesSociais {
    margin-top: 3%;
    gap: 60px;
  }

  /* SECTION: SOBRE NÓS */
  .videoContainer video {
    width: 72%;
    border-radius: 3%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-left: 20%;
  }
  /* FILTRO */
  .filtros-container {
    padding: 20px;
    max-width: 90%;
  }

  .filtros-titulo {
    font-size: 1.4em;
    justify-content: center;
  }

  .filtros-grid {
    gap: 15px;
  }

  .filtros-acoes {
    justify-content: center;
  }

  /* IMÓVEIS */
  .cards {
    gap: 35px;
    max-width: 800px;
  }

  /* CONTATOS */
  .contatos {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
  }
}

@media screen and (max-width: 992px) {
  * {
    box-sizing: border-box;
  }

  body {
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    padding: 20px 30px;
    width: 98%;
    left: 1%;
  }

  .nav-links {
    gap: 20px;
  }

  #logo {
    width: 30px;
  }

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

  /* HEADER */

  .textoPrincipal {
    padding: 0 30px;
    margin-top: 1%;
  }

  .textoPrincipal p {
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 600;
  }

  .redesSociais {
    gap: 30px;
    margin-top: 3%;
    margin-left: 10%;
  }

  .redesSociais img {
    width: 35px;
  }

  header {
    margin-top: 10%;
    height: 30vh;
  }

  /* MAIN */

  h2 {
    margin-top: 3%;
  }

  .titulo p {
    margin-top: 1%;
    color: #aaa;
    font-weight: 500;
  }

  .titulo > span {
    border: #d4af37 1.7px solid;
    font-weight: 600;
  }

  /* SECTION: SOBRE NÓS */
  .videoContainer video {
    width: 60%;
  }

  .ladoDireito h3 {
    margin-bottom: 0%;
    font-size: 20px;
  }

  #paragrafo1 {
    font-weight: 450;
    font-size: 15px;
    margin-top: 5%;
  }

  #paragrafo2 {
    font-weight: 450;
    font-size: 15px;
    margin-bottom: 3%;
    margin-top: 4%;
  }

  #paragrafo3 {
    font-weight: 450;
    font-size: 15px;
    margin-bottom: 3%;
    margin-top: 5%;
  }

  .metricas {
    gap: 9px;
    margin-top: 20px;
  }

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

  /* DEPOIMENTOS */

  .carrossel > div {
    margin-left: 14%;
  }

  .comentarios img {
    width: 40px;
    margin: 2%;
  }

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

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

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

  /* FILTRO */
  .filtros-container {
    padding: 20px;
  }

  .filtros-titulo {
    font-size: 1.3em;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.95em;
  }
  /* IMÓVEIS */

  .cards {
    width: 85%;
    gap: 25px;
  }

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

  /* CONTATO */
  .contatos {
    padding: 60px 40px;
    font-weight: 500;
  }

  .cards h3 {
    font-size: 1.2em;
    margin-left: 2%;
  }

  .infoEmpreendimento img {
    margin-left: 2.5%;
  }

  .container-contato {
    display: grid;
    gap: 40px;
  }

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

  .saibaMais {
    margin-left: 4%;
  }

  /* CONTATOS */

  .formulario label {
    margin: 3%;
  }

  .formulario button {
    margin-top: 15%;
  }
}

@media screen and (max-width: 768px) {
  nav {
    padding: 15px 20px;
    border-radius: 25px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(33, 36, 41, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
  }

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

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

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

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

  .nav-links a {
    font-size: 24px;
  }

  .nav-button {
    display: none;
  }

  /* Adiciona o botão Fale Conosco dentro do menu mobile */
  .nav-links::after {
    content: "Fale Conosco";
    display: block;
    color: white;
    background-color: #d4af37;
    padding: 15px 30px;
    border-radius: 15px;
    font-weight: 500;
    text-decoration: none;
    font-size: 18px;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.5s;
  }

  .nav-links.active::after {
    opacity: 1;
    transform: translateY(0);
  }

  /* SECTION: SOBRE NÓS */
  .videoContainer video {
    width: 70%;
  }
  /* FILTRO */
  .filtros-grid {
    grid-template-columns: 1fr 1fr;
  }

  .filtros-acoes {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .btn {
    width: 100%;
  }

  .filtros-titulo {
    text-align: center;
    font-size: 1.2em;
  }
}

@media screen and (max-width: 480px) {
  /* NAV */
  nav {
    width: 90%;
    left: 5%;
    padding: 15px 15px;
  }

  #logo {
    width: 30px;
    height: 30px;
  }

  .menu-toggle span {
    width: 25px;
  }

  .nav-links a {
    font-size: 20px;
  }

  /* HEADER */
  header {
    margin-top: 18%;
  }

  .textoPrincipal {
    margin-top: 3%;
    margin-left: 4%;
  }

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

  .redesSociais img {
    margin-top: 5%;
    width: 20px;
    margin-left: 35%;
  }

  /* MAIN */

  .titulo {
    margin-top: 0;
  }

  .titulo > span {
    font-size: 0.7em;
  }

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

  h2 {
    font-size: 17px;
    margin: 4%;
    margin-bottom: 0;
  }

  /* SECTION: SOBRE NÓS */

  .videoContainer video {
    margin-left: 3%;
    width: 90%;
  }

  .ladoDireito h3 {
    text-align: center;
    font-size: 11px;
  }

  #paragrafo1 {
    text-align: center;
    font-weight: 400;
    font-size: 9px;
    margin-bottom: 2%;
  }

  #paragrafo2 {
    text-align: center;
    font-weight: 400;
    font-size: 9px;
    margin-bottom: 2%;
  }

  #paragrafo3 {
    text-align: center;
    font-weight: 400;
    font-size: 9px;
    margin-bottom: 2%;
  }

  .metricas {
    font-size: 10px;
    font-weight: 400;
  }

  .metrica img {
    width: 23px;
    margin: 8%;
  }

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

  /* DEPOIMENTOS */

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

  .carrossel > div {
    gap: 15px;
    margin-left: 2%;
    padding: 1%;
  }

  .comentarios img {
    width: 28px;
    margin: 0;
  }

  .comentarios {
    margin: 0;
    min-width: 190px;
    max-width: 250px;
    padding: 4%;
  }

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

  .autor {
    font-size: 15px;
  }
  /* FILTRO */
  .filtros-container {
    padding: 18px;
    border-radius: 8px;
  }

  .filtros-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .filtro-item label {
    font-size: 0.85em;
  }

  .filtro-item select {
    font-size: 0.9em;
    padding: 8px;
  }

  .btn {
    font-size: 0.9em;
  }

  .filtros-acoes {
    flex-direction: column;
    gap: 12px;
  }

  /* IMÓVEIS */

  .cards {
    width: 50%;
    margin-left: 15%;
  }

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

  /* CONTATOS */

  .contatos {
    padding: 10px 50px;
  }

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

  .formulario {
    padding: 20px;
  }

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

  .formulario input,
  .formulario textarea {
    font-size: 14px;
    padding: 10px;
  }

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

  .formulario button {
    margin-top: 5%;
    padding: 10px;
    font-size: 16px;
  }

  .informacoesContatos {
    padding: 12px;
  }

  .informacoesContatos a {
    gap: 15px;
  }

  .informacoesContatos img {
    width: 50px;
  }

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

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

  #mapa iframe {
    height: 160px;
    margin-bottom: 4%;
  }

  /* FOOTER */

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

  .footer-content {
    gap: 50px;
    margin-bottom: 40px;
  }

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

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

  .footer-description {
    line-height: 1.4;
    font-size: 13px;
  }
}
