:root {
  --primary: #222;
  --secondary: #333;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("/assets/img/banner.webp");
  color: white;
  text-align: center;
  padding: 4rem 1rem;
}

.cta {
  background: var(--secondary);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
}

/* Otimizações para mobile */
@media (max-width: 768px) {
  .imoveis-grid {
    grid-template-columns: 1fr;
  }
}
/* Header Styles */
.header {
  background: white;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
  position: sticky;
  top: 0;
  border-bottom: 1px solid #ddd;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.mobile-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #333;
  transition: all 0.3s ease-in-out;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--secondary);
}

.nav-contato {
  text-align: right;
  font-weight: 600;
}

.mobile-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

/* Footer Styles */

/* Mobile */
@media (max-width: 768px) {
  .nav-container {
    flex-wrap: wrap;
  }

  .mobile-menu {
    display: block;
    order: 1;
  }

  .logo {
    order: 2;
    flex-grow: 1;
    text-align: center;
  }

  .nav-links {
    display: none;
    width: 100%;
    order: 4;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
  }

  .nav-contato {
    display: none;
    width: 100%;
    order: 3;
  }

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

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

  .mobile-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .nav-contato {
    display: none;
  }
}

/* Estilos gerais */
.vantagens,
.destaques {
  padding: 4rem 2rem;
  background-color: #f8f8f8;
}

h2 {
  font-size: 2.5rem;
  color: #333;
  text-align: center;
  margin-bottom: 2rem;
}

/* Estilos para a seção de Vantagens */
.vantagens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.vantagem {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.vantagem:hover {
  transform: translateY(-5px);
}

.vantagem h3 {
  font-size: 1.25rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.vantagem p {
  font-size: 1rem;
  color: #555;
}

/* Estilos para a seção de Destaques */
.imoveis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.imovel {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.imovel:hover {
  transform: translateY(-5px);
}

.imovel img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.imovel h3 {
  font-size: 1.25rem;
  color: #2c3e50;
  margin: 1rem;
}

.imovel p {
  font-size: 1rem;
  color: #555;
  margin: 0 1rem 1rem;
}

.imovel .preco {
  font-size: 1.25rem;
  font-weight: bold;
  color: #27ae60;
  margin: 0 1rem 1rem;
}

.imovel .cta {
  display: block;
  background-color: #3498db;
  color: #fff;
  text-align: center;
  padding: 0.75rem;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.imovel .cta:hover {
  background-color: #2980b9;
}

/* Responsividade */
@media (max-width: 768px) {
  .vantagens-grid,
  .imoveis-grid {
    grid-template-columns: 1fr;
  }
}
/* Mobile menu */

.mobile-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #333;
  transition: all 0.3s ease-in-out;
}
.nav-contato-mobile {
  display: none;
}

@media (max-width: 768px) {
  /* .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
  } */
  .mobile-menu {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }
  .nav-contato {
    display: none;
  }

  .nav-contato-mobile {
    display: block;
    margin-top: 1rem;
    text-align: center;
  }

  .nav-contato-mobile span {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .nav-contato-mobile a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
  }
  .mobile-menu.active span:nth-child(2) {
    opacity: 0;
  }

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

  .mobile-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-contato {
    display: none;
  }
}
ul {
  display: block;
  list-style-type: disc;
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0px;
  unicode-bidi: isolate;
}
body {
  display: block;
  margin: 0px;
}
