*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary:     #1C1C1E;
  --accent:      #C9A84C;
  --accent-dark: #a8882e;
  --bg:          #ffffff;
  --bg-light:    #F5F5F5;
  --border:      #E5E5E5;
  --text:        #333333;
  --muted:       #888888;
  --white:       #ffffff;
  --green:       #25D366;
  --green-dark:  #1aab52;
  --header-h:    70px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }

/* ── HEADER ── */
.header {
  position: sticky; top: 0; z-index: 300;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: var(--header-h);
}
.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo img { height: 44px; width: auto; max-width: 160px; object-fit: contain; object-position: left center; display: block; }

nav ul { display: flex; gap: 28px; list-style: none; }
nav ul li { list-style: none; }
nav a {
  text-decoration: none; color: #666;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.6px; text-transform: uppercase;
  transition: color .2s; white-space: nowrap;
}
nav a:hover  { color: var(--accent); }
nav a.active { color: var(--primary); border-bottom: 2px solid var(--accent); padding-bottom: 2px; }

.header-cta {
  background: var(--accent); color: var(--white);
  border: none; padding: 10px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.4px;
  text-transform: uppercase; cursor: pointer;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  transition: background .2s;
}
.header-cta:hover { background: var(--accent-dark); }

/* HAMBURGER BUTTON */
.menu-btn {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 8px;
  flex-shrink: 0;
}
.menu-btn .bar {
  display: block; width: 22px; height: 2px;
  background: var(--primary);
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}
.menu-btn.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open .bar:nth-child(2) { opacity: 0; }
.menu-btn.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  background: linear-gradient(120deg, #1C1C1E 60%, #2e2e30 100%);
  color: var(--white);
  padding: 72px 48px;
  display: flex; align-items: center; gap: 48px;
}
.hero-content { max-width: 620px; }
.hero-tag {
  display: inline-block;
  background: rgba(201,168,76,.15);
  color: var(--accent);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 5px 12px; margin-bottom: 18px;
}
.hero-content h1 {
  font-size: 40px; font-weight: 700; line-height: 1.15; margin-bottom: 18px;
}
.hero-content h1 em { font-style: normal; color: var(--accent); }
.hero-content p {
  font-size: 16px; color: rgba(255,255,255,.65);
  line-height: 1.7; margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stat-row { display: flex; gap: 40px; margin-top: 40px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-size: 28px; font-weight: 700; color: var(--white); }
.hero-stat span { font-size: 12px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 0.5px; }

.hero-photo {
  flex-shrink: 0; width: 320px; height: 420px;
  overflow: hidden; border-radius: 2px;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* Hero full background */
.hero-fullbg {
  position: relative;
  background: none;
  min-height: 520px;
  overflow: hidden;
  justify-content: flex-end;
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to left, rgba(0,0,0,.78) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.15) 100%);
  z-index: 1;
}

/* PAGE BANNER */
.page-banner {
  background: linear-gradient(120deg, #1C1C1E 60%, #2e2e30 100%);
  padding: 52px 48px; color: var(--white);
}
.page-banner .hero-tag { margin-bottom: 12px; }
.page-banner h1 { font-size: 36px; font-weight: 700; }
.page-banner p { font-size: 15px; color: rgba(255,255,255,.6); margin-top: 10px; max-width: 560px; line-height: 1.6; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--accent); color: var(--white);
  text-decoration: none; border: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 600; cursor: pointer; transition: background .2s;
}
.btn-primary:hover { background: var(--accent-dark); }

.btn-whatsapp {
  background: var(--green); color: var(--white);
  text-decoration: none; border: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 600; cursor: pointer; transition: background .2s;
}
.btn-whatsapp:hover { background: var(--green-dark); }

