/* ============================================================
   ALPI IMÓVEIS — Design System Moderno
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  /* Cores principais */
  --gold:        #FAC002;
  --gold-light:  #FAC002;
  --gold-dark:   #FAC002;
  --gold-pale:   #FAC002;

  /* Fundos escuros */
  --dark:        #111111;
  --dark-card:   #1c1c1c;
  --dark-nav:    #0a0a0a;
  --dark-footer: #0d0d0d;
  --dark-input:  #252525;
  --dark-border: #2e2e2e;
  --dark-hover:  #242424;

  /* Texto */
  --text-white:  #f5f5f5;
  --text-light:  #d0d0d0;
  --text-muted:  #888888;
  --text-dim:    #555555;

  /* Tipografia */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', sans-serif;

  /* Espaçamentos */
  --radius:      10px;
  --radius-lg:   16px;
  --radius-sm:   6px;
  --shadow:      0 4px 24px rgba(0,0,0,0.4);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.5);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--dark);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); text-decoration: none; }

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

/* ============================================================
   TIPOGRAFIA
   ============================================================ */
.alpi-title {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: -.01em;
}

.alpi-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.alpi-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.3rem;
}

.gold-line::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-top: 12px;
}

.gold-line-center::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 12px auto 0;
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.alpi-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--dark-nav);
  border-bottom: 1px solid var(--dark-border);
  box-shadow: 0 2px 16px rgba(0,0,0,.5);
}

.alpi-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 70px;
  max-width: 1440px;
  margin: 0 auto;
}

.alpi-logo img {
  height: 40px;
  width: auto;
}

.alpi-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-white);
}

.alpi-logo .logo-text span {
  color: var(--gold);
}

/* Nav links */
.alpi-nav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.alpi-nav li a {
  display: block;
  padding: 0 1.2rem;
  height: 70px;
  line-height: 70px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: .04em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  transition: all .2s;
}

.alpi-nav li a:hover,
.alpi-nav li a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Header contatos (topo) */
.alpi-header-contacts {
  display: flex;
  gap: 1.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  align-items: center;
}

.alpi-header-contacts strong {
  color: var(--text-light);
  font-weight: 600;
}

.alpi-header-contacts .wapp-btn {
  background: #25D366;
  color: #fff;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background .2s;
}

.alpi-header-contacts .wapp-btn:hover { background: #128C7E; color: #fff; }

/* Hamburger mobile */
.alpi-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.alpi-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  transition: all .3s;
}

/* Mobile nav overlay */
.alpi-mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--dark-nav);
  z-index: 999;
  flex-direction: column;
  padding: 2rem;
  gap: 0;
  border-top: 1px solid var(--dark-border);
  overflow-y: auto;
}

.alpi-mobile-nav.open { display: flex; }

.alpi-mobile-nav a {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-light);
  border-bottom: 1px solid var(--dark-border);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.alpi-mobile-nav a:hover { color: var(--gold); }

.alpi-mobile-contacts {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--dark-border);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.alpi-mobile-contacts strong { color: var(--text-light); }

/* ============================================================
   BOTÕES
   ============================================================ */
.btn-alpi-gold {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gold);
  color: #111 !important;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  text-decoration: none;
}

.btn-alpi-gold:hover {
  background: var(--gold-light);
  color: #111 !important;
  transform: translateY(-1px);
}

.btn-alpi-outline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: var(--gold) !important;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}

.btn-alpi-outline:hover {
  background: var(--gold);
  color: #111 !important;
}

.btn-alpi-dark {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--dark-card);
  color: var(--text-light) !important;
  font-weight: 500;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--dark-border);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}

.btn-alpi-dark:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
}

/* ============================================================
   CARDS DE IMÓVEL
   ============================================================ */
.imovel-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: pointer;
  position: relative;
}

.imovel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold-dark);
}

.imovel-card .card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.imovel-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.imovel-card:hover .card-img-wrap img { transform: scale(1.05); }

.imovel-card .card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: #111;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.imovel-card .card-badge.locacao { background: #4a9eff; color: #fff; }

.imovel-card .card-codigo {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,.7);
  color: var(--text-muted);
  font-size: 0.7rem;
  padding: 3px 9px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.imovel-card .card-body {
  padding: 1rem 1.1rem 1.2rem;
}

