/* =============================================
   ROGÉRIO CHAGAS IMÓVEIS — STYLESHEET
   ============================================= */

/* ---- Variáveis ---- */
:root {
  --navy:        #0a1628;
  --navy-mid:    #12213a;
  --navy-dark:   #060e1a;
  --silver:      #c0c8d4;
  --light:       #f4f6f8;
  --white:       #ffffff;
  --gold:        #b8972e;
  --gold-hover:  #9a7d26;
  --text:        #1e2d42;
  --muted:       #6b7c93;
  --green-wa:    #25d366;
  --green-wa-hv: #1ebe57;

  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'Inter', system-ui, -apple-system, sans-serif;

  --radius:    4px;
  --radius-lg: 8px;
  --shadow:    0 4px 24px rgba(10, 22, 40, 0.08);
  --shadow-md: 0 8px 40px rgba(10, 22, 40, 0.16);
  --ease:      0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w:     1200px;
  --hh:        72px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }
input, textarea, button, select { font-family: inherit; }

/* ---- Container ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   BOTÕES
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(184, 151, 46, 0.3);
}
.btn--primary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 151, 46, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn--whatsapp {
  background: var(--green-wa);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.btn--whatsapp:hover {
  background: var(--green-wa-hv);
  transform: translateY(-1px);
}

.btn--card {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 20px;
  margin-top: auto;
  padding-top: 16px;
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--ease);
}
.btn--card:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--full { width: 100%; }

/* =============================================
   HELPERS DE SEÇÃO
   ============================================= */
.section__tag {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.section__title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 16px;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}
.section__header .section__subtitle {
  margin: 0 auto;
}

/* =============================================
   ANIMAÇÕES
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--hh);
  display: flex;
  align-items: center;
  background: rgba(10, 22, 40, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(192, 200, 212, 0.08);
  transition: background var(--ease), box-shadow var(--ease);
}
.header.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header__logo img { height: 42px; width: auto; }
.header__logo-text {
  display: flex;
  flex-direction: column;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
}
.header__logo-text small {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  font-weight: 400;
}

/* Nav */
.nav { display: flex; }
.nav__list { display: flex; gap: 40px; }
.nav__link {
  position: relative;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  padding-bottom: 3px;
  transition: color var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--ease);
}
.nav__link:hover,
.nav__link.active { color: var(--white); }
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

.header__whatsapp { display: inline-flex; flex-shrink: 0; }

/* Hamburger */
.header__menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  flex-shrink: 0;
}
.header__menu-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--silver);
  border-radius: 2px;
  transition: var(--ease);
  transform-origin: center;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  background:
    url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1920&q=80')
    center / cover no-repeat;
  padding-top: var(--hh);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.88) 0%,
    rgba(10, 22, 40, 0.65) 55%,
    rgba(10, 22, 40, 0.42) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 32px 0;
}

.hero__tag {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 18px;
  border-radius: 50px;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* =============================================
   SOBRE
   ============================================= */
.sobre {
  padding: 120px 0;
  background: var(--white);
}

.sobre__inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 88px;
  align-items: center;
}

