/* Litoral RS Imóveis — estilos do site */

:root {
  --navy: #1B2A4A;
  --navy-light: #2A3D63;
  --gold: #C9A227;
  --gold-light: #E4C25C;
  --cream: #F7F3E9;
  --white: #FFFFFF;
  --text: #23324E;
  --muted: #6B7280;
  --border: #E4DFD0;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(27, 42, 74, 0.10);
  --shadow-hover: 0 10px 32px rgba(27, 42, 74, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background-color: var(--cream);
  background-image:
    radial-gradient(ellipse at top left, rgba(201,162,39,.05), transparent 55%),
    url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNDAiIGhlaWdodD0iMTQwIj4KPGZpbHRlciBpZD0ibiI+PGZlVHVyYnVsZW5jZSB0eXBlPSJmcmFjdGFsTm9pc2UiIGJhc2VGcmVxdWVuY3k9IjAuODUiIG51bU9jdGF2ZXM9IjIiIHN0aXRjaFRpbGVzPSJzdGl0Y2giLz48ZmVDb2xvck1hdHJpeCB0eXBlPSJtYXRyaXgiIHZhbHVlcz0iMCAwIDAgMCAwLjEwNiAgMCAwIDAgMCAwLjE2NSAgMCAwIDAgMCAwLjI5MCAgMCAwIDAgMC4wNDUgMCIvPjwvZmlsdGVyPgo8cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWx0ZXI9InVybCgjbikiLz4KPC9zdmc+");
  background-repeat: no-repeat, repeat;
  background-attachment: fixed, fixed;
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--navy);
  line-height: 1.25;
  margin: 0 0 .5em;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Top bilingual bar ---------- */
.top-bar {
  background: var(--navy);
  color: var(--cream);
  font-size: .88rem;
  text-align: center;
  padding: 8px 14px;
  letter-spacing: .2px;
}
.top-bar strong { color: var(--gold-light); }
.top-bar-icon {
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  margin-right: 1px;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.10);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img { height: 78px; width: 78px; }
.brand-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.15;
}
.brand-name small {
  display: block;
  font-weight: 400;
  color: #A9B6D0;
  font-size: .72rem;
}

nav.main-nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
nav.main-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--cream);
  white-space: nowrap;
}
nav.main-nav a:hover { background: rgba(255,255,255,.10); }
nav.main-nav a.active { background: var(--gold); color: var(--navy); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 1.2rem;
  color: var(--white);
  cursor: pointer;
}

.btn-whatsapp-header {
  background: #25D366;
  color: #fff;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.btn-whatsapp-header img { height: 18px; width: 18px; border-radius: 50%; background: #fff; }

@media (max-width: 860px) {
  nav.main-nav {
    display: none;
    width: 100%;
    order: 3;
    flex-direction: column;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: 10px;
  }
  nav.main-nav.open { display: flex; }
  .site-header .container { flex-wrap: wrap; }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--cream);
  padding: 56px 0 44px;
  text-align: center;
}
/* ---------- Vídeo do início (só o vídeo + frase, sem caixas) ---------- */
.hero-video-section {
  position: relative;
  height: clamp(320px, 52vh, 600px);
  overflow: hidden;
}
.hero-video-section .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-section .hero-video-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  text-align: center;
}
.hero-logo {
  width: clamp(100px, 13vw, 160px);
  height: auto;
  margin: 0 0 18px;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.5));
  opacity: 0;
  transform: translateY(14px) scale(.94);
  animation: heroGanchoAparece 1.6s cubic-bezier(.16,.9,.35,1) .7s forwards;
}

/* Selo sobre o vídeo: o traço interior do logo é branco, então sozinho ele se
   perde nos trechos claros da imagem. Sobre o círculo navy — o mesmo
   tratamento do flyer — recorta nítido contra qualquer fotograma.
   O selo não preenche o PNG nem está centrado nele: sobram 62px de margem
   transparente à esquerda e à direita, mas 41px acima contra 68px abaixo —
   ou seja, o desenho fica 14px acima do centro da imagem (centro real em
   47,2% da altura). Por isso o gradiente é ancorado nesse ponto e não em
   50%: centrado na caixa, o aro azul saía deslocado para baixo.
   O raio de 39,5% acompanha o selo (que ocupa 75,2% da largura) e deixa só
   um aro fino; pintar o fundo na caixa inteira criava um halo grande demais.
   A sombra vai por filter, não por box-shadow: box-shadow seguiria a caixa
   quadrada e desenharia um anel solto fora do círculo visível. */