.imovel-card .card-tipo {
  font-size: 0.72rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
  margin-bottom: 4px;
}

.imovel-card .card-bairro {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.imovel-card .card-valor {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.imovel-card .card-valor small {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 4px;
}

.imovel-card .card-specs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--text-muted);
  border-top: 1px solid var(--dark-border);
  padding-top: 0.7rem;
  margin-top: 0.5rem;
}

.imovel-card .card-specs span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.imovel-card .card-specs i {
  color: var(--gold-dark);
  font-size: 0.8rem;
}

/* ============================================================
   GRID DE IMÓVEIS
   ============================================================ */
.imoveis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

/* ============================================================
   FILTROS (barra lateral esquerda)
   ============================================================ */
.filtros-sidebar {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: sticky;
  top: 90px;
}

.filtros-sidebar h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--dark-border);
}

.filtro-grupo {
  margin-bottom: 1.2rem;
}

.filtro-grupo label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
  font-weight: 500;
}

.filtro-grupo .form-control {
  background: var(--dark-input);
  border: 1px solid var(--dark-border);
  color: var(--text-light);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  padding: 8px 12px;
  width: 100%;
  transition: border-color .2s;
  -webkit-appearance: none;
  appearance: none;
}

.filtro-grupo .form-control:focus {
  outline: none;
  border-color: var(--gold-dark);
  background: var(--dark-input);
  color: var(--text-white);
  box-shadow: 0 0 0 2px rgba(250,192,2,.15);
}

.filtro-grupo .form-control option {
  background: var(--dark-card);
  color: var(--text-light);
}

.filtro-range {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.btn-filtrar {
  width: 100%;
  background: var(--gold);
  color: #111;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background .2s;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.btn-filtrar:hover { background: var(--gold-light); }

.btn-limpar {
  width: 100%;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.78rem;
  padding: 8px;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-top: 0.4rem;
  transition: all .2s;
}

.btn-limpar:hover { color: var(--text-light); border-color: var(--text-dim); }

/* Filtros mobile toggle */
.filtro-mobile-toggle {
  display: none;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  padding: 10px 16px;
  font-size: 0.85rem;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin-bottom: 1rem;
  width: 100%;
}

/* ============================================================
   LAYOUT PÁGINAS INTERNAS (lista de imóveis)
   ============================================================ */
.alpi-page {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.alpi-page-header {
  padding: 1.5rem 0 1.5rem;
  border-bottom: 1px solid var(--dark-border);
  margin-bottom: 2rem;
}

.alpi-page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 2px;
}

.alpi-page-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.lista-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}

.lista-count {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.lista-count strong { color: var(--gold); }

/* ============================================================
   SEÇÃO HERO (HOME)
   ============================================================ */
.alpi-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-nav);
}

.alpi-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0,0,0,.15);
}

.alpi-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0a0a0a;
  pointer-events: none;
}

.alpi-hero-video iframe,
.alpi-hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  border: 0;
}

.alpi-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.65) 0%, rgba(0,0,0,.3) 55%, rgba(0,0,0,.05) 100%);
  z-index: 1;
}

.alpi-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 4rem 2rem;
  width: 100%;
}

.alpi-hero-eyebrow {
  font-size: 0.78rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 600;
  margin-bottom: 1rem;
}

.alpi-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.18;
  max-width: 620px;
  margin-bottom: 1.2rem;
}

.alpi-hero-title em {
  font-style: normal;
  color: var(--gold);
}

.alpi-hero-sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.7;
}

.alpi-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Search box na hero */
.alpi-hero-search {
  background: rgba(28,28,28,.78);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 0.75rem;
  width: min(100%, 360px);
  max-width: 360px;
}

.alpi-hero-search h4 {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 0.6rem;
}

.alpi-hero-search .alpi-select-inline,
.alpi-hero-search .alpi-input-inline {
  font-size: 0.84rem;
  padding: 7px 10px;
  height: 34px;
}

.alpi-hero-search .btn-alpi-gold {
  font-size: 0.84rem;
  padding: 10px 12px;
}

/* Ensure the hero search card sits to the right column */
.alpi-hero-search {
  justify-self: end;
}


.search-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 1.2rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--dark-border);
}

.search-tab {
  flex: 1;
  padding: 8px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--dark-input);
  cursor: pointer;
  transition: all .2s;
  border: none;
}