.sobre__photo {
  position: relative;
}
.sobre__photo::before {
  content: '';
  position: absolute;
  top: -18px; left: -18px;
  right: 18px; bottom: 18px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.sobre__photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.sobre__lead {
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 16px;
}

.sobre__text {
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 40px;
}

.sobre__diferenciais {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.diferencial {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.diferencial__icon {
  font-size: 1.35rem;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.diferencial strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.diferencial p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

.sobre__creci {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--silver);
  padding-top: 18px;
}

/* =============================================
   IMÓVEIS
   ============================================= */
.imoveis {
  padding: 120px 0;
  background: var(--light);
}

.imoveis__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.imovel-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
  height: 100%;
}
.imovel-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
}

.imovel-card__img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.imovel-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.imovel-card:hover .imovel-card__img img {
  transform: scale(1.06);
}

.imovel-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.imovel-card__badge--comercial {
  background: var(--gold);
}

.imovel-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.imovel-card__title {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.imovel-card__local {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 6px;
}
.imovel-card__local svg { flex-shrink: 0; color: var(--gold); }
.imovel-card__code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 11px;
  color: var(--silver);
  opacity: .7;
  margin-bottom: 6px;
}
.imovel-card__desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* =============================================
   CARDS — NOVOS ELEMENTOS
   ============================================= */

/* Card inteiro clicável */
.imovel-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

/* Preço no card */
.imovel-card__price {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin: 10px 0 0;
}

/* Badge condomínio */
.imovel-card__badge--condo {
  background: var(--gold);
  top: 14px;
  left: auto;
  right: 14px;
}

/* Badge terreno */
.imovel-card__badge--terreno {
  background: #4a6741;
}

/* Rodapé da seção de imóveis */
.imoveis__footer {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

/* Grid compacto para terrenos no modal */
.imoveis__grid--terrenos {
  grid-template-columns: repeat(3, 1fr);
}

/* =============================================
   MODAL — TODOS OS IMÓVEIS
   ============================================= */
.modal-imoveis {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 16px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-imoveis.open {
  opacity: 1;
  pointer-events: all;
}

.modal-imoveis__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 14, 26, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal-imoveis__box {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: var(--max-w);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(6, 14, 26, 0.4);
  transform: translateY(24px);
  transition: transform 0.35s cubic-bezier(.2,.8,.4,1);
  overflow: hidden;
}
.modal-imoveis.open .modal-imoveis__box {
  transform: translateY(0);
}

.modal-imoveis__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid var(--light);
  flex-shrink: 0;
}
.modal-imoveis__title {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--navy);
}
.modal-imoveis__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--muted);
  transition: background var(--ease), color var(--ease);
}
.modal-imoveis__close:hover {
  background: var(--light);
  color: var(--navy);
}

.modal-imoveis__body {
  overflow-y: auto;
  padding: 32px;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: var(--silver) transparent;
}
.modal-imoveis__body::-webkit-scrollbar { width: 6px; }
.modal-imoveis__body::-webkit-scrollbar-thumb {
  background: var(--silver);
  border-radius: 6px;
}

/* Grupos dentro do modal */
.modal-grupo {
  margin-bottom: 56px;
}
.modal-grupo:last-child { margin-bottom: 0; }

.modal-grupo__title {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

/* No modal, remover o fade-in delay dos cards */
.modal-imoveis .imovel-card {
  opacity: 1 !important;
  transform: none !important;
}

/* =============================================
   CONTATO
   ============================================= */
.contato {
  padding: 120px 0;
  background: var(--navy);
}

.contato__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}

.contato .section__tag  { color: var(--gold); }
.contato .section__title { color: var(--white); }

.contato__lead {
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 52px;
}

.contato__canais {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.canal {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  color: var(--silver);
  font-size: 0.92rem;
  border: 1px solid rgba(192, 200, 212, 0.18);
  border-radius: var(--radius);
  transition: var(--ease);
}
.canal svg { color: var(--gold); flex-shrink: 0; }
.canal:hover {
  color: var(--white);
  border-color: rgba(184, 151, 46, 0.5);
  background: rgba(184, 151, 46, 0.08);
  transform: translateX(4px);
}

/* Formulário */
.contato__form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(192, 200, 212, 0.14);
  border-radius: var(--radius-lg);
  padding: 40px 40px 36px;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}
.contato__form h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 32px;
}

.form__group { margin-bottom: 20px; }
.form__group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 8px;
}
.form__group label .required {
  color: #f87171;
  font-weight: 700;
  letter-spacing: 0;
}
.form__group input,
.form__group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(192, 200, 212, 0.2);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--ease), background var(--ease), box-shadow var(--ease);
  resize: vertical;
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: rgba(192, 200, 212, 0.38); }
.form__group input:focus,
.form__group textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(184, 151, 46, 0.18);
}
.contato__form .btn--primary { margin-top: 8px; }

