
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f7f7f7;
  color: #333;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
header {
  background: #fff;
  padding: 20px 0;
}
.logo {
  float: left;
  font-size: 24px;
  font-weight: bold;
  color: #333;
}
nav {
  float: right;
}
nav a {
  margin-left: 20px;
  color: #555;
  text-decoration: none;
}
nav a:hover {
  color: #000;
}
.banner {
  background: url('../imagens/banner.jpg') center center no-repeat;
  background-size: cover;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  text-shadow: 1px 1px 4px #000;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.banner h2 {
  font-size: 36px;
}
.banner p {
  font-size: 18px;
}
.banner-conteudo {
  text-align: center;
}
.destaques {
  background: #fff;
  padding: 40px 0;
}
.destaques h2 {
  text-align: center;
  margin-bottom: 30px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 0 20px;
}
.card {
  background: #f1f1f1;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
}
.card img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.card h3 {
  margin: 10px 0;
}
.card ul {
  list-style: none;
  text-align: left;
  margin: 10px 0;
}
.card ul li {
  margin-bottom: 5px;
}
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #007BFF;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}
.btn:hover {
  background: #0056b3;
}
.noticias {
  background: #fff;
  padding: 40px 20px;
  text-align: center;
}
.noticias h2 {
  margin-bottom: 20px;
}
.noticias ul {
  list-style: none;
}
.noticias li {
  margin: 10px 0;
}
.noticias a {
  color: #007BFF;
  text-decoration: none;
}
.noticias a:hover {
  text-decoration: underline;
}
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .logo, nav {
    float: none;
    text-align: center;
  }
  nav a {
    display: inline-block;
    margin: 10px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');

body {
  font-family: 'Open Sans', sans-serif;
}

.topo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  background: transparent;
  border: none;       /* Certifique-se disso */
  box-shadow: none;   /* Se tiver, remova */
}

.logo img {
  height: 60px;
}

.menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.menu ul li a {
  color: white;
  font-weight: 400;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 16px;
  display: inline-block;
}

.menu ul li a:hover {
  background-color: #00b2a9;
  border-radius: 3px;
  font-weight: 600;
}


.menu ul li.ativo a {
  background-color: #00b2a9;
  border-radius: 3px;
  font-weight: 600;
}

.barra-pesquisa {
  background: white;
  border-radius: 6px;
  padding: 10px 20px;
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 30px;
  display: flex;
  gap: 10px;
  overflow-x: auto;        /* Para evitar quebra e permitir rolagem */
  white-space: nowrap;     /* Impede quebra de linha */
  align-items: center;
}

.barra-pesquisa form {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;       /* Impede quebra dentro do formulário */
  align-items: center;
}

.barra-pesquisa select {
  padding: 12px 15px;
  border: none;
  background: #f2f4f6;
  border-radius: 4px;
  font-size: 14px;
  min-width: 180px;
}

.btn-buscar {
  background-color: #00b2a9;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}


.btn-buscar:hover {
  background-color: #008d84;
}


.destaques-home {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}
.destaques-home h2 {
  color: #00b2a9;
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 600;
}
.card-imovel {
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  border-radius: 6px;
  overflow: hidden;
  max-width: 600px;
  margin: auto;
}
.img-wrapper {
  position: relative;
  width: 100%;
  height: 300px; /* altura padrão */
  overflow: hidden;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.etiqueta-destaque {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #00b2a9;
  color: white;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 3px;
}
.info-wrapper {
  padding: 20px;
}
.info-wrapper h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.info-wrapper p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}
.caracteristicas {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin: 10px 0;
  padding: 0;
  list-style: none;
}
.caracteristicas li {
  display: flex;
  align-items: center;
  gap: 5px;
}
.preco {
  font-size: 1.6rem; /* aumenta o tamanho da fonte */
  font-weight: bold;
  color: #00b2a9; /* verde do site */
  margin-top: 10px;
  display: block;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}
.custom-arrow {
  width: 52px;
  height: 48px;
  border-radius: 26px; /* valor arredondado proporcional à altura */
  background-color: #fff;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.custom-arrow:hover {
  background-color: #00b2a9;
  color: #fff;
  width: 56px;
  height: 52px;
  border-radius: 28px;
}


.swiper-button-next,
.swiper-button-prev {
  top: 45%;
  width: auto;
  height: auto;
}