.search-tab.active, .search-tab:hover {
  background: var(--gold);
  color: #111;
}

.search-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 0.7rem;
  align-items: end;
}

/* ============================================================
   DESTAQUES HOME (carousel)
   ============================================================ */
.section-destaques {
  padding: 4rem 0;
  background: var(--dark);
}

.section-destaques .container-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   SEÇÃO SOCIAL MEDIA (HOME)
   ============================================================ */
.section-social {
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  padding: 2.5rem 1.5rem;
}

.social-links-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all .2s;
  border: 1px solid;
  text-decoration: none;
}

.social-btn.instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  border-color: transparent;
  color: #fff !important;
}

.social-btn.whatsapp {
  background: #25D366;
  border-color: transparent;
  color: #fff !important;
}

.social-btn.facebook {
  background: #1877F2;
  border-color: transparent;
  color: #fff !important;
}

.social-btn:hover { opacity: .85; transform: translateY(-2px); color: #fff !important; }

/* Compartilhar imóvel */
.share-section {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  padding: 1rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  margin-top: 1rem;
}

.share-section span {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  transition: all .2s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.share-btn.wapp   { background: #25D366; color: #fff; }
.share-btn.fb     { background: #1877F2; color: #fff; }
.share-btn.copy   { background: var(--dark-input); color: var(--text-muted); border: 1px solid var(--dark-border); }
.share-btn:hover  { opacity: .85; color: #fff; }

/* ============================================================
   DETALHE DO IMÓVEL
   ============================================================ */
.detalhe-layout {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.detalhe-breadcrumb {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.detalhe-breadcrumb a { color: var(--text-muted); }
.detalhe-breadcrumb a:hover { color: var(--gold); }
.detalhe-breadcrumb span { color: var(--gold); }

.detalhe-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
}

.detalhe-gallery {
  position: relative;
}

.detalhe-gallery .main-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 0.7rem;
}

.detalhe-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.5rem;
}

.detalhe-thumbs img {
  width: 100%;
  height: 75px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .2s, opacity .2s;
  opacity: .65;
}

.detalhe-thumbs img.active,
.detalhe-thumbs img:hover { border-color: var(--gold); opacity: 1; }

/* Sidebar do detalhe */
.detalhe-sidebar {
  position: sticky;
  top: 90px;
}

.detalhe-preco-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.detalhe-codigo {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}

.detalhe-tipo {
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .05em;
  margin-bottom: 4px;
}

.detalhe-bairro {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.8rem;
}

.detalhe-valor-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.detalhe-valor {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.2;
  margin: 4px 0 4px;
}

.detalhe-valor-sufixo {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.detalhe-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin: 1.2rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}

.detalhe-spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.6rem;
  background: var(--dark-input);
  border-radius: var(--radius-sm);
}

.detalhe-spec-item i {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.detalhe-spec-item .spec-val {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light) !important;
}

.detalhe-spec-item .spec-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Contato corretor */
.contato-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 1.2rem;
  margin-bottom: 1rem;
}

.contato-card h4 {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1rem;
}

.contato-card .wapp-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff !important;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  transition: background .2s;
}

.contato-card .wapp-link:hover { background: #128C7E; }

.contato-card .wapp-link i { font-size: 1.4rem; }

/* Vídeo embed */
.video-section {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--dark-border);
}

.video-section iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border: none;
}

/* Descrição */
.detalhe-descricao {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
  line-height: 1.8;
  color: var(--text-light);
  font-size: 0.92rem;
}

.detalhe-descricao h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.alpi-footer {
  background: var(--dark-footer);
  border-top: 1px solid var(--dark-border);
  padding: 4rem 1.5rem 2rem;
}

.alpi-footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.footer-brand .logo-text span { color: var(--gold); }

.footer-brand .creci {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}

.footer-brand .address {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all .2s;
}

.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #111; }

.footer-col h5 {
  font-size: 0.72rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  transition: color .2s;
}

.footer-col a:hover { color: var(--text-white); }

.footer-col p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.footer-col p strong { color: var(--text-light); font-weight: 600; }

.footer-col p i { color: var(--gold-dark); margin-right: 4px; }

