  :root {
    --green-900: #06342b;
    --green-800: #08493c;
    --green-700: #0b6350;
    --green-600: #0f7a63;
    --green-500: #14a37f;
    --green-400: #2ec695;
    --green-100: #e3f5ee;
    --green-50: #f4faf7;
    --ink: #10241f;
    --ink-soft: #4a635c;
    --paper: #ffffff;
    --line: #dcece6;
    --shadow: 0 10px 30px rgba(6, 52, 43, 0.12);
    --radius: 16px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-wrap: break-word;
  }

  img, svg { display: block; max-width: 100%; }

  a { color: inherit; text-decoration: none; }

  .container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    white-space: nowrap;
  }
  .btn:hover { transform: translateY(-2px); }

  .btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  }
  .btn-whatsapp:hover { background: #1ebe5a; box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45); }

  .btn-outline {
    background: transparent;
    color: var(--green-100);
    border: 1.5px solid rgba(255,255,255,0.5);
  }
  .btn-outline:hover { background: rgba(255,255,255,0.1); }

  .btn-dark {
    background: var(--green-800);
    color: #fff;
  }
  .btn-dark:hover { background: var(--green-900); }

  .icon-wa {
    width: 20px; height: 20px; flex-shrink: 0;
  }

  /* ---------- Header ---------- */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(6, 52, 43, 0.0);
    backdrop-filter: blur(0px);
    transition: background 0.25s ease, backdrop-filter 0.25s ease, box-shadow 0.25s ease;
    padding: 18px 0;
  }
  header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 18px rgba(6,52,43,0.08);
    padding: 12px 0;
  }
  header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.15rem;
    color: #fff;
    transition: color 0.25s ease;
  }
  header.scrolled .brand { color: var(--green-900); }
  .brand-mark {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--green-400), var(--green-700));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 800; font-size: 1.1rem;
    flex-shrink: 0;
  }
  .brand-mark svg {
    width: 60%; height: 60%;
  }
  .brand small {
    display: block;
    font-weight: 500;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
  }
  header.scrolled .brand small { color: var(--ink-soft); }

  nav.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  nav.main-nav a.nav-link {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    font-size: 0.94rem;
    transition: color 0.25s ease;
  }
  header.scrolled nav.main-nav a.nav-link { color: var(--ink); }
  nav.main-nav a.nav-link:hover { color: var(--green-400); }

  .nav-cta { display: none; }

  /* Mobile nav toggle (hamburger) */
  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 10px;
    cursor: pointer;
    flex-shrink: 0;
  }
  .nav-toggle span {
    display: block;
    width: 18px; height: 2px;
    background: #fff;
    transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
  }
  header.scrolled .nav-toggle { background: rgba(6,52,43,0.08); border-color: var(--line); }
  header.scrolled .nav-toggle span { background: var(--ink); }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  @media (max-width: 860px) {
    .nav-toggle { display: flex; }
    nav.main-nav { gap: 12px; }
    .nav-links {
      flex-direction: column;
      align-items: flex-start;
      gap: 4px;
      position: absolute;
      top: 100%;
      left: 0; right: 0;
      background: var(--green-900);
      padding: 0 24px;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.3s ease;
    }
    header.scrolled .nav-links { background: #fff; box-shadow: 0 12px 24px rgba(6,52,43,0.12); }
    .nav-links.open {
      max-height: 340px;
      opacity: 1;
      padding: 16px 24px 24px;
    }
    .nav-links a.nav-link {
      padding: 12px 0;
      width: 100%;
      border-bottom: 1px solid rgba(255,255,255,0.12);
    }
    header.scrolled .nav-links a.nav-link { border-bottom-color: var(--line); }
  }

  @media (max-width: 400px) {
    .brand { font-size: 1rem; gap: 8px; }
    .brand-mark { width: 34px; height: 34px; font-size: 0.95rem; }
    .brand small { font-size: 0.6rem; }
    .btn { padding: 14px 20px; font-size: 0.92rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
  }

  /* ---------- Hero ---------- */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
      radial-gradient(1200px 600px at 85% -10%, rgba(46, 198, 149, 0.35), transparent 60%),
      radial-gradient(900px 500px at 0% 110%, rgba(15, 122, 99, 0.4), transparent 60%),
      linear-gradient(160deg, var(--green-900) 0%, var(--green-800) 45%, var(--green-700) 100%);
    overflow: hidden;
    padding-top: 110px;
    padding-bottom: 80px;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: radial-gradient(circle at 70% 30%, black, transparent 70%);
    pointer-events: none;
  }
  .hero-blob {
    position: absolute;
    width: 620px; height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46,198,149,0.35), transparent 70%);
    top: -180px; right: -160px;
    filter: blur(10px);
    pointer-events: none;
  }
  .hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
  }
  @media (max-width: 900px) {
    .hero .container { grid-template-columns: 1fr; }
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--green-100);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .eyebrow .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--green-400);
    box-shadow: 0 0 0 4px rgba(46,198,149,0.25);
  }

  .hero h1 {
    font-size: clamp(2.2rem, 4.6vw, 3.4rem);
    line-height: 1.12;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
  }
  .hero h1 span {
    background: linear-gradient(90deg, var(--green-400), #a8f0d4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .hero .slogan {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    color: var(--green-100);
    font-weight: 500;
    max-width: 540px;
    margin-bottom: 34px;
  }
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 28px;
  }
  @media (max-width: 480px) {
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  }
  .hero-stats .stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
  }
  .hero-stats .stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

  /* Hero visual card */
  .hero-card {
    position: relative;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(6px);
  }
  .hero-card .avatar-ring {
    width: 96px; height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-400), var(--green-700));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 2.1rem; font-weight: 800;
    margin: 0 auto 16px;
    border: 3px solid rgba(255,255,255,0.5);
  }
  .hero-card .avatar-ring svg { width: 38%; height: 38%; }
  .hero-card h3 {
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 4px;
  }
  .hero-card p.role {
    text-align: center;
    color: var(--green-100);
    font-size: 0.85rem;
    margin-bottom: 22px;
  }
  .hero-card .badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .badge-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 12px;
    padding: 12px 14px;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
  }
  .badge-row > * { min-width: 0; }
  .badge-row .ico {
    width: 34px; height: 34px;
    border-radius: 9px;
    background: rgba(46,198,149,0.25);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  /* ---------- Sections shared ---------- */
  section { padding: 96px 0; }
  .section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
  }
  .section-head .tag {
    display: inline-block;
    color: var(--green-600);
    background: var(--green-100);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
  }
  .section-head h2 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
  }
  .section-head p {
    color: var(--ink-soft);
    font-size: 1.02rem;
  }

  /* ---------- Sobre ---------- */
  .about-wrap {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: center;
  }
  @media (max-width: 900px) {
    .about-wrap { grid-template-columns: 1fr; }
  }
  .about-photo {
    position: relative;
    border-radius: 24px;
    background: linear-gradient(160deg, var(--green-600), var(--green-900));
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    overflow: hidden;
  }
  .about-photo .initials {
    width: 30%;
    color: rgba(255,255,255,0.92);
  }
  .about-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.15), transparent 55%);
  }
  .about-photo .float-card {
    position: absolute;
    bottom: 18px; left: 18px; right: 18px;
    background: rgba(255,255,255,0.95);
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  }
  .about-photo .float-card > * { min-width: 0; }
  .float-card .star-ico { color: #f5a623; font-size: 1.3rem; }
  .float-card strong { display: block; font-size: 0.95rem; color: var(--ink); }
  .float-card span { font-size: 0.78rem; color: var(--ink-soft); }

  .about-text h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 800; margin-bottom: 18px; }
  .about-text p { color: var(--ink-soft); margin-bottom: 16px; font-size: 1.02rem; }
  .about-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 26px 0 30px;
  }
  @media (max-width: 480px) { .about-list { grid-template-columns: 1fr; } }
  .about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.94rem;
    color: var(--ink);
  }
  .check-ico {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--green-100);
    color: var(--green-600);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
  }

  /* ---------- Serviços ---------- */
  .services-bg { background: var(--green-50); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  @media (max-width: 980px) { .services-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

  .service-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--green-400);
  }
  .service-ico {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--green-500), var(--green-700));
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    color: #fff;
  }
  .service-card h3 { font-size: 1.08rem; margin-bottom: 10px; font-weight: 700; }
  .service-card p { color: var(--ink-soft); font-size: 0.92rem; }

  /* ---------- Diferenciais / processo ---------- */
  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: step;
  }
  @media (max-width: 980px) { .steps { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
  .step {
    position: relative;
    padding: 28px 22px;
    border-radius: var(--radius);
    background: var(--paper);
    border: 1px solid var(--line);
  }
  .step .step-num {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--green-900);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    margin-bottom: 16px;
  }
  .step h4 { font-size: 1rem; margin-bottom: 8px; font-weight: 700; }
  .step p { font-size: 0.9rem; color: var(--ink-soft); }

  /* ---------- Depoimentos ---------- */
  .testimonials-bg {
    background: linear-gradient(160deg, var(--green-900), var(--green-800));
    color: #fff;
  }
  .testimonials-bg .section-head p { color: rgba(255,255,255,0.7); }
  .testimonials-bg .section-head .tag { background: rgba(255,255,255,0.12); color: var(--green-100); }
  .t-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  @media (max-width: 900px) { .t-grid { grid-template-columns: 1fr; } }
  .t-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius);
    padding: 26px;
  }
  .t-card .stars { color: #f5c542; margin-bottom: 14px; font-size: 0.95rem; letter-spacing: 2px; }
  .t-card p.quote { font-size: 0.95rem; color: rgba(255,255,255,0.9); margin-bottom: 20px; }
  .t-person { display: flex; align-items: center; gap: 12px; }
  .t-person > * { min-width: 0; }
  .t-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--green-400), var(--green-700));
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.9rem;
  }
  .t-person strong { font-size: 0.88rem; display: block; }
  .t-person span { font-size: 0.75rem; color: rgba(255,255,255,0.6); }

  /* ---------- Contato (formulário) ---------- */
  .contact-section { background: var(--green-50); }
  .contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
    align-items: start;
  }
  @media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
  .contact-grid > * { min-width: 0; }
  .hero .container > * { min-width: 0; }
  .about-wrap > * { min-width: 0; }
  .footer-grid > * { min-width: 0; }

  .contact-info {
    background: linear-gradient(160deg, var(--green-800), var(--green-900));
    border-radius: 24px;
    padding: 36px 32px;
    color: #fff;
  }
  .contact-info h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 10px; }
  .contact-info p { color: var(--green-100); font-size: 0.94rem; margin-bottom: 24px; }
  .badges { display: flex; flex-direction: column; gap: 14px; }
  .badge-row-light {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 12px;
    padding: 14px 16px;
  }
  .badge-row-light > * { min-width: 0; }
  .badge-row-light strong { display: block; font-size: 0.88rem; }
  .badge-row-light span { font-size: 0.82rem; color: rgba(255,255,255,0.7); }
  .ico-light {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(46,198,149,0.25);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 1.05rem;
  }

  .contact-form {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 36px;
    box-shadow: var(--shadow);
  }
  .form-row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
  .form-row-group { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  @media (max-width: 560px) { .form-row-group { grid-template-columns: 1fr; gap: 0; } }
  .contact-form label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ink);
  }
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    font-family: inherit;
    font-size: 0.95rem;
    padding: 13px 16px;
    border-radius: 12px;
    border: 1.5px solid var(--line);
    background: var(--green-50);
    color: var(--ink);
    resize: vertical;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
  }
  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: var(--green-500);
    box-shadow: 0 0 0 4px rgba(20, 163, 127, 0.15);
    background: #fff;
  }
  .form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--ink-soft);
    margin-top: 14px;
  }

  /* ---------- Footer ---------- */
  footer {
    background: var(--green-900);
    color: rgba(255,255,255,0.75);
    padding: 56px 0 28px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  @media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }
  .footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
  .footer-brand strong { color: #fff; font-size: 1.05rem; }
  footer h5 { color: #fff; font-size: 0.9rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.04em; }
  footer ul { list-style: none; }
  footer li { margin-bottom: 10px; font-size: 0.92rem; }
  footer li a:hover { color: var(--green-400); }
  .footer-contact-item { display: flex; align-items: center; gap: 10px; }
  .bottom-bar {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.82rem;
  }

  /* ---------- Floating WhatsApp ---------- */
  .float-wa {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 200;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 14px 20px;
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
    font-weight: 700;
    font-size: 0.92rem;
    animation: float-pulse 2.6s ease-in-out infinite;
  }
  .float-wa:hover { background: #1ebe5a; }
  .float-wa .icon-wa { width: 22px; height: 22px; }
  @keyframes float-pulse {
    0%, 100% { box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45); }
    50% { box-shadow: 0 12px 34px rgba(37, 211, 102, 0.7); }
  }
  @media (max-width: 560px) {
    .float-wa span.label { display: none; }
    .float-wa { padding: 16px; }
    .bottom-bar { padding-bottom: 64px; }
  }

  /* reveal animation */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.in { opacity: 1; transform: translateY(0); }

  /* ---------- Página de Imóveis ---------- */
  .page-hero {
    position: relative;
    padding-top: 150px;
    padding-bottom: 56px;
    background:
      radial-gradient(1200px 500px at 85% -10%, rgba(46, 198, 149, 0.3), transparent 60%),
      linear-gradient(160deg, var(--green-900) 0%, var(--green-800) 55%, var(--green-700) 100%);
    overflow: hidden;
  }
  .page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: radial-gradient(circle at 75% 20%, black, transparent 70%);
    pointer-events: none;
  }
  .page-hero .container { position: relative; z-index: 2; max-width: 760px; }
  .page-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: #fff; margin-bottom: 14px; letter-spacing: -0.01em; }
  .page-hero p { font-size: 1.02rem; color: var(--green-100); max-width: 600px; }

  .filter-section { background: var(--green-50); padding: 28px 0; border-bottom: 1px solid var(--line); }
  .filter-bar { display: flex; flex-wrap: wrap; gap: 10px; }
  .filter-pill {
    border: 1.5px solid var(--line);
    background: var(--paper);
    color: var(--ink-soft);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 9px 18px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    white-space: nowrap;
  }
  .filter-pill:hover { border-color: var(--green-400); }
  .filter-pill.active { background: var(--green-700); border-color: var(--green-700); color: #fff; }
  .results-count { margin-top: 14px; font-size: 0.86rem; color: var(--ink-soft); }

  .imoveis-section { background: var(--paper); padding: 48px 0 96px; }
  .imoveis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  @media (max-width: 980px) { .imoveis-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 680px) { .imoveis-grid { grid-template-columns: 1fr; } }

  .imovel-card {
    display: flex;
    flex-direction: column;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    min-width: 0;
  }
  .imovel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green-400); }

  .imovel-media {
    position: relative;
    padding: 22px 20px;
    background: linear-gradient(160deg, var(--green-600), var(--green-900));
    color: #fff;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
  }
  .imovel-media .imovel-ico { font-size: 1.8rem; flex-shrink: 0; }
  .imovel-status {
    display: inline-block;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 999px;
    white-space: nowrap;
  }

  .imovel-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; flex: 1; min-width: 0; }
  .imovel-zone {
    display: inline-block;
    align-self: flex-start;
    color: var(--green-600);
    background: var(--green-100);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
  }
  .imovel-title { font-size: 1.05rem; font-weight: 800; color: var(--ink); line-height: 1.35; }
  .imovel-entrega { font-size: 0.82rem; color: var(--ink-soft); }
  .imovel-block { font-size: 0.86rem; color: var(--ink-soft); }
  .imovel-block strong { color: var(--ink); display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 3px; }
  .imovel-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 6px; }
  .imovel-links a {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--green-700);
    background: var(--green-100);
    padding: 6px 12px;
    border-radius: 999px;
    transition: background 0.15s ease;
  }
  .imovel-links a:hover { background: var(--green-400); color: var(--green-900); }
  .imovel-cta {
    width: 100%;
    padding: 12px 18px;
    font-size: 0.92rem;
  }

  .imoveis-empty {
    text-align: center;
    padding: 64px 24px;
    color: var(--ink-soft);
    grid-column: 1 / -1;
  }
