/* ============================================================
   Rio Oasis — Identidade Visual
   Cream #F9F5EE · Navy #1C3A4A · Gold #C9A84C
   ============================================================ */

:root {
  --cream:      #F9F5EE;
  --navy:       #1C3A4A;
  --navy-soft:  #2D5166;
  --gold:       #C9A84C;
  --gold-light: #E8D5A3;
  --muted:      #5A7080;
  --light:      #EEF4F7;
  --white:      #FFFFFF;

  --font-heading: 'Cormorant Garamond', serif;
  --font-body:    'Inter', sans-serif;

  --radius: 8px;
  --max-width: 1100px;
  --section-padding: 96px 24px;
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--navy); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  border: none;
  line-height: 1;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-gold    { background: var(--gold); color: var(--navy); }
.btn-navy    { background: var(--navy); color: var(--white); }
.btn-outline { background: transparent; border: 2px solid var(--gold); color: var(--gold); }

/* ─── Nav ────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(201,168,76,0.25);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 24px;
}

.nav__logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--navy); }

/* ─── Section labels & titles ────────────────────────────── */
.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 96px;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('fotos/Vista copa hero rio oasis.jpg');
  background-size: cover;
  background-position: center 55%;
  opacity: 0.28;
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(28,58,74,0.92) 0%,
    rgba(28,58,74,0.70) 50%,
    rgba(28,58,74,0.30) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero__text {
  max-width: 640px;
}

.hero__tag {
  display: inline-block;
  background: rgba(201,168,76,0.13);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

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

.hero__sub {
  font-size: 1.02rem;
  color: rgba(249,245,238,0.72);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero__bullets {
  list-style: none;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(249,245,238,0.82);
  font-size: 0.93rem;
}

.hero__bullets li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* Hero visual */
.hero__visual {
  position: relative;
}

.hero__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.03);
}

.hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__img-placeholder {
  text-align: center;
  color: rgba(201,168,76,0.35);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.hero__img-placeholder span {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 8px;
  opacity: 0.5;
}

.hero__stats {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  background: var(--white);
  border-radius: 12px;
  padding: 16px 0;
  box-shadow: 0 8px 32px rgba(28,58,74,0.14);
  white-space: nowrap;
}

.hero__stat {
  text-align: center;
  padding: 0 24px;
}

.hero__stat + .hero__stat {
  border-left: 1px solid rgba(28,58,74,0.09);
}

.hero__stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.hero__stat-label {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* ─── Metrics bar ────────────────────────────────────────── */
.metrics {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 56px 24px;
}

.metrics__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric {
  text-align: center;
  padding: 0 24px;
}

.metric + .metric {
  border-left: 1px solid rgba(249,245,238,0.1);
}

.metric__number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}

.metric__label {
  font-size: 0.76rem;
  color: rgba(249,245,238,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── Properties preview (index) ────────────────────────── */
.properties-preview {
  background: var(--navy);
  padding: var(--section-padding);
}

.properties-preview .section-title { color: var(--white); }

.properties-preview__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}

.properties-preview__ver-todos {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.properties-preview__ver-todos:hover { opacity: 0.75; }
.properties-preview__ver-todos::after { content: ' →'; }

/* Card de imóvel (usado em index e imoveis.html) */
.property-card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s;
  display: block;
  position: relative;
}

.property-card:hover { transform: translateY(-4px); }

.property-card__img {
  aspect-ratio: 4/3;
  background: var(--light);
  overflow: hidden;
  position: relative;
  display: block;
}

.property-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}

.property-card:hover .property-card__img img { transform: scale(1.06); }

/* Gradient overlay — texto sobre a foto */
.property-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 20px 20px;
  background: linear-gradient(to top, rgba(18,38,50,0.92) 0%, rgba(18,38,50,0.5) 60%, transparent 100%);
}

.property-card__tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.property-card__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 4px;
}

.property-card__location {
  font-size: 0.76rem;
  color: rgba(249,245,238,0.6);
  margin-bottom: 12px;
}