.form__success {
  display: none;
  margin-top: 16px;
  text-align: center;
  color: #4ade80;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Campo de interesse */
.form__interesse {
  margin-bottom: 20px;
}
.form__interesse-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 10px;
}
.interesse-opcoes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.interesse-btn {
  padding: 11px 8px;
  border: 1.5px solid rgba(192, 200, 212, 0.4);
  border-radius: 8px;
  background: transparent;
  color: var(--silver);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              background   0.3s cubic-bezier(0.4, 0, 0.2, 1),
              color        0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.interesse-btn:hover {
  border-color: rgba(184, 151, 46, 0.5);
  color: rgba(184, 151, 46, 0.85);
  background: rgba(184, 151, 46, 0.05);
}
.interesse-btn.selected {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184, 151, 46, 0.1);
}

/* Erros de validação */
.form__error {
  display: block;
  margin-top: 6px;
  font-size: 0.72rem;
  color: #f87171;
  min-height: 18px;
}
.form__group--error input,
.form__group--error textarea {
  border-color: rgba(248, 113, 113, 0.55) !important;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.1) !important;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy-dark);
  padding: 64px 0 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(192, 200, 212, 0.1);
}

.footer__logo {
  height: 56px;
  width: auto;
  opacity: 0.9;
  margin-bottom: 10px;
}
.footer__logo-text {
  display: block;
  font-family: var(--serif);
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.footer__brand p {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__links {
  display: flex;
  gap: 32px;
}
.footer__links a {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--ease);
}
.footer__links a:hover { color: var(--white); }

.footer__social {
  display: flex;
  gap: 14px;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  color: var(--muted);
  border: 1px solid rgba(192, 200, 212, 0.15);
  transition: var(--ease);
}
.footer__social a:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(184, 151, 46, 0.1);
}

.footer__bottom {
  text-align: center;
  padding: 20px 24px;
}
.footer__bottom p {
  font-size: 0.72rem;
  color: rgba(107, 124, 147, 0.55);
}

/* =============================================
   WHATSAPP FLUTUANTE
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 999;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--green-wa);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green-wa);
  animation: wa-pulse 2.6s ease-out infinite;
  z-index: -1;
}
.whatsapp-float:hover {
  background: var(--green-wa-hv);
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* =============================================
   RESPONSIVO
   ============================================= */

/* Tablet */
@media (max-width: 1024px) {
  .imoveis__grid { grid-template-columns: repeat(2, 1fr); }

  .sobre__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .sobre__photo::before { display: none; }
  .sobre__photo img { height: 420px; }

  .contato__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

/* Tablet — modal */
@media (max-width: 1024px) {
  .modal-imoveis { padding: 16px 12px; }
  .imoveis__grid--terrenos { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --hh: 64px; }
  .modal-imoveis__head { padding: 20px; }
  .modal-imoveis__body { padding: 20px; }
  .modal-imoveis__title { font-size: 1.2rem; }
  .imoveis__grid--terrenos { grid-template-columns: 1fr; }

  .header__menu-btn { display: flex; }
  .header__whatsapp { display: none; }

  .nav {
    position: fixed;
    top: var(--hh);
    left: 0; right: 0;
    background: var(--navy);
    padding: 20px 24px 28px;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--ease), opacity var(--ease);
    border-bottom: 1px solid rgba(192, 200, 212, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav__list { flex-direction: column; gap: 0; }
  .nav__link {
    display: block;
    padding: 14px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(192, 200, 212, 0.1);
  }
  .nav__link:last-child { border-bottom: none; }

  .sobre       { padding: 80px 0; }
  .imoveis     { padding: 80px 0; }
  .contato     { padding: 80px 0; }
  .footer      { padding-top: 48px; }

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

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { flex-wrap: wrap; justify-content: center; }
  .footer__social { justify-content: center; }

  .hero__title    { font-size: 2.2rem; }
  .hero__content  { padding: 60px 0; }
  .hero__actions  { flex-direction: column; }
  .hero__actions .btn { width: 100%; }

  .contato__form { padding: 28px 20px 24px; }
  .interesse-opcoes { grid-template-columns: repeat(2, 1fr); }

  .whatsapp-float {
    bottom: 20px; right: 20px;
    width: 54px; height: 54px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section__title { font-size: 1.8rem; }
  .sobre__photo img { height: 300px; }
}
