/* ============================================
   GALLON IMÓVEIS — Design System
   Azul Marinho #0c1b33 | Dourado #c5a059
   Fontes: Playfair Display + Lato
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Lato:wght@300;400;700;900&display=swap');


/* ---- CSS Variables ---- */
:root {
  --navy:       #0c1b33;
  --navy-light: #162847;
  --navy-dark:  #070f1c;
  --gold:       #c5a059;
  --gold-light: #d4b87a;
  --gold-dark:  #a07a35;
  --off-white:  #f8f7f4;
  --gray-50:    #f2f0ec;
  --gray-100:   #e8e5df;
  --gray-200:   #d0ccc4;
  --gray-500:   #8a8279;
  --gray-700:   #4a453e;
  --white:      #ffffff;
  --shadow-sm:  0 2px 8px rgba(12,27,51,0.08);
  --shadow-md:  0 8px 30px rgba(12,27,51,0.14);
  --shadow-lg:  0 20px 60px rgba(12,27,51,0.18);
  --shadow-gold:0 4px 20px rgba(197,160,89,0.3);
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--off-white);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ---- Utility ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-tag::before,
.section-tag::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.75;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197,160,89,0.45);
}

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

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  transition: all var(--transition);
  border-bottom: 1px solid rgba(197,160,89,0.15);
}

.navbar.scrolled {
  box-shadow: var(--shadow-lg);
  background: rgba(12,27,51,0.97);
  backdrop-filter: blur(16px);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.navbar-logo-img {
  height: 54px;
  width: 54px;
  object-fit: contain;
  background: var(--white);
  border-radius: 10px;
  padding: 4px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  transition: transform var(--transition);
}
.navbar-logo-img:hover { transform: scale(1.04); }

.navbar-logo-text {
  margin-left: 12px;
  line-height: 1;
}
.navbar-logo-text .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}
.navbar-logo-text .brand-sub {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover {
  color: var(--gold);
  background: rgba(197,160,89,0.1);
}

.nav-cta {
  margin-left: 16px;
  padding: 10px 22px !important;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero_bg.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,15,28,0.82) 0%,
    rgba(12,27,51,0.70) 50%,
    rgba(7,15,28,0.60) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 76px;
  width: 100%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 60px 0;
}

.hero-left { color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197,160,89,0.15);
  border: 1px solid rgba(197,160,89,0.4);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  animation: fadeInUp 0.6s ease-out both;
}
.hero-badge::before {
  content: '◆';
  font-size: 0.5rem;
  color: var(--gold);
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s 0.1s ease-out both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  line-height: 1.75;
  max-width: 480px;
  animation: fadeInUp 0.7s 0.2s ease-out both;
}

.hero-stats {
  display: flex;
  gap: 32px;
  animation: fadeInUp 0.7s 0.3s ease-out both;
}
.stat-item { text-align: left; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  background: rgba(197,160,89,0.3);
  align-self: stretch;
}

/* Search Card */
.hero-search-card {
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  animation: fadeInRight 0.8s 0.2s ease-out both;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.6);
}

.search-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.search-card-subtitle {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.search-tabs {
  display: flex;
  gap: 4px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 24px;
}
.search-tab {
  flex: 1;
  padding: 10px;
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  background: none;
  color: var(--gray-500);
}
.search-tab.active {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.search-fields { display: flex; flex-direction: column; gap: 14px; }

.field-group { display: flex; flex-direction: column; gap: 6px; }
.field-group label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.field-group select,
.field-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  cursor: pointer;
}
.field-group select:focus,
.field-group input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197,160,89,0.15);
}

.search-fields-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.search-btn {
  width: 100%;
  padding: 15px;
  margin-top: 8px;
  font-size: 1rem;
  border-radius: var(--radius-sm);
}

/* ============================================
   FEATURED PROPERTIES
   ============================================ */
.featured {
  padding: 100px 0;
  background: var(--off-white);
}

.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}

.featured-header-left { text-align: left; }

/* Property Cards */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.property-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
}
.property-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.property-card:hover .card-img img {
  transform: scale(1.07);
}

.card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.card-badge.venda { background: var(--navy); }
.card-badge.aluguel {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}
.card-badge.destaque {
  background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 100%);
}

.card-fav {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  backdrop-filter: blur(4px);
}
.card-fav:hover { background: var(--white); transform: scale(1.1); }
.card-fav svg { width: 16px; height: 16px; }

.card-body { padding: 22px 22px 18px; }

.card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.card-price span {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}

.card-title {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-700);
  margin-bottom: 14px;
  line-height: 1.4;
}

.card-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.card-location svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }

.card-divider {
  height: 1px;
  background: var(--gray-100);
  margin-bottom: 16px;
}