.property-card__cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.property-card__cta::after { content: ' →'; }

/* ─── Pain section ───────────────────────────────────────── */
.pain {
  background: var(--cream);
  padding: var(--section-padding);
}

.pain__header {
  margin-bottom: 56px;
}

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

.pain-card {
  background: var(--white);
  border: 1px solid rgba(28,58,74,0.07);
  border-radius: 12px;
  padding: 28px;
}

.pain-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(28,58,74,0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.pain-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--navy-soft);
  stroke-width: 1.8;
}

.pain-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.pain-card p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── Compare ────────────────────────────────────────────── */
.compare {
  background: var(--light);
  padding: var(--section-padding);
}

.compare__header {
  text-align: center;
  margin-bottom: 56px;
}

.compare__header .section-sub {
  margin: 0 auto;
  max-width: 520px;
}

.compare__table-wrap {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(28,58,74,0.06);
}

.compare-table th {
  padding: 20px 28px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: left;
}

.compare-table thead tr { background: var(--navy); }

.compare-table thead th:first-child { color: rgba(249,245,238,0.55); font-weight: 400; }
.compare-table thead th:nth-child(2) { color: rgba(249,245,238,0.6); }
.compare-table thead th:last-child {
  color: var(--gold);
  background: rgba(201,168,76,0.12);
  letter-spacing: 0.06em;
}

.compare-table td {
  padding: 15px 28px;
  font-size: 0.88rem;
  color: var(--navy);
  border-bottom: 1px solid rgba(28,58,74,0.05);
}

.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(28,58,74,0.015); }
.compare-table td:last-child {
  font-weight: 500;
  background: rgba(201,168,76,0.04);
}

.tag-yes { color: #2E7D50; font-weight: 500; }
.tag-no  { color: #B03A2E; font-weight: 500; }

.tag-yes::before { content: '✓ '; font-weight: 700; }
.tag-no::before  { content: '✗ '; }

/* ─── Solutions ──────────────────────────────────────────── */
.solutions {
  background: var(--cream);
  padding: var(--section-padding);
}

.solutions__header {
  text-align: center;
  margin-bottom: 56px;
}

.solutions__header .section-sub {
  margin: 0 auto;
  max-width: 520px;
}

.solutions__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.solution-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid rgba(28,58,74,0.07);
  transition: box-shadow 0.2s;
}

.solution-card:hover {
  box-shadow: 0 8px 32px rgba(28,58,74,0.09);
}

.solution-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.solution-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  stroke-width: 1.8;
}

.solution-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.solution-card p {
  font-size: 0.83rem;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.solution-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.solution-card ul li {
  font-size: 0.81rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.solution-card ul li::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── How it works ───────────────────────────────────────── */
.how {
  background: var(--navy);
  padding: var(--section-padding);
}

.how .section-title { color: var(--white); }
.how .section-sub   { color: rgba(249,245,238,0.62); max-width: 460px; margin: 0 auto; }

.how__header {
  text-align: center;
  margin-bottom: 64px;
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.how__steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  background: rgba(201,168,76,0.2);
}

.how-step {
  text-align: center;
  position: relative;
}

.how-step__number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.how-step h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.how-step p {
  font-size: 0.86rem;
  color: rgba(249,245,238,0.62);
  line-height: 1.7;
}

.how__cta {
  text-align: center;
  margin-top: 56px;
}

/* ─── Testimonials ───────────────────────────────────────── */
.testimonials {
  background: var(--cream);
  padding: var(--section-padding);
}

.testimonials__header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  border: 1px solid rgba(28,58,74,0.07);
  display: flex;
  flex-direction: column;
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.testimonial-card__text {
  font-size: 0.87rem;
  color: var(--navy);
  line-height: 1.72;
  font-style: italic;
  flex: 1;
  margin-bottom: 20px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--navy);
  flex-shrink: 0;
  border: 1px solid rgba(28,58,74,0.1);
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.86rem;
}

.testimonial-card__location {
  font-size: 0.76rem;
  color: var(--muted);
}

/* ─── Form ───────────────────────────────────────────────── */
.form-section {
  background: var(--light);
  padding: var(--section-padding);
}

.form-section__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.form-section .section-sub {
  margin: 0 auto 48px;
  max-width: 500px;
}

.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 44px 40px;
  text-align: left;
  box-shadow: 0 4px 24px rgba(28,58,74,0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  border: 1.5px solid rgba(28,58,74,0.13);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }

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

.form__submit { margin-top: 4px; width: 100%; text-align: center; }

.form-divider {
  text-align: center;
  margin: 28px 0;
  position: relative;
}

.form-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(28,58,74,0.09);
}