.hero-logo-selo {
  /* El ancho manda, pero acotado por el alto de la ventana: la sección del
     video mide 52vh, así que en pantallas bajas (1366x768 típico) un logo de
     330px se comía el espacio de la frase y la cortaba por la mitad. El tope
     de 33vh deja siempre lugar para la tagline, con aire arriba y abajo. */
  width: min(clamp(190px, 24vw, 320px), 33vh);
  background: radial-gradient(ellipse 39.5% 39.5% at 50% 47.2%, var(--navy) 0 97%, transparent 99%);
  padding: 0;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, .5));
  margin-bottom: 10px;
}

@media (max-width: 560px) {
  .hero-logo-selo { margin-bottom: 4px; }
}
.tagline-spark {
  width: .78em;
  height: .78em;
  vertical-align: -.08em;
  fill: var(--gold-light);
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.5));
}
.hero-video-section .tagline {
  margin: 0;
  color: var(--white);
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  text-shadow: 0 2px 18px rgba(0,0,0,.55), 0 1px 5px rgba(0,0,0,.65);
  opacity: 0;
  transform: translateY(18px) scale(.96);
  animation:
    heroGanchoAparece 1.8s cubic-bezier(.16,.9,.35,1) 1.3s forwards,
    heroGanchoLatido 2.6s ease-in-out 3.3s infinite;
}
@keyframes heroGanchoAparece {
  0%   { opacity: 0; transform: translateY(18px) scale(.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes heroGanchoLatido {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.035); }
}
.hero-home {
  background: none;
  padding: 56px 0 60px;
}
.hero-apresentacao {
  background:
    linear-gradient(160deg, rgba(27,42,74,.82) 0%, rgba(27,42,74,.62) 50%, rgba(27,42,74,.85) 100%),
    url('../img/equipe-bg.jpg') center 40% / cover no-repeat;
  min-height: clamp(340px, 52vh, 580px);
  display: flex;
  align-items: center;
  padding: 60px 0;
}
.hero-apresentacao h1,
.hero-apresentacao .tagline,
.hero-apresentacao p.lead {
  text-shadow: 0 2px 12px rgba(0,0,0,.55), 0 1px 3px rgba(0,0,0,.6);
}

/* ---------- Anúncios: foto de playa completa (a mesma do Início), sem cortar ---------- */
.anuncios-hero-bg {
  position: relative;
  overflow: hidden;
  min-height: clamp(320px, 50vh, 560px);
  display: flex;
  align-items: center;
  padding: 40px 0;
}
.anuncios-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/hero-litoral.jpg') center 22% / cover no-repeat;
  z-index: 0;
}
.anuncios-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(27,42,74,.40) 0%, rgba(27,42,74,.22) 45%, rgba(27,42,74,.42) 100%);
  z-index: 1;
}
.anuncios-hero-bg .container {
  position: relative;
  z-index: 2;
}
.anuncios-hero-bg h1 {
  color: var(--white);
  text-shadow: 0 2px 14px rgba(0,0,0,.65), 0 1px 4px rgba(0,0,0,.7);
}
.anuncios-hero-bg .section-head p {
  color: var(--white);
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
}

/* ---------- FAQ: foto dos cerros completa, mesmo padrão do Anúncios ---------- */
.faq-hero-bg {
  position: relative;
  overflow: hidden;
  min-height: clamp(280px, 40vh, 460px);
  display: flex;
  align-items: center;
  padding: 40px 0;
}
.faq-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/faq-hero.jpg') center 45% / cover no-repeat;
  z-index: 0;
}
.faq-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(27,42,74,.55) 0%, rgba(27,42,74,.32) 45%, rgba(27,42,74,.55) 100%);
  z-index: 1;
}
.faq-hero-bg .container {
  position: relative;
  z-index: 2;
}
.faq-hero-bg h1 {
  color: var(--white);
  text-shadow: 0 2px 14px rgba(0,0,0,.65), 0 1px 4px rgba(0,0,0,.7);
}
.faq-hero-bg .section-head p {
  color: var(--white);
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  margin-bottom: .35em;
}
.hero .tagline {
  color: var(--gold-light);
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 1.4em;
}
.hero p.lead {
  max-width: 640px;
  margin: 0 auto 1.6em;
  color: #DCE3F0;
}
.hero-home h1 {
  color: var(--navy);
}