.btn-ghost {
  background: transparent; color: var(--white);
  text-decoration: none; border: 1.5px solid rgba(255,255,255,.3);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 500; cursor: pointer; transition: all .2s;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

/* ── FILTROS ── */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 18px 48px;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.filter-label { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.filter-select {
  border: 1px solid var(--border); background: var(--white);
  padding: 10px 36px 10px 14px;
  font-family: 'Inter', sans-serif; font-size: 13px; color: var(--text);
  appearance: none; cursor: pointer; outline: none; min-width: 180px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='6' viewBox='0 0 11 6'%3E%3Cpath d='M1 1l4.5 4L10 1' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  transition: border-color .2s;
}
.filter-select:focus { border-color: var(--accent); }
.btn-buscar {
  background: var(--primary); color: var(--white);
  border: none; padding: 10px 26px;
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 0.4px; text-transform: uppercase; cursor: pointer; transition: background .2s;
}
.btn-buscar:hover { background: #333; }

/* ── SECTIONS ── */
.section { padding: 64px 48px; }
.section-alt { background: var(--bg-light); }
.section-head { margin-bottom: 40px; }
.section-head h2 { font-size: 28px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.section-head p { font-size: 15px; color: var(--muted); }
.divider { width: 44px; height: 3px; background: var(--accent); margin-top: 14px; }

/* ── GRIDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

/* ── PROPERTY CARDS ── */
.prop-card {
  border: 1px solid var(--border); background: var(--white);
  overflow: hidden; transition: box-shadow .25s, transform .25s;
}
.prop-card:hover { box-shadow: 0 10px 36px rgba(0,0,0,.09); transform: translateY(-3px); }

.card-img {
  position: relative; height: 210px; overflow: hidden; background: #e8e8e8;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px; color: #bbb; font-size: 13px;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; position: absolute; top: 0; left: 0; }
.prop-card:hover .card-img img { transform: scale(1.05); }

.badge, .badge-dark {
  position: absolute; top: 14px; left: 14px; z-index: 1;
  font-size: 10px; font-weight: 700; letter-spacing: 0.8px;
  text-transform: uppercase; padding: 4px 10px; color: var(--white);
}
.badge { background: var(--accent); }
.badge-dark { background: var(--primary); }

.card-body { padding: 20px; }
.card-title { font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 5px; color: var(--primary); }
.card-construtora { font-size: 11px; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.card-addr { font-size: 12px; color: var(--muted); margin-bottom: 14px; display: flex; align-items: center; gap: 5px; }
.card-desc { font-size: 13px; color: #555; line-height: 1.6; margin-bottom: 14px; font-style: italic; }
.card-specs {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding: 12px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.spec { font-size: 12px; color: #555; display: flex; align-items: center; gap: 4px; }
.card-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price-label { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.price-value { font-size: 18px; font-weight: 700; color: var(--primary); }
.btn-ver {
  background: var(--primary); color: var(--white);
  text-decoration: none; border: none;
  padding: 9px 16px; font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; cursor: pointer; transition: background .2s; white-space: nowrap; flex-shrink: 0;
}
.btn-ver:hover { background: var(--accent); }

/* ── CATEGORY CARDS ── */
.cat-card { position: relative; height: 190px; overflow: hidden; cursor: pointer; }
.cat-bg { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
.cat-card:hover .cat-bg { transform: scale(1.07); }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 18px;
}
.cat-title { color: var(--white); font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.cat-link {
  color: var(--accent); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px; text-decoration: none; transition: color .2s;
}
.cat-link:hover { color: var(--white); }

/* ── WA BANNER ── */
.wa-banner {
  background: var(--primary);
  padding: 56px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.wa-banner h2 { font-size: 22px; font-weight: 700; color: var(--white); max-width: 520px; line-height: 1.4; }
.wa-banner p { color: rgba(255,255,255,.55); font-size: 14px; margin-top: 8px; }

/* ── SOBRE ── */
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.sobre-img { height: 420px; overflow: hidden; }
.sobre-img img { width: 100%; height: 100%; object-fit: cover; }
.sobre-content h2 { font-size: 28px; font-weight: 700; color: var(--primary); margin-bottom: 14px; }
.sobre-content p { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 14px; }

/* ── TABLE ── */
.table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.unidades-table { width: 100%; border-collapse: collapse; min-width: 480px; }
.unidades-table th {
  background: var(--primary); color: var(--white);
  padding: 12px 16px; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px; text-align: left;
}
.unidades-table td { padding: 14px 16px; font-size: 14px; border-bottom: 1px solid var(--border); }
.unidades-table tr:hover td { background: var(--bg-light); }
.tag-disponivel {
  background: #e6f9ee; color: #1a7a3a;
  font-size: 11px; font-weight: 700; padding: 3px 10px;
  text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap;
}

/* ── FORM ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--primary); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.4px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; border: 1px solid var(--border); padding: 12px 14px;
  font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text);
  outline: none; transition: border-color .2s; background: var(--white); appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-info h3 { font-size: 20px; font-weight: 700; color: var(--primary); margin-bottom: 16px; }
.form-info p { font-size: 14px; color: #555; line-height: 1.7; margin-bottom: 20px; }
.contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; font-size: 14px; color: var(--text); line-height: 1.5; }

/* ── FOOTER ── */
footer { background: #111; color: rgba(255,255,255,.6); padding: 52px 48px 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-logo { margin-bottom: 12px; }
.footer-logo img { height: 40px; width: auto; max-width: 150px; object-fit: contain; filter: brightness(0) invert(1); display: block; }
.footer-desc { font-size: 13px; line-height: 1.8; margin-bottom: 18px; }
.footer-col h4 { color: var(--white); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,.55); text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; font-size: 12px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }

/* ════════════════════════════════════
   TABLET  (max 1024px)
════════════════════════════════════ */
@media (max-width: 1024px) {
  .header { padding: 0 24px; }
  .hero { padding: 56px 24px; }
  .page-banner { padding: 44px 24px; }
  .filter-bar { padding: 16px 24px; }
  .section { padding: 52px 24px; }
  .wa-banner { padding: 48px 24px; }
  footer { padding: 48px 24px 24px; }

  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .sobre-grid { grid-template-columns: 1fr; gap: 32px; }
  .sobre-img { height: 300px; }
  .form-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ════════════════════════════════════
   MOBILE  (max 768px)
════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --header-h: 60px; }

  /* Header */
  .header { padding: 0 16px; gap: 12px; }
  .logo img { height: 32px; }
  .header-cta { display: none; }

  /* Hamburger */
  .menu-btn { display: flex; }

  /* Nav — mobile overlay */
  nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: var(--white);
    transform: translateX(-100%);
    transition: transform .3s ease;
    z-index: 200;
    overflow-y: auto;
    padding: 16px 0;
  }
  nav.open { transform: translateX(0); }
  nav ul {
    flex-direction: column; gap: 0;
    padding: 8px 0;
  }
  nav ul li a {
    display: block; padding: 16px 24px;
    font-size: 15px; letter-spacing: 0;
    border-bottom: 1px solid var(--border);
    text-transform: none;
  }
  nav ul li:last-child a { border-bottom: none; }
  nav ul li a.active {
    color: var(--accent); border-left: 3px solid var(--accent);
    padding-left: 21px; border-bottom: 1px solid var(--border);
  }

  /* Add WhatsApp button inside mobile nav */
  nav::after {
    content: '';
    display: block; height: 80px;
  }

  /* Hero */
  .hero { padding: 40px 16px; flex-direction: column; gap: 24px; }
  .hero-photo { display: none; }
  .hero-fullbg { justify-content: flex-start; min-height: auto; }
  .hero-fullbg .hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,.6) 0%, rgba(0,0,0,.75) 100%);
  }
  .hero-fullbg .hero-content { max-width: 100% !important; }
  .hero-content h1 { font-size: 28px; }
  .hero-content p { font-size: 14px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions a { width: 100%; justify-content: center; padding: 14px 20px; }
  .hero-stat-row { gap: 20px; }
  .hero-stat strong { font-size: 22px; }

  /* Page banner */
  .page-banner { padding: 32px 16px; }
  .page-banner h1 { font-size: 24px; }
  .page-banner p { font-size: 13px; }

  /* Filter bar */
  .filter-bar { padding: 14px 16px; flex-direction: column; align-items: stretch; }
  .filter-label { display: none; }
  .filter-select { min-width: unset; width: 100%; }
  .btn-buscar { width: 100%; padding: 12px; font-size: 14px; }

  /* Sections */
  .section { padding: 36px 16px; }
  .section-head h2 { font-size: 22px; }
  .section-head p { font-size: 13px; }

  /* Grids */
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Cards */
  .card-img { height: 180px; }
  .card-body { padding: 16px; }
  .card-title { font-size: 13px; }
  .card-specs { gap: 8px; }
  .spec { font-size: 11px; }
  .price-value { font-size: 15px; }
  .btn-ver { padding: 8px 12px; font-size: 10px; }

  /* Category cards */
  .cat-card { height: 150px; }
  .cat-title { font-size: 13px; }

  /* Sobre */
  .sobre-grid { grid-template-columns: 1fr; gap: 24px; }
  .sobre-img { height: 220px; }

  /* Prontos pra morar — detalhe */
  .section > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* WA Banner */
  .wa-banner { padding: 36px 16px; flex-direction: column; text-align: center; }
  .wa-banner h2 { font-size: 18px; max-width: 100%; }
  .wa-banner p { font-size: 13px; }
  .wa-banner .btn-whatsapp { width: 100%; justify-content: center; }

  /* Footer */
  footer { padding: 36px 16px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Form */
  .form-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Table */
  .unidades-table td, .unidades-table th { padding: 10px 12px; font-size: 12px; }
  .btn-ver { padding: 6px 10px; }
}

/* ════════════════════════════════════
   SMALL MOBILE  (max 390px)
════════════════════════════════════ */
@media (max-width: 390px) {
  .hero-content h1 { font-size: 24px; }
  .grid-4 { grid-template-columns: 1fr; }
  .cat-card { height: 130px; }
  .hero-stat-row { flex-direction: column; gap: 12px; }
}

/* ════════════════════════════════════
   CARD IMAGE OVERLAY LINK
════════════════════════════════════ */
.badge, .badge-dark { z-index: 3; }

.card-img-link {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  background: rgba(28,28,30,0);
  transition: background .25s;
}
.card-img-link span {
  color: var(--white); font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 9px 18px; border: 1.5px solid rgba(255,255,255,0);
  opacity: 0; transition: opacity .25s, border-color .25s;
}
.card-img-link:hover { background: rgba(28,28,30,.45); }
.card-img-link:hover span { opacity: 1; border-color: rgba(255,255,255,.6); }

/* ════════════════════════════════════
   PROPERTY DETAIL PAGE
════════════════════════════════════ */
.prop-breadcrumb {
  background: var(--bg-light); border-bottom: 1px solid var(--border);
  padding: 14px 48px; font-size: 13px; color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}
.prop-breadcrumb a { color: var(--accent); text-decoration: none; font-weight: 600; }
.prop-breadcrumb a:hover { text-decoration: underline; }

.prop-hero-wrap {
  height: 480px; overflow: hidden; position: relative; background: #e8e8e8;
}
.prop-hero-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.prop-hero-wrap .badge, .prop-hero-wrap .badge-dark,
.prop-hero-wrap .badge-aluguel, .prop-hero-wrap .badge-revenda,
.prop-hero-wrap .badge-na-planta, .prop-hero-wrap .badge-pronto {
  top: 24px; left: 24px; font-size: 13px; padding: 7px 16px;
}

.prop-detail-layout {
  display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start;
}
.prop-title {
  font-size: 30px; font-weight: 700; color: var(--primary);
  margin: 6px 0 8px; line-height: 1.2;
}
.prop-detail-header {
  margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border);
}

.prop-gallery { margin-bottom: 36px; }
.prop-gallery-main { height: 360px; overflow: hidden; margin-bottom: 8px; }
.prop-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.prop-gallery-note {
  font-size: 12px; color: var(--muted); padding: 10px 14px;
  background: var(--bg-light); border-left: 3px solid var(--accent); margin-top: 8px;
}

.prop-info-row {
  display: flex; flex-wrap: wrap; gap: 24px;
  padding: 18px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.prop-info-item { display: flex; flex-direction: column; gap: 3px; min-width: 90px; }
.prop-info-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: var(--muted); }
.prop-info-value { font-size: 14px; font-weight: 600; color: var(--primary); }

.prop-section { margin-bottom: 36px; }
.prop-section h2 { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.prop-section > .divider { margin-bottom: 18px; }
.prop-section p { font-size: 15px; color: #555; line-height: 1.8; }
.prop-section p + p { margin-top: 12px; }

.prop-amenities { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.prop-amenity {
  background: var(--bg-light); border: 1px solid var(--border);
  padding: 8px 14px; font-size: 13px; color: var(--text);
  display: flex; align-items: center; gap: 6px;
}

.prop-units-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.prop-units-table th {
  background: var(--primary); color: var(--white);
  padding: 12px 16px; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px; text-align: left;
}
.prop-units-table td { padding: 14px 16px; font-size: 14px; border-bottom: 1px solid var(--border); }
.prop-units-table tr:hover td { background: var(--bg-light); }

.sidebar-card {
  position: sticky; top: calc(var(--header-h) + 20px);
  border: 1px solid var(--border); padding: 28px; background: var(--white);
}
.sidebar-price-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.6px; color: var(--muted); margin-bottom: 4px;
}
.sidebar-price-value {
  font-size: 26px; font-weight: 700; color: var(--primary); margin-bottom: 20px;
}
hr.sidebar-divider { border: none; border-top: 1px solid var(--border); margin: 16px 0; }
.sidebar-info-item {
  display: flex; gap: 10px; font-size: 13px; color: #555; margin-bottom: 10px; line-height: 1.5;
}
.sidebar-btn { display: flex; width: 100%; justify-content: center; margin-bottom: 10px; }
.btn-ghost-dark {
  background: transparent; color: var(--primary); text-decoration: none;
  border: 1.5px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 600; cursor: pointer; transition: all .2s;
}
.btn-ghost-dark:hover { border-color: var(--primary); background: var(--bg-light); }

.badge-aluguel, .badge-revenda, .badge-na-planta, .badge-pronto {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  font-size: 10px; font-weight: 700; letter-spacing: 0.8px;
  text-transform: uppercase; padding: 4px 10px; color: var(--white);
}
.badge-aluguel { background: #2196F3; }
.badge-revenda { background: #555; }
.badge-na-planta { background: #6B4FBB; }
.badge-pronto { background: var(--primary); }

@media (max-width: 1024px) {
  .prop-breadcrumb { padding: 14px 24px; }
  .prop-detail-layout { grid-template-columns: 1fr; gap: 32px; }
  .sidebar-card { position: static; }
}
@media (max-width: 768px) {
  .prop-breadcrumb { padding: 12px 16px; font-size: 12px; }
  .prop-hero-wrap { height: 240px; }
  .prop-gallery-main { height: 220px; }
  .prop-title { font-size: 22px; }
  .sidebar-card { padding: 20px; }
  .sidebar-price-value { font-size: 22px; }
  .prop-info-row { gap: 16px; }
}