.card-features {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.card-feature {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--gray-500);
  font-weight: 400;
}
.card-feature svg { width: 14px; height: 14px; color: var(--gold-dark); }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197,160,89,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(12,27,51,0.92);
  border: 1px solid rgba(197,160,89,0.3);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  backdrop-filter: blur(12px);
}

.badge-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.badge-icon svg { width: 20px; height: 20px; color: var(--white); }
.badge-text-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  font-weight: 700;
}
.badge-text-role {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.06em;
}

.about-content {}

.about-content .section-tag { color: var(--gold); }
.about-content .section-tag::before,
.about-content .section-tag::after { background: var(--gold); }

.about-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-title em { font-style: italic; color: var(--gold-light); }

.about-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  margin-bottom: 16px;
}

.creci-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197,160,89,0.12);
  border: 1px solid rgba(197,160,89,0.35);
  border-radius: 100px;
  padding: 8px 18px;
  margin: 12px 0 28px;
}
.creci-badge span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-light);
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.pillar-icon {
  width: 40px;
  height: 40px;
  background: rgba(197,160,89,0.1);
  border: 1px solid rgba(197,160,89,0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar-icon svg { width: 18px; height: 18px; color: var(--gold); }
.pillar-text-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 3px;
}
.pillar-text-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.about-ctas {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* ============================================
   WHY US / FEATURES STRIP
   ============================================ */
.why-us {
  padding: 80px 0;
  background: var(--gray-50);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}
.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(12,27,51,0.06) 0%, rgba(197,160,89,0.08) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: all var(--transition);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}
.why-icon svg { width: 26px; height: 26px; color: var(--navy); transition: color var(--transition); }
.why-card:hover .why-icon svg { color: var(--white); }

.why-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.why-desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================
   CITIES SECTION
   ============================================ */
.cities {
  padding: 80px 0 100px;
  background: var(--off-white);
  text-align: center;
}

.cities .section-tag,
.cities .section-title,
.cities .section-subtitle {
  text-align: center;
}
.cities .section-subtitle { margin: 0 auto 48px; }

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

.city-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 200px;
  cursor: pointer;
}
.city-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,27,51,0.85) 0%, rgba(12,27,51,0.2) 60%, transparent 100%);
  z-index: 1;
  transition: opacity var(--transition);
}
.city-card:hover::before { opacity: 0.7; }
.city-card:hover .city-bg { transform: scale(1.06); }

.city-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.city-info {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  text-align: left;
}
.city-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 700;
}
.city-count {
  font-size: 0.78rem;
  color: var(--gold-light);
  font-weight: 400;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(12,27,51,0.7);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {}
.footer-logo-img {
  height: 60px;
  object-fit: contain;
  margin-bottom: 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
}

.footer-brand-text {
  font-size: 0.88rem;
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: rgba(255,255,255,0.6);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-social svg { width: 15px; height: 15px; }

.footer-col-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(197,160,89,0.25);
}

.footer-links { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.footer-links a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--gold); }
.footer-links a::before { content: '›'; color: var(--gold); }

.footer-contact-items { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer-contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(197,160,89,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-contact-icon svg { width: 14px; height: 14px; color: var(--gold); }
.footer-contact-text { font-size: 0.85rem; line-height: 1.5; }
.footer-contact-label { font-size: 0.73rem; color: var(--gold); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 2px; }

.footer-whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
  transition: all var(--transition);
  margin-top: 16px;
  width: fit-content;
}
.footer-whatsapp-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}
.footer-whatsapp-btn svg { width: 18px; height: 18px; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: var(--gold); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37,211,102,0.45);
  transition: all var(--transition);
  animation: pulse-green 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  background: #1da851;
  animation: none;
}
.whatsapp-float svg { width: 28px; height: 28px; color: var(--white); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse-green {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); transform: scale(1); }
  50%  { transform: scale(1.03); }
  70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); transform: scale(1); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); transform: scale(1); }
}

/* Scroll reveal base */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding-top: 40px; }
  .hero-title { font-size: 2.8rem; }
  .properties-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-us-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    padding: 20px 24px 30px;
    gap: 4px;
    border-top: 1px solid rgba(197,160,89,0.15);
    animation: fadeInUp 0.3s ease;
  }

  .hero { min-height: auto; padding-bottom: 40px; }
  .hero-inner { min-height: auto; }
  .hero-stats { gap: 20px; }
  .hero-search-card { padding: 24px 20px; }
  .search-fields-row { grid-template-columns: 1fr; }
  .featured-header { flex-direction: column; align-items: flex-start; }
  .properties-grid { grid-template-columns: 1fr; }
  .why-us-grid { grid-template-columns: 1fr 1fr; }
  .cities-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .about-img-frame img { height: 340px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .why-us-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .whatsapp-float { bottom: 20px; right: 20px; }
}