/* ---------- Search / filtros ---------- */
.filtros {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.filtros .linha {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tipo-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.tipo-tabs button {
  border: 1.5px solid var(--border);
  background: var(--cream);
  color: var(--navy);
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  transition: all .15s;
}
.tipo-tabs button:hover { border-color: var(--gold); }
.tipo-tabs button.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.filtros select,
.filtros input[type="text"] {
  flex: 1;
  min-width: 160px;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: .92rem;
  font-family: inherit;
  background: var(--white);
  color: var(--text);
}
.filtros select:focus,
.filtros input:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.filtros button.buscar {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 11px 22px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  font-size: .92rem;
}
.filtros button.buscar:hover { background: var(--navy-light); }
.filtros button.limpar {
  background: none;
  border: 1.5px solid var(--border);
  color: var(--muted);
  padding: 11px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-size: .88rem;
}

/* ---------- Sections ---------- */
section { padding: 52px 0; }
section.alt { background: var(--white); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 34px; }
.section-head h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
.section-head p { color: var(--muted); }

/* ---------- Property grid / cards ---------- */
.grid-imoveis {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}
.card-imovel {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .18s, box-shadow .18s;
  display: flex;
  flex-direction: column;
}
.card-imovel:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card-imovel .foto-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--border); }
.card-imovel .foto-wrap img { width: 100%; height: 100%; object-fit: cover; }
.badge-tipo {
  position: absolute; top: 12px; left: 12px; z-index: 4;  /* por encima do selo */
  background: var(--navy); color: var(--white);
  font-size: .72rem; font-weight: 600;
  padding: 5px 11px; border-radius: 999px;
  letter-spacing: .3px;
}
/* Selo de estado: faixa diagonal que cruza a foto de ponta a ponta, para
   imóveis reservados (vermelho) e vendidos (verde). O recorte nas bordas vem
   do overflow:hidden do .foto-wrap / .carrossel, por isso a faixa é mais
   larga que o contêiner. */
.selo-estado {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; z-index: 3;
}
.selo-estado::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(27, 42, 74, .28);
}
.selo-estado span {
  position: relative;
  width: 150%; text-align: center;
  transform: rotate(-18deg);
  background: rgba(255, 255, 255, .95);
  border-top: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  padding: 9px 0;
  font-size: 1.15rem; font-weight: 800;
  letter-spacing: .22em; text-transform: uppercase;
  box-shadow: 0 6px 22px rgba(27, 42, 74, .28);
}
.selo-reservado span { color: #C62828; }
.selo-vendido span { color: #1B7A3E; }

.carrossel .selo-estado span { font-size: 1.7rem; padding: 13px 0; }

@media (max-width: 560px) {
  .selo-estado span { font-size: .95rem; letter-spacing: .16em; padding: 7px 0; }
  .carrossel .selo-estado span { font-size: 1.2rem; padding: 9px 0; }
}

.badge-codigo {
  position: absolute; top: 12px; right: 12px; z-index: 4;  /* por encima do selo */
  background: rgba(255,255,255,.92); color: var(--navy);
  font-size: .7rem; font-weight: 700;
  padding: 5px 10px; border-radius: 999px;
}
.card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-body h3 { font-size: 1.05rem; margin: 0; }
.card-body .local { color: var(--muted); font-size: .86rem; display: flex; align-items: center; gap: 5px; }
.card-body .preco { color: var(--navy); font-weight: 700; font-size: 1.2rem; margin-top: 2px; }
.preco-anterior { display: block; color: var(--muted); font-weight: 500; font-size: .8em; text-decoration: line-through; }
.card-body .specs { display: flex; gap: 12px; flex-wrap: wrap; font-size: .8rem; color: var(--muted); margin-top: 2px; }
.card-body .specs span { display: flex; align-items: center; gap: 4px; }
.card-body .specs img { height: 14px; width: 14px; opacity: .65; }
.btn-ver {
  margin-top: auto;
  text-align: center;
  background: var(--cream);
  color: var(--navy);
  font-weight: 600;
  padding: 10px;
  border-radius: 9px;
  font-size: .88rem;
  border: 1.5px solid var(--border);
}
.card-imovel:hover .btn-ver { background: var(--gold); border-color: var(--gold); }

.empty-state {
  grid-column: 1 / -1;   /* ocupa toda la grilla: si no, el mensaje entra en
                            una sola columna y queda como una tarjeta angosta */
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 20px;
  color: var(--muted);
  background: var(--white);
  border-radius: var(--radius);
}

/* ---------- Botões genéricos ---------- */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .94rem;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); }
.btn-outline { background: transparent; border: 1.5px solid var(--white); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); }

