:root {
  --fundo-branco: #ffffff;
  --texto-bronze: #4B3A2F;
  --bronze-claro: #7A5C45;
  --fonte-padrao: 'Playfair Display', serif;
  --dourado: #b08d57;
}

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Tema */
body {
  background-color: var(--fundo-branco);
  color: var(--texto-bronze);
  font-family: var(--fonte-padrao);
  line-height: 1.6;
}

/* Cabeçalho */
.site-header {
  background-color: var(--fundo-branco);
  padding: 20px;
  border-bottom: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-area img {
  max-width: 170px;
  height: auto;
}

/* Navegação */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.main-nav a {
  text-decoration: none;
  color: var(--texto-bronze);
  font-weight: bold;
}

/* Ícones sociais */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.social-icons .icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.social-icons .icon:hover {
  transform: scale(1.1);
}

/* Hero */
.hero img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .hero img {
    max-height: 400px;
  }
}

/* Seções */
.imoveis-section, .destaques-section {
  padding: 40px 20px;
}

.destaques-section {
  text-align: center;
}

/* Slider */
.slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
}

.slide img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--dourado);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 24px;
  border-radius: 50%;
}

.prev { left: 10px; }
.next { right: 10px; }

.imoveis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.imovel {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.imovel img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.imovel h3, .imovel p {
  margin: 10px;
}

.imovel:hover {
  transform: translateY(-5px);
}

.imovel:hover img {
  transform: scale(1.1);
  filter: brightness(70%);
}

.imovel::after {
  content: "Ver mais";
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.9);
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.imovel:hover::after {
  opacity: 1;
}
/* Container dos imóveis */

/* Títulos */
.titulo-dourado-centralizado {
  text-align: center;
  color: var(--dourado);
  font-size: 2rem;
  margin: 40px 0 20px;
  font-family: 'Playfair Display', serif;
}

/* CTA */
.cta-banner {
  background-color: var(--bronze-claro);
  color: white;
  text-align: center;
  padding: 30px 20px;
}

    /* WhatsApp fixo */
    .whatsapp-btn-fixed {
      position: fixed; bottom: 20px; right: 20px;
      background: #25D366; color: #fff; padding: 12px 18px;
      border-radius: 50px; text-decoration: none; font-weight: bold;
      box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    }

    .whatsapp-btn-fixed:hover { background: #128C7E; }

*/FOOTER*/
.site-footer {
  background: #fff;
  padding: 50px 40px;
  border-top: 1px solid #ddd;
}



/* Rodapé */  

.site-footer {
  background: #ffffff; /* fundo branco */
  color: #000000;      /* texto preto */
  padding: 40px 20px;
  font-family: 'Playfair Display', serif;
}

.footer-container {
  display: flex;
  justify-content: space-between; /* distribui colunas */
  align-items: center;
  max-width: 650px;
  margin: 0 auto;
}

.footer-logo {
  margin: 0 auto;      /* centraliza horizontalmente */
  text-align: center;  /* garante alinhamento interno */
}

.footer-logo img {
  width: 180px; /* logo maior */
  transition: transform 0.7s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
}

/* Contato e Redes sociais em dourado */
.footer-contact h3,
.footer-social h3 {
  color: var(--dourado);
  margin-bottom: 10px;
}

.footer-contact a,
.footer-social a {
  color: var(--dourado);
  text-decoration: none;
}

.footer-contact a:hover,
.footer-social a:hover {
  color: #333; /* efeito hover em preto */
}

.footer-contact p {
  color: var(--dourado); /* cidades também em dourado */
  font-size: 16px;
  margin: 6px 0;
}

.footer-social ul {
  list-style: none;
  padding: 0;
}

.footer-social li {
  margin-bottom: 8px;
}

.footer-credit {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: #000000; /* créditos em preto */
}
/* Todas as imagens dos imóveis */
.imovel img {
  max-width: 300px;   /* largura máxima no desktop */
  height: auto;       /* mantém proporção */
  border-radius: 8px; /* cantos arredondados para elegância */
  box-shadow: 0 2px 6px rgba(0,0,0,0.15); /* sombra leve */
}

/* Responsivo para celular */
@media (max-width: 768px) {
  .imovel img {
    max-width: 100%;  /* ocupa toda a largura da tela no celular */
    height: auto;
  }
}

/* Responsivo para celular */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-logo img {
    margin: 0 auto;
  }
}
.imovel-page img {
  max-width: 100%;   /* nunca ultrapassa o tamanho do container */
  height: auto;      /* mantém proporção */
  display: block;    /* evita espaçamento extra */
  margin: 0 auto;    /* centraliza */
/* Sessão de imóveis em destaque */
.featured-properties {
  text-align: center;
  padding: 40px 20px;
  background-color: #fff; /* fundo neutro */
  position: relative;
}

/* Faixa decorativa dourada */
.featured-properties::before {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #DAA520, #B8860B);
  margin-bottom: 20px;
}

/* Título centralizado e dourado */
  /* Container dos imóveis */
.grid-imoveis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px;
}

/* Cada imóvel */
.imovel {
  text-align: center;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.imovel img {
  width: 100%;       /* ocupa toda a largura da coluna */
  height: auto;      /* mantém proporção */
  border-radius: 6px;
  margin-bottom: 10px;
}

.imovel:hover {
  transform: translateY(-5px);
}

.imovel:hover img {
  transform: scale(1.05);
  filter: brightness(85%);
}

.imovel p {
  font-size: 18px;
  font-weight: 600;
  color: #B8860B; /* bronze */
  margin: 0;
}

/* Sessão de imóveis em destaque */
.featured-properties {
  text-align: center;
  padding: 40px 20px;
  background-color: #fff;
  position: relative;
}

.featured-properties::before {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #DAA520, #B8860B);
  margin-bottom: 20px;
}

.featured-properties h2 {
  color: #DAA520;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

/* Links lado a lado no desktop */
.links-imoveis {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Estilo dos links */
.links-imoveis a {
  color: #B8860B;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.links-imoveis a:hover {
  background-color: #DAA520;
  color: #fff;
}

/* Responsivo para celular */
@media (max-width: 768px) {
  .links-imoveis {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .links-imoveis a {
    width: 100%;
    max-width: 300px;
    text-align: center;
    border: 1px solid #B8860B;
    background-color: #fff;
  }
}
