/* ============================================================
   ÁVORA IMOBILIÁRIA — style.css
   Versão: 2.0 — produção
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: #fff; color: #0a0a0a; overflow-x: hidden; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }
ul, ol { list-style: none; }

/* ── Focus visible (accessibility) ── */
:focus-visible { outline: 3px solid #005fcc; outline-offset: 2px; border-radius: 2px; }
.nav__link:focus-visible { outline-color: #fff; }
.section--black :focus-visible { outline-color: #fff; }

/* ── CSS Variables ── */
:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-100: #f6f6f6;
  --gray-200: #f0f0f0;
  --gray-300: #e8e8e8;
  --gray-400: #ccc;
  --gray-500: rgba(0,0,0,0.4);
  --gray-600: rgba(0,0,0,0.6);
  --green-wa: #25D366;
  --nav-h: 80px;
  --max-w: 1200px;
  --max-w-sm: 1000px;
  --px: 48px;
  --radius: 2px;
  --transition: 0.22s ease;
}

/* ── Typography ── */
.eyebrow {
  font-weight: 300; font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(0,0,0,0.35); display: block; margin-bottom: 10px;
}
.eyebrow--white { color: rgba(255,255,255,0.6); }
.section-title { font-size: clamp(26px,3vw,36px); font-weight: 400; color: var(--black); line-height: 1.2; }
.section-title--white { color: #fff; }
.section-title--light { font-weight: 300; }

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }
.container--sm { max-width: var(--max-w-sm); margin: 0 auto; padding: 0 var(--px); }
.section { padding: 80px var(--px); }
.section--black { background: #000; }
.section--gray { background: var(--gray-100); }
.section--gray-alt { background: #f9f9f9; }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: #000; height: var(--nav-h);
  padding: 0 var(--px);
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 70px; mix-blend-mode: screen; }
.nav__links { display: flex; gap: 32px; align-items: center; }
/* Skip to content (accessibility) */
.skip-link { position: absolute; left: -9999px; top: 8px; background: #fff; color: #000; padding: 10px 20px; font-size: 14px; font-weight: 500; z-index: 9999; border-radius: 2px; }
.skip-link:focus { left: 16px; }

.nav__link { font-weight: 300; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.72); transition: color var(--transition); }
.nav__link:hover, .nav__link.active { color: #fff; }
.nav__cta { font-weight: 300; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #000; background: #fff; padding: 9px 22px; transition: background var(--transition); }
.nav__cta:hover { background: #e0e0e0; }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav__burger span { display: block; width: 22px; height: 1.5px; background: #fff; transition: all 0.3s; }
.nav__mobile { display: none; position: fixed; inset: var(--nav-h) 0 auto 0; background: #000; padding: 28px var(--px); flex-direction: column; gap: 22px; z-index: 199; border-top: 1px solid rgba(255,255,255,0.08); }
.nav__mobile.open { display: flex; }

/* Page offset */
.page-offset { margin-top: var(--nav-h); }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 300; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; padding: 14px 32px; transition: all var(--transition); cursor: pointer; border: none; }
.btn--white { background: #fff; color: #000; }
.btn--white:hover { background: #e0e0e0; }
.btn--black { background: #0a0a0a; color: #fff; }
.btn--black:hover { background: #333; }
.btn--outline-white { border: 1px solid rgba(255,255,255,0.4); color: #fff; }
.btn--outline-white:hover { border-color: #fff; }
.btn--outline-dark { border: 1px solid rgba(0,0,0,0.25); color: #0a0a0a; }
.btn--outline-dark:hover { border-color: #0a0a0a; }
.btn--wa { background: var(--green-wa); color: #fff; font-weight: 400; letter-spacing: 0.06em; padding: 12px 20px; border-radius: 6px; }
.btn--wa:hover { background: #1db954; }
.btn--schedule { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; border: 1.5px solid #d0d0d0; color: #333; font-weight: 500; font-size: 14px; padding: 16px; border-radius: 8px; background: #fff; transition: border-color var(--transition), color var(--transition); }
.btn--schedule:hover { border-color: #0a0a0a; color: #0a0a0a; }

/* ── WhatsApp Float ── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; display: flex; filter: drop-shadow(0 4px 14px rgba(37,211,102,0.4)); transition: transform var(--transition), filter var(--transition); }
.wa-float:hover { transform: scale(1.08); filter: drop-shadow(0 6px 22px rgba(37,211,102,0.65)); }
.wa-float svg { width: 62px; height: 62px; }

/* ── Animations ── */
.fade-up { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ── Hero ── */
.hero { position: relative; min-height: 92vh; display: flex; align-items: flex-end; padding: 0 var(--px) 72px; margin-top: var(--nav-h); overflow: hidden; background: #000; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.38; display: block; }
.hero__inner { position: relative; z-index: 1; max-width: var(--max-w); margin: 0 auto; width: 100%; display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.hero__eyebrow { font-weight: 300; font-size: 11px; letter-spacing: 0.24em; text-transform: lowercase; color: rgba(255,255,255,0.6); display: block; margin-bottom: 18px; }
.hero__title { font-size: clamp(36px,5vw,72px); font-weight: 300; color: #fff; line-height: 1.04; white-space: nowrap; }
.hero__desc { max-width: 340px; }
.hero__desc p { font-weight: 300; font-size: 15px; line-height: 1.85; color: rgba(255,255,255,0.55); margin-bottom: 28px; }
.hero__btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Property Cards ── */
.cards-section { padding: 72px var(--px) 96px; }
.cards-section--gray { background: var(--gray-100); }
.section-header { margin-bottom: 36px; }
.section-header--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-bottom: 28px; border-bottom: 1px solid var(--gray-300); }

/* Filters */
.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; padding-bottom: 24px; border-bottom: 1px solid var(--gray-300); }
.filter-btn { font-weight: 300; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; padding: 8px 20px; border: 1px solid var(--gray-400); background: #fff; color: var(--black); border-radius: var(--radius); transition: all 0.18s; cursor: pointer; }
.filter-btn:hover { border-color: var(--black); }
.filter-btn.active { border-color: var(--black); background: var(--black); color: #fff; font-weight: 400; }

/* Cards grid */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.card { background: #fff; border: 1px solid var(--gray-300); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow var(--transition); }
.card:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.09); }
.card__img { height: 220px; position: relative; overflow: hidden; flex-shrink: 0; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card__img img { transform: scale(1.03); }
.card__tags { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; }
.tag { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 11px; border-radius: 20px; }
.tag--dark { background: #000; color: #fff; font-weight: 400; }
.tag--light { background: rgba(255,255,255,0.92); color: #0a0a0a; }
.card__body { padding: 18px 18px 0; flex: 1; display: flex; flex-direction: column; }
.card__city { font-weight: 300; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(0,0,0,0.38); display: block; margin-bottom: 4px; }
.card__name { font-size: 20px; font-weight: 400; color: var(--black); margin-bottom: 10px; line-height: 1.25; }
.card__specs { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px 12px; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--gray-200); }
.card__spec { font-weight: 300; font-size: 12px; color: rgba(0,0,0,0.55); display: flex; align-items: center; gap: 5px; }
.card__spec svg { flex-shrink: 0; opacity: 0.45; }
.card__code { font-weight: 300; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(0,0,0,0.3); margin-bottom: 4px; display: block; }
.card__actions-row { display: flex; gap: 8px; padding: 12px 18px; border-top: 1px solid #ebebeb; }
.card__wa-btn { flex: 1; background: #25D366; color: #fff; border: none; border-radius: 4px; font-size: 12px; font-weight: 400; padding: 10px 8px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 5px; transition: background 0.2s; text-decoration: none; text-align: center; }
.card__wa-btn:hover { background: #1db954; }
.card__detail-btn { flex: 1; background: #fff; color: #0a0a0a; border: 1px solid #0a0a0a; border-radius: 4px; font-size: 12px; font-weight: 300; letter-spacing: 0.1em; text-transform: uppercase; padding: 10px 8px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; text-decoration: none; text-align: center; }
.card__detail-btn:hover { background: #0a0a0a; color: #fff; }
.card__price-label { font-size: 11px; color: #999; display: block; margin-bottom: 2px; }
.card__price { font-weight: 800; font-size: 22px; color: #111; display: block; margin-bottom: 14px; letter-spacing: -0.02em; }
.card__cta { display: block; background: var(--black); color: #fff; font-weight: 300; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; text-align: center; padding: 13px; transition: background var(--transition); }
.card__cta:hover { background: #333; }
.card__actions { display: flex; border-top: 1px solid #ebebeb; margin-top: 14px; }
.card__action { flex: 1; background: none; border: none; border-right: 1px solid #ebebeb; cursor: pointer; padding: 11px; display: flex; align-items: center; justify-content: center; gap: 5px; font-weight: 300; font-size: 11px; color: rgba(0,0,0,0.42); transition: background 0.15s; }
.card__action:last-child { border-right: none; }
.card__action:hover { background: var(--gray-100); }
.card__action.fav-active { color: var(--black); }
.card__action.fav-active .fav-icon { fill: var(--black); }
.fav-icon { fill: none; stroke: currentColor; stroke-width: 1.3; transition: fill 0.2s; }
.no-results { padding: 64px; text-align: center; font-size: 20px; color: rgba(0,0,0,0.28); display: none; }
.no-results.show { display: block; }

/* ── Team ── */
.team-grid { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 52px; }
.team-card { flex: 1; min-width: 260px; }
.team-card__photo { overflow: hidden; margin-bottom: 18px; }
.team-card__photo img { width: 100%; height: 440px; object-fit: cover; }
.team-card__sep { padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 12px; }
.team-card__role { font-weight: 300; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.65); display: block; margin-bottom: 4px; }
.team-card__name { font-size: 26px; font-weight: 400; color: #fff; }
.team-card__bio { font-weight: 300; font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.45); margin-bottom: 14px; }
.team-card__contacts { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.team-card__tel { font-weight: 300; font-size: 13px; color: rgba(255,255,255,0.7); border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 2px; }
.team-card__creci { font-weight: 300; font-size: 11px; letter-spacing: 0.08em; color: rgba(255,255,255,0.28); text-transform: uppercase; }

/* ── FAQ ── */
.faq-list { margin-top: 48px; }
.faq-item { border-top: 1px solid #ddd; }
.faq-item:last-child { border-bottom: 1px solid #ddd; }
.faq-btn { width: 100%; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 22px 0; text-align: left; gap: 16px; }
.faq-btn__text { font-size: 18px; font-weight: 400; color: var(--black); line-height: 1.3; }
.faq-btn__icon { font-size: 20px; font-weight: 200; flex-shrink: 0; transition: transform 0.25s; }
.faq-item.open .faq-btn__icon { transform: rotate(45deg); }
.faq-body { display: none; padding: 0 0 24px; }
.faq-item.open .faq-body { display: block; }
.faq-body p { font-weight: 300; font-size: 15px; line-height: 1.85; color: var(--gray-600); }

/* ── CTA ── */
.cta-section { padding: 88px var(--px); text-align: center; }
.cta-eyebrow { font-weight: 300; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.6); display: block; margin-bottom: 22px; }
.cta-title { font-size: clamp(32px,4vw,52px); font-weight: 300; color: #fff; line-height: 1.08; margin-bottom: 40px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.footer { background: #000; padding: 60px var(--px) 32px; }
.footer__inner { max-width: var(--max-w); margin: 0 auto; }
.footer__top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer__logo img { height: 64px; mix-blend-mode: screen; margin-bottom: 12px; }
.footer__tagline { font-weight: 300; font-size: 12px; line-height: 1.75; color: rgba(255,255,255,0.24); max-width: 180px; }
.footer__col { display: flex; flex-direction: column; gap: 9px; }
.footer__col-title { font-weight: 300; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.2); margin-bottom: 2px; }
.footer__link { font-weight: 300; font-size: 13px; color: rgba(255,255,255,0.34); transition: color var(--transition); }
.footer__link:hover { color: #fff; }
.footer__bottom { padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer__copy { font-weight: 300; font-size: 11px; color: rgba(255,255,255,0.14); }

/* ── Property Detail ── */
.prop-hero { position: relative; height: 520px; overflow: hidden; background: #111; }
.prop-hero__img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.3s; }
.prop-hero__wm { position: absolute; bottom: 36px; right: 44px; width: 130px; opacity: 0.5; pointer-events: none; mix-blend-mode: screen; filter: invert(1); }
.prop-hero__badge { position: absolute; top: 24px; left: 24px; background: #000; color: #fff; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; padding: 5px 14px; }
.prop-hero__controls { position: absolute; bottom: 24px; left: 24px; display: flex; gap: 10px; align-items: center; }
.prop-hero__btn { background: rgba(0,0,0,0.55); border: 1px solid rgba(255,255,255,0.28); color: #fff; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; font-size: 18px; border-radius: 2px; transition: background 0.2s; cursor: pointer; }
.prop-hero__btn:hover { background: rgba(0,0,0,0.85); }
.prop-hero__counter { font-weight: 300; font-size: 12px; color: #fff; background: rgba(0,0,0,0.45); padding: 5px 12px; border-radius: 2px; }
.prop-infobar { background: #fff; border-bottom: 1px solid #ebebeb; padding: 24px var(--px); }
.prop-infobar__inner { max-width: var(--max-w); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.prop-location { font-weight: 300; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(0,0,0,0.35); display: block; margin-bottom: 4px; }
.prop-name { font-size: 32px; font-weight: 400; color: var(--black); }
.prop-specs { display: flex; gap: 20px; flex-wrap: wrap; }
.prop-spec { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.prop-spec span { font-weight: 300; font-size: 11px; color: var(--black); }
.prop-content { max-width: var(--max-w); margin: 0 auto; padding: 40px var(--px) 96px; }
.prop-cols { display: flex; gap: 48px; align-items: flex-start; }
.prop-main { flex: 1; min-width: 0; }
.prop-sidebar { position: sticky; top: 100px; width: 340px; flex-shrink: 0; }
.prop-section-title { font-size: 24px; font-weight: 400; margin-bottom: 16px; color: var(--black); }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 40px; }
.gallery-thumb { height: 115px; cursor: pointer; overflow: hidden; opacity: 0.72; outline: 2px solid transparent; outline-offset: 2px; transition: opacity 0.2s, outline 0.2s; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb:hover { opacity: 1; }
.gallery-thumb.active { outline-color: var(--black); opacity: 1; }
.prop-desc { font-weight: 300; font-size: 14px; line-height: 1.9; color: var(--gray-600); margin-bottom: 32px; }
.features { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid #ebebeb; margin-bottom: 40px; }
.feature { padding: 13px 0; border-bottom: 1px solid #ebebeb; display: flex; gap: 10px; align-items: center; }
.feature-dot { width: 5px; height: 5px; background: var(--black); border-radius: 50%; flex-shrink: 0; }
.feature span { font-weight: 300; font-size: 13px; color: var(--black); }
.cond-box { background: var(--gray-100); padding: 22px 26px; border-left: 3px solid var(--black); margin-top: 40px; }
.cond-box__label { font-weight: 300; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(0,0,0,0.38); display: block; margin-bottom: 6px; }
.cond-box__value { font-size: 20px; color: var(--black); }
.cond-box__note { font-size: 13px; font-weight: 300; color: rgba(0,0,0,0.48); }
.sidebar-box { border: 1px solid #e0e0e0; padding: 28px; margin-bottom: 16px; }
.sidebar-label { font-size: 13px; color: #888; display: block; margin-bottom: 6px; }
.sidebar-price { font-weight: 800; font-size: 30px; color: #111; letter-spacing: -0.03em; display: block; margin-bottom: 20px; }
.agents-box { background: var(--black); padding: 22px 18px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.agents-avatars { display: flex; flex-shrink: 0; }
.agent-av { width: 48px; height: 48px; border-radius: 50%; border: 3px solid var(--black); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 15px; color: #fff; }
.agent-av:nth-child(2) { margin-left: -14px; z-index: 0; }
.agents-text { flex: 1; min-width: 110px; }
.agents-text strong { font-size: 13px; color: #fff; display: block; margin-bottom: 3px; font-weight: 400; }
.agents-text span { font-weight: 300; font-size: 12px; color: rgba(255,255,255,0.48); }

/* ── Breadcrumb ── */
.breadcrumb { background: var(--gray-100); padding: 12px var(--px); border-bottom: 1px solid var(--gray-300); }
.breadcrumb__inner { max-width: var(--max-w); margin: 0 auto; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.breadcrumb__link { font-weight: 300; font-size: 12px; color: rgba(0,0,0,0.38); transition: color 0.2s; }
.breadcrumb__link:hover { color: var(--black); }
.breadcrumb__sep { font-size: 12px; color: rgba(0,0,0,0.22); }
.breadcrumb__cur { font-weight: 300; font-size: 12px; color: var(--black); }

/* ── Modal ── */
.modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 1000; align-items: center; justify-content: center; padding: 16px; }
.modal.open { display: flex; }
.modal__box { background: #fff; width: 100%; max-width: 430px; border-radius: 16px; padding: 32px 28px; position: relative; }
.modal__close { position: absolute; top: 14px; right: 14px; background: none; border: none; cursor: pointer; color: #aaa; font-size: 20px; line-height: 1; padding: 4px; }
.modal__icon { width: 44px; height: 44px; background: var(--gray-100); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.modal__title { font-size: 20px; font-weight: 400; color: var(--black); margin-bottom: 4px; }
.modal__sub { font-size: 13px; color: #888; font-weight: 300; margin-bottom: 22px; }
.modal__label { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: #aaa; margin-bottom: 8px; display: block; }
.modal__tipos { display: flex; gap: 10px; margin-bottom: 20px; }
.modal__tipo-btn { flex: 1; padding: 10px 8px; border-radius: 8px; font-size: 13px; font-weight: 500; cursor: pointer; border: 1.5px solid #e0e0e0; background: #fff; color: #666; transition: all 0.2s; }
.modal__tipo-btn.active { border-color: var(--black); background: var(--black); color: #fff; }
.modal__input { width: 100%; border: 1.5px solid #e8e8e8; border-radius: 8px; padding: 11px 14px; font-size: 14px; color: var(--black); outline: none; margin-bottom: 14px; transition: border-color 0.2s; }
.modal__input:focus { border-color: var(--black); }
.modal__confirm { width: 100%; background: var(--black); color: #fff; font-weight: 500; font-size: 14px; padding: 15px; border-radius: 10px; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 8px; transition: background 0.2s; }
.modal__confirm:hover { background: #333; }

/* ── Sobre Page ── */
.sobre-hero { background: #000; padding: 88px var(--px) 72px; margin-top: var(--nav-h); }
.sobre-mission { padding: 80px var(--px); }
.sobre-mission__inner { max-width: var(--max-w-sm); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.sobre-mission__quote { font-size: clamp(22px,3vw,32px); font-weight: 300; color: var(--black); line-height: 1.4; }
.sobre-mission__text { font-weight: 300; font-size: 15px; line-height: 1.85; color: var(--gray-600); }
.sobre-values { padding: 80px var(--px); }
.valores-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.valor-card { padding: 32px; border: 1px solid var(--gray-300); }
.valor-card__num { font-weight: 800; font-size: 11px; letter-spacing: 0.14em; color: rgba(0,0,0,0.2); display: block; margin-bottom: 14px; }
.valor-card__title { font-size: 18px; font-weight: 400; margin-bottom: 10px; }
.valor-card__desc { font-weight: 300; font-size: 13px; line-height: 1.75; color: var(--gray-600); }

/* ── Contato Page ── */
.contato-hero { background: #000; padding: 88px var(--px) 72px; margin-top: var(--nav-h); }
.contato-body { padding: 80px var(--px); }
.contato-body__inner { max-width: var(--max-w-sm); margin: 0 auto; display: flex; gap: 64px; flex-wrap: wrap; }
.contato-cards { flex: 1; min-width: 260px; display: flex; flex-direction: column; gap: 20px; }
.contato-card { background: var(--gray-100); padding: 30px; }
.contato-card__role { font-weight: 300; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(0,0,0,0.35); display: block; margin-bottom: 6px; }
.contato-card__name { font-size: 24px; font-weight: 400; margin-bottom: 4px; }
.contato-card__creci { font-weight: 300; font-size: 12px; color: rgba(0,0,0,0.38); margin-bottom: 18px; display: block; }
.contato-card__link { font-weight: 300; font-size: 14px; color: var(--black); border-bottom: 1px solid rgba(0,0,0,0.14); padding-bottom: 2px; display: inline-block; transition: border-color 0.2s; margin-bottom: 10px; }
.contato-card__link:hover { border-color: var(--black); }
.contato-info { flex: 1; min-width: 260px; }
.contato-info__block { margin-bottom: 36px; }
.contato-info__label { font-weight: 300; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(0,0,0,0.35); display: block; margin-bottom: 10px; }
.contato-info__text { font-weight: 300; font-size: 15px; line-height: 2; color: var(--black); }
.contato-info__text a:hover { opacity: 0.6; }

/* ── Imoveis Page ── */
.imoveis-hero { background: #000; padding: 72px var(--px) 56px; margin-top: var(--nav-h); }
.imoveis-hero__inner { max-width: var(--max-w); margin: 0 auto; }

/* ── Contact Form ── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 300; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(0,0,0,0.45); margin-bottom: 8px; }
.form-input, .form-textarea, .form-select { width: 100%; border: 1.5px solid var(--gray-300); border-radius: 4px; padding: 13px 16px; font-size: 14px; font-family: inherit; color: var(--black); outline: none; transition: border-color 0.2s; background: #fff; }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--black); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 16px; background: var(--black); color: #fff; border: none; font-family: inherit; font-weight: 400; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; border-radius: 4px; transition: background 0.2s; margin-top: 8px; }
.form-submit:hover { background: #333; }
.form-success { display: none; padding: 20px; background: #f0faf4; border: 1.5px solid #25D366; border-radius: 4px; color: #1a6b3a; font-weight: 300; font-size: 14px; text-align: center; margin-top: 16px; }
.form-success.show { display: block; }

/* ── Maps ── */
.maps-section { padding: 0; }
.maps-section iframe { display: block; width: 100%; height: 420px; border: none; filter: grayscale(15%); }

/* ── Social Links ── */
.social-links { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 12px; }
.social-link { display: flex; align-items: center; gap: 8px; font-weight: 300; font-size: 13px; color: var(--black); border-bottom: 1px solid rgba(0,0,0,0.15); padding-bottom: 2px; transition: border-color 0.2s; }
.social-link:hover { border-color: var(--black); }

/* ── Responsive updates ── */
@media (max-width: 680px) {
  .hero__title { white-space: normal; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 80vh; }
}
  :root { --px: 32px; }
  .prop-sidebar { position: static !important; width: 100% !important; margin-top: 32px; }
  .prop-cols { flex-direction: column; }
  .sobre-mission__inner { grid-template-columns: 1fr; gap: 32px; }
  .valores-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  :root { --nav-h: 64px; --px: 20px; }
  .nav { padding: 0 var(--px); height: var(--nav-h); }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero__title { white-space: normal; }
  .hero { padding: 60px var(--px) 56px; margin-top: var(--nav-h); }
  .team-grid { flex-direction: column; }
  .team-card__photo img { height: 300px; }
  .cta-title { font-size: 28px; }
  .footer__top { flex-direction: column; gap: 28px; }
  .prop-hero { height: 260px; }
  .prop-hero__wm { width: 90px; bottom: 16px; right: 16px; }
  .prop-infobar { padding: 18px var(--px); }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .features { grid-template-columns: 1fr; }
  .sobre-mission__inner { grid-template-columns: 1fr; }
  .valores-grid { grid-template-columns: 1fr; }
  .contato-body__inner { flex-direction: column; }
}