.footer-bottom {
  max-width: 1440px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ============================================================
   PÁGINA CONTATO
   ============================================================ */
.contato-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.contato-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contato-form-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.contato-form-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.form-group-alpi {
  margin-bottom: 1rem;
}

.form-group-alpi label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 5px;
}

.form-group-alpi input,
.form-group-alpi textarea,
.form-group-alpi select {
  width: 100%;
  background: var(--dark-input);
  border: 1px solid var(--dark-border);
  color: var(--text-light);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  padding: 10px 14px;
  font-family: var(--font-body);
  transition: border-color .2s;
}

.form-group-alpi input:focus,
.form-group-alpi textarea:focus,
.form-group-alpi select:focus {
  outline: none;
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 2px rgba(250,192,2,.12);
}

.form-group-alpi textarea { resize: vertical; min-height: 120px; }

/* Info contatos */
.contato-info-box {
  margin-bottom: 1.2rem;
  padding: 1.2rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contato-info-box .icon {
  width: 42px;
  height: 42px;
  background: rgba(250,192,2,.1);
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.contato-info-box .info-text h6 {
  font-size: 0.72rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}

.contato-info-box .info-text p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

/* ============================================================
   UTILITÁRIOS
   ============================================================ */
.text-gold  { color: var(--gold); }
.text-muted-alpi { color: var(--text-muted); }
.section-pad { padding: 4rem 1.5rem; }
.container-alpi { max-width: 1440px; margin: 0 auto; padding: 0 1.5rem; }
.divider { height: 1px; background: var(--dark-border); margin: 2rem 0; }
.tag-badge { display: inline-block; font-size: 0.7rem; font-weight: 600; padding: 3px 10px; border-radius: 20px; letter-spacing: .04em; text-transform: uppercase; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1100px) {
  .alpi-footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .lista-layout { grid-template-columns: 240px 1fr; }
  .alpi-header-contacts { display: none; }
}

@media (max-width: 900px) {
  .alpi-nav { display: none; }
  .alpi-hamburger { display: flex; }
  .detalhe-grid { grid-template-columns: 1fr; }
  .detalhe-sidebar { position: static; }
  .detalhe-gallery .main-img { height: 300px; }
  .contato-page-grid { grid-template-columns: 1fr; }
  .search-fields { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .alpi-header-inner {
    height: 64px;
    padding: 0 1rem;
  }

  .alpi-logo img {
    height: 34px !important;
  }

  .alpi-mobile-nav {
    top: 64px;
    padding: 1.25rem;
  }

  .alpi-mobile-nav a {
    font-size: 0.95rem;
    padding: 0.85rem 0;
  }

  .alpi-page {
    padding: 1.5rem 1rem;
  }

  .alpi-page-header {
    margin-bottom: 1.25rem;
    padding: 1rem 0 1.25rem;
  }

  .lista-layout { grid-template-columns: 1fr; }
  .filtros-sidebar { position: static; display: none; }
  .filtros-sidebar.open { display: block; }
  .filtro-mobile-toggle { display: flex; }

  .alpi-footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .alpi-hero { min-height: 70vh; }
  .alpi-hero-title { font-size: 1.9rem; }
  .alpi-hero-sub { font-size: 0.92rem; margin-bottom: 1.4rem; }
  .alpi-hero-search { margin-top: 1.5rem; }
  .alpi-hero-actions .btn-alpi-gold,
  .alpi-hero-actions .btn-alpi-outline {
    width: 100%;
    justify-content: center;
  }
  .search-fields { grid-template-columns: 1fr; }

  .imoveis-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .imoveis-grid { grid-template-columns: 1fr; }
  .alpi-hero { min-height: 60vh; }
  .alpi-hero-content { padding-left: 1rem; padding-right: 1rem; }
  .alpi-hero-title { font-size: 1.75rem; }
  .social-links-row {
    align-items: stretch;
    flex-direction: column;
  }
  .social-btn {
    justify-content: center;
    width: 100%;
  }
  .alpi-section-title { font-size: 1.45rem; }
  .btn-alpi-gold,
  .btn-alpi-outline,
  .btn-alpi-dark {
    justify-content: center;
  }
  .detalhe-thumbs { grid-template-columns: repeat(4, 1fr); }
  .detalhe-specs-grid { grid-template-columns: 1fr 1fr; }
}