.form-divider span {
  background: var(--white);
  padding: 0 16px;
  position: relative;
  font-size: 0.78rem;
  color: var(--muted);
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius);
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.93rem;
  width: 100%;
  transition: opacity 0.2s, transform 0.15s;
}

.whatsapp-btn:hover { opacity: 0.88; transform: translateY(-1px); }

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding: 44px 24px;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(249,245,238,0.38);
}

.footer__links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer__links a {
  font-size: 0.8rem;
  color: rgba(249,245,238,0.55);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--gold); }

/* ─── Imóveis page ───────────────────────────────────────── */
.properties-hero {
  background: var(--navy);
  padding: 72px 24px 56px;
  text-align: center;
}

.properties-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.properties-hero p {
  color: rgba(249,245,238,0.62);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

.properties {
  background: var(--cream);
  padding: var(--section-padding);
}

.properties__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ─── Responsive ─────────────────────────────────────────── */

/* Tablet */
@media (max-width: 960px) {
  .solutions__grid     { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid  { grid-template-columns: repeat(2, 1fr); }
  .pain__grid          { grid-template-columns: repeat(2, 1fr); }
  .properties__grid    { grid-template-columns: repeat(2, 1fr); }

  .hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --section-padding: 56px 20px; }

  /* Nav: logo + CTA */
  .nav__inner { height: 64px; }
  .nav__logo img { height: 46px; }
  .nav__links li { display: none; }
  .nav__links li:last-child { display: flex; }

  /* Hero */
  .hero {
    min-height: 100svh;
    padding: 80px 20px 56px;
    align-items: flex-end;
  }
  .hero__bg { background-position: center center; }
  .hero__overlay {
    background: linear-gradient(
      to top,
      rgba(28,58,74,0.95) 0%,
      rgba(28,58,74,0.65) 50%,
      rgba(28,58,74,0.25) 100%
    );
  }
  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 3rem);
    margin-bottom: 16px;
  }
  .hero__sub  { font-size: 0.93rem; margin-bottom: 20px; }
  .hero__bullets { margin-bottom: 28px; }
  .hero__cta  { flex-direction: column; gap: 12px; }
  .hero__cta .btn { text-align: center; width: 100%; }

  /* Properties */
  .properties-preview__header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .properties__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .property-card__name { font-size: 1.1rem; }

  /* Dores */
  .pain__grid { grid-template-columns: 1fr; }

  /* Como funciona */
  .how__steps { grid-template-columns: 1fr; gap: 32px; }
  .how__steps::before { display: none; }

  /* Soluções e depoimentos */
  .solutions__grid    { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }

  /* Tabela comparativa */
  .compare__table-wrap { -webkit-overflow-scrolling: touch; }
  .compare-table th,
  .compare-table td { padding: 12px 16px; font-size: 0.82rem; }

  /* Formulário */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 16px; }

  /* Métricas (se voltar) */
  .metrics__grid { grid-template-columns: repeat(2, 1fr); }
  .metric + .metric { border-left: none; }
  .metric:nth-child(3),
  .metric:nth-child(4) { border-top: 1px solid rgba(249,245,238,0.1); }

  /* Footer */
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer__links { flex-wrap: wrap; gap: 16px; }
}

/* Phones muito pequenos */
@media (max-width: 380px) {
  .properties__grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
}