/* ---------- Franja de idiomas ---------- */
.faixa-idiomas {
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 14px 20px;
  font-weight: 600;
  font-size: .95rem;
}

/* ---------- Presentación / equipo ---------- */
.equipe-section-bg {
  background:
    linear-gradient(rgba(247,243,233,.92), rgba(247,243,233,.95)),
    url('../img/equipe-bg.jpg') center 35% / cover no-repeat;
}
.equipe { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 26px; margin-top: 30px; }
.card-membro {
  background: var(--white); border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow); text-align: center;
}
.card-membro .avatar {
  width: 128px; height: 128px; border-radius: 50%;
  object-fit: cover; object-position: center top;
  background: var(--cream); border: 3px solid var(--gold);
  margin: 0 auto 14px; display: block;
  font-family: 'Poppins',sans-serif; font-weight: 700; font-size: 1.6rem; color: var(--navy);
}
.card-membro h3 { margin-bottom: 2px; }
.card-membro .cargo { color: var(--gold); font-weight: 600; font-size: .85rem; margin-bottom: 10px; }
.card-membro p.desc { color: var(--muted); font-size: .92rem; }

.valores { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px; margin-top: 30px; }
.valor-item { background: var(--white); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.valor-item h4 { display: flex; align-items: center; gap: 8px; font-size: 1rem; }
.valor-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
}
.valor-item p { color: var(--muted); font-size: .9rem; margin: 0; }

/* ---------- Anúncios ---------- */
.lista-anuncios { display: flex; flex-direction: column; gap: 16px; }
.anuncio-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 20px 22px; display: flex; gap: 18px; align-items: flex-start;
}
.anuncio-data {
  flex-shrink: 0; background: var(--navy); color: var(--white);
  border-radius: 10px; padding: 10px 14px; text-align: center; min-width: 68px;
  font-family: 'Poppins',sans-serif;
}
.anuncio-data .dia { font-size: 1.3rem; font-weight: 700; line-height: 1; }
.anuncio-data .mes { font-size: .72rem; text-transform: uppercase; letter-spacing: .5px; }
.anuncio-tag {
  display: inline-block; font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .4px; padding: 3px 10px; border-radius: 999px; margin-bottom: 6px;
}
.tag-normativa { background: #FDE8E8; color: #B3261E; }
.tag-data { background: #E8F0FE; color: #1B4FA0; }
.tag-novidade { background: #EAF7EC; color: #1E7B34; }
.anuncio-card h3 { font-size: 1.02rem; margin-bottom: 4px; }
.anuncio-card p { margin: 0; color: var(--muted); font-size: .92rem; }

/* ---------- Contato ---------- */
.grid-contato { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 22px; margin-top: 30px; }
.contato-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 28px 22px; text-align: center; transition: transform .15s, box-shadow .15s;
}
.contato-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.contato-card img { height: 40px; width: 40px; margin: 0 auto 14px; }
.contato-card h3 { font-size: 1rem; margin-bottom: 4px; }
.contato-card p { color: var(--muted); font-size: .88rem; margin-bottom: 14px; }

/* ---------- FAQ ---------- */
.faq-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 30px; }
.faq-tabs button {
  border: 1.5px solid var(--border); background: var(--white); color: var(--navy);
  padding: 9px 22px; border-radius: 999px; font-weight: 600; cursor: pointer;
}
.faq-tabs button.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.faq-item {
  background: var(--white); border-radius: 12px; box-shadow: var(--shadow);
  margin-bottom: 12px; overflow: hidden;
}
.faq-pergunta {
  padding: 16px 20px; cursor: pointer; font-weight: 600; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-pergunta .icone { color: var(--gold); font-size: 1.3rem; transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-pergunta .icone { transform: rotate(45deg); }
.faq-resposta {
  max-height: 0; overflow: hidden; transition: max-height .25s ease, padding .25s ease;
  padding: 0 20px; color: var(--muted); font-size: .92rem;
}
.faq-item.open .faq-resposta { max-height: 260px; padding: 0 20px 18px; }

/* ---------- Property detail ---------- */
.imovel-top { display: grid; grid-template-columns: 1.3fr 1fr; gap: 34px; align-items: start; }
@media (max-width: 900px) { .imovel-top { grid-template-columns: 1fr; } }
.imovel-coluna-esquerda { min-width: 0; }

.carrossel { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--border); }
.carrossel .slides { display: flex; transition: transform .35s ease; aspect-ratio: 4/3; }
.carrossel .slides img { width: 100%; height: 100%; object-fit: cover; flex-shrink: 0; }
.carrossel .seta {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(27,42,74,.55); color: #fff; border: none;
  width: 38px; height: 38px; border-radius: 50%; cursor: pointer; font-size: 1.1rem;
}
.carrossel .seta.prev { left: 12px; }
.carrossel .seta.next { right: 12px; }
.carrossel .dots { position: absolute; bottom: 12px; left: 0; right: 0; display: flex; justify-content: center; gap: 6px; }
.carrossel .dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.55); cursor: pointer; }
.carrossel .dots span.active { background: var(--gold); }

.imovel-info .codigo-badge {
  display: inline-block; background: var(--cream); color: var(--navy);
  font-size: .78rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; margin-bottom: 10px;
}
.imovel-info .preco { font-size: 1.9rem; color: var(--navy); font-weight: 700; margin: 6px 0 4px; }
.imovel-info .local { color: var(--muted); margin-bottom: 18px; }
.specs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px,1fr)); gap: 14px; margin-bottom: 22px; }
.spec-box { background: var(--white); border-radius: 10px; padding: 12px; text-align: center; box-shadow: var(--shadow); }
.spec-box img { height: 22px; width: 22px; margin: 0 auto 6px; opacity: .8; }
.spec-box .valor { font-weight: 700; color: var(--navy); font-size: .95rem; }
.spec-box .label { font-size: .72rem; color: var(--muted); }

.comodidades-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.comodidades-list span {
  background: var(--white); border: 1.5px solid var(--border); border-radius: 999px;
  padding: 6px 13px; font-size: .82rem; color: var(--navy);
}

.imovel-descricao {
  margin-top: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  padding: 28px 32px;
}
.imovel-descricao h2 { font-size: 1.25rem; margin-bottom: 12px; }
.imovel-descricao p { color: var(--text); font-size: 1rem; line-height: 1.75; margin: 0; white-space: pre-line; }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--navy); color: #C9D2E3; padding: 44px 0 24px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 30px; margin-bottom: 28px; }
.footer-grid h4 { color: var(--gold-light); font-size: .92rem; margin-bottom: 12px; }
.footer-grid a, .footer-grid p { color: #C9D2E3; font-size: .88rem; display: block; margin-bottom: 8px; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand img { height: 44px; width: 44px; }
.footer-legal { border-top: 1px solid rgba(255,255,255,.12); padding-top: 18px; font-size: .78rem; color: #8FA0C0; text-align: center; }
.footer-tagline { color: var(--gold-light); font-style: italic; text-align: center; margin-top: 10px; font-size: .9rem; }

/* Floating WhatsApp */
.fab-whatsapp {
  position: fixed; bottom: 22px; right: 22px; z-index: 60;
  background: #25D366; width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}
.fab-whatsapp img { height: 34px; width: 34px; border-radius: 50%; background: #fff; }
