/* ════════════════════════════════════════
   LES RÉSIDENCES DE MONACO — STYLESHEET
   ════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --crimson:     #8B1A1A;
  --crimson-light: #A52020;
  --gold:        #C9A96E;
  --gold-light:  #E0C99A;
  --cream:       #F5F0E8;
  --warm-white:  #FAF8F4;
  --charcoal:    #2C2A27;
  --mid-grey:    #6B6560;
  --light-grey:  #E8E3DB;
  --glass-bg:    rgba(255, 255, 255, 0.35);
  --glass-border: rgba(255, 255, 255, 0.5);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', sans-serif;
  --nav-h:        80px;
  --section-pad:  100px 60px;
  --radius:       4px;
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--warm-white);
  overflow-x: hidden;
  padding-top: 140px;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { text-decoration: none; color: inherit; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
}
.btn-primary {
  background: var(--crimson);
  color: #fff;
}
.btn-primary:hover {
  background: var(--crimson-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 26, 26, 0.35);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 48px; font-size: 0.78rem; }

/* ════════════════════════════════════════
   NAVBAR — LIQUID GLASS
   ════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 97;
  background: rgba(255, 255, 255, 0.70);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 32px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.8);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
#navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.nav-logo-img {
  height: 65px;
  width: auto;
  object-fit: contain;
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  text-shadow: none;
}
.logo-icon { color: var(--gold); font-size: 0.85em; }

.nav-links { display: flex; gap: 36px; }
.nav-link {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crimson);
  position: relative;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--crimson);
  transition: width 0.3s ease;
}
.nav-link:hover,
.nav-link.active { color: var(--crimson-light); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 24px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1.3px;
  background: var(--crimson);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--charcoal);
  transition: all 0.3s ease;
}
.menu-close:hover {
  color: var(--crimson);
  transform: scale(1.1);
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

.menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  opacity: 0;
  z-index: 98;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-backdrop.open {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 60vw;
  height: 100vh;
  max-width: 600px;
  flex-direction: column;
  padding: 240px 40px 40px;
  gap: 48px;
  background: #ffffff;
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
  overflow-y: auto;
  display: flex;
}
.nav-mobile.open {
  transform: translateX(0);
}
.nav-mobile .nav-link {
  display: block;
  padding: 12px 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  border-bottom: 1px solid var(--light-grey);
  transition: all 0.3s ease;
  position: relative;
}
.nav-mobile .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--crimson);
  transition: width 0.3s ease;
}
.nav-mobile .nav-link:first-of-type {
  margin-top: 40px;
}
.nav-mobile .nav-link:hover,
.nav-mobile .nav-link.active {
  color: var(--crimson);
  padding-left: 12px;
}
.nav-mobile .nav-link:hover::after,
.nav-mobile .nav-link.active::after {
  width: 100%;
}

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.hero {
  position: relative;
  height: calc(100vh - 140px);
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -140px; /* hero starts behind navbar */
  padding-top: 140px;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20,15,10,0.70) 0%,
    rgba(20,15,10,0.55) 50%,
    rgba(20,15,10,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 0 clamp(40px, 7vw, 96px);
  animation: fadeUp 1.2s 0.3s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 4px 16px rgba(0, 0, 0, 0.4);
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}
.hero-subtitle {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.95);
  max-width: 540px;
  margin: 0 auto 40px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll span {
  display: block;
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.5; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(1.1); }
}

/* ════════════════════════════════════════
   TABS SECTION
   ════════════════════════════════════════ */
.tabs-section {
  background: var(--warm-white);
  padding: 80px 60px;
  max-width: 1240px;
  margin: 0 auto;
}

.tabs-header {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--light-grey);
  flex-wrap: wrap;
}
.tab-btn {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: none;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  color: var(--mid-grey);
  position: relative;
  transition: color 0.25s;
  white-space: nowrap;
}
.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2.5px;
  background: var(--crimson);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.tab-btn:hover { color: var(--charcoal); }
.tab-btn.active {
  color: var(--crimson);
  background: rgba(139, 26, 26, 0.04);
  border-radius: 4px 4px 0 0;
}
.tab-btn.active::after { transform: scaleX(1); }

.tabs-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tab-image-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.tab-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.tab-image-wrap img.fade { opacity: 0; transform: scale(1.03); }

.tab-text h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--charcoal);
  transition: opacity 0.4s ease;
}
.tab-text p {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--mid-grey);
  transition: opacity 0.4s ease;
}
.tab-text.fade h3,
.tab-text.fade p { opacity: 0; }

/* ════════════════════════════════════════
   EQUILÍBRIO SECTION
   ════════════════════════════════════════ */
.equilibrio-section {
  background: var(--cream);
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.equilibrio-left {
  display: flex;
  flex-direction: column;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--charcoal);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.equilibrio-section.visible .section-title {
  transform: translateY(-50px);
}
.section-title em {
  font-style: italic;
  color: var(--crimson);
}

.equilibrio-left > p {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--mid-grey);
  max-width: 420px;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}
.equilibrio-section.visible .equilibrio-left > p {
  opacity: 1;
}

.equilibrio-images {
  position: relative;
  height: 380px;
  width: min(100%, 340px);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  transform: translateX(-10px);
}
.eq-img {
  position: absolute;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}
.eq-img--top {
  width: 200px; height: 240px;
  top: 0; left: 50%;
  transform: translateX(-50%);
}
.eq-img--bottom {
  width: 160px; height: 200px;
  bottom: 0; left: 50%;
  transform: translateX(20px);
}

.equilibrio-right h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--charcoal);
}
.equilibrio-right p {
  font-size: 0.87rem;
  line-height: 1.85;
  color: var(--mid-grey);
  margin-bottom: 16px;
  max-width: 420px;
}

/* ════════════════════════════════════════
   CARDS SECTION
   ════════════════════════════════════════ */
.cards-section {
  background: var(--warm-white);
  padding: 100px 60px;
  max-width: 1240px;
  margin: 0 auto;
}
.cards-intro {
  text-align: center;
  font-size: 0.9rem;
  color: var(--mid-grey);
  max-width: 660px;
  margin: 0 auto 60px;
  line-height: 1.75;
}

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

.card {
  background: var(--warm-white);
  border: 1px solid var(--light-grey);
  border-radius: 6px;
  padding: 36px 32px;
  cursor: default;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--crimson);
  transition: width 0.45s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.1);
  border-color: var(--gold-light);
  background: #fff;
}
.card:hover::before { width: 100%; }

.card--highlight {
  background: var(--crimson);
  border-color: var(--crimson);
  color: #fff;
}
.card--highlight .card-icon { color: var(--gold-light); }
.card--highlight h4 { color: #ffffff !important; }
.card--highlight p { 
  color: #ffffff !important; 
}
.card--highlight::before { background: var(--gold); }
.card--highlight:hover {
  background: var(--crimson-light);
  border-color: var(--crimson-light);
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(139,26,26,0.3);
}

.card-icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--charcoal);
}
.card p {
  font-size: 0.84rem;
  line-height: 1.8;
  color: var(--mid-grey);
}

/* ════════════════════════════════════════
   QUOTE BANNER
   ════════════════════════════════════════ */
.quote-banner {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.quote-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 0.4s ease;
}
.quote-banner:hover .quote-bg { transform: scale(1.03); }
.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,15,10,0.52);
}
.quote-text {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 300;
  color: #fff;
  text-align: center;
  letter-spacing: 0.02em;
  padding: 0 48px;
  max-width: 800px;
}
.quote-text em { color: var(--gold-light); }

/* ════════════════════════════════════════
   MAPA INTERATIVO — LOCALIZAÇÃO
   ════════════════════════════════════════ */
.map-section {
  padding: var(--section-pad);
  background: var(--warm-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  isolation: isolate;
  z-index: 0;
}

.map-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 600px;
}

.map-header h2 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.map-header p {
  font-size: 1.1rem;
  color: var(--mid-grey);
  line-height: 1.6;
}

.map-container {
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

.map-wrapper {
  height: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--light-grey);
  position: relative;
  z-index: 0;
}

.map-wrapper .leaflet-container {
  height: 100%;
  width: 100%;
}

.leaflet-control-attribution {
  display: none !important;
}

.map-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.map-info-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--light-grey);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.map-icon {
  font-size: 2rem;
  display: flex;
  align-items: center;
  min-width: 50px;
}

.map-info-item h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 8px;
  font-weight: 400;
}

.map-info-item p {
  color: var(--mid-grey);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Marker customizado */
.leaflet-marker-icon {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Popup customizado */
.leaflet-popup-content {
  font-family: var(--font-body);
  color: var(--charcoal);
  line-height: 1.6;
}

.leaflet-popup-content h4 {
  font-family: var(--font-display);
  color: var(--crimson);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

/* ════════════════════════════════════════
   ÁREA DO MORADOR
   ════════════════════════════════════════ */
.morador-section {
  background: var(--cream);
  text-align: center;
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}
.morador-deco {
  position: absolute;
  top: -80px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.morador-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.morador-divider {
  width: 48px; height: 2.5px;
  background: var(--crimson);
  margin: 0 auto 28px;
}
.morador-section p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--mid-grey);
  margin-bottom: 40px;
}

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 60px 60px 24px;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff;
  font-weight: 400;
}
.footer-brand p {
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}
.footer-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-nav a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* ════════════════════════════════════════
   SCROLL REVEAL ANIMATION
   ════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 960px) {
  body { padding-top: 80px; }

  .tabs-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .tab-image-wrap { aspect-ratio: 16/9; }

  .equilibrio-section {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 70px 32px;
  }
  .equilibrio-images { height: 260px; }
  .eq-img--top  { width: 160px; height: 190px; }
  .eq-img--bottom { width: 130px; height: 160px; }

  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .map-container { grid-template-columns: 1fr; }
  .map-wrapper { height: 400px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 640px) {
  :root { --section-pad: 60px 20px; }
  body { padding-top: 70px; }

  /* Hero */
  .hero { min-height: 480px; }
  .hero-content { padding: 0 28px; }
  .hero-title { font-size: 2.1rem; }
  .hero-subtitle { font-size: 0.85rem; max-width: 30ch; }
  .hero-subtitle br { display: none; }

  /* Tabs */
  .tabs-section { padding: 50px 20px; }
  .tabs-header { gap: 6px; flex-wrap: wrap; }
  .tab-btn { padding: 8px 12px; font-size: 0.6rem; }
  .tabs-body { gap: 30px; }
  .tab-image-wrap { aspect-ratio: 4/3; }

  /* Equilíbrio */
  .equilibrio-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 72px 20px 50px;
  }
  .equilibrio-left { margin-bottom: 10px; }
  .equilibrio-section .section-title { font-size: 2.1rem; margin-bottom: 12px; text-align: center; }
  .equilibrio-left > p { text-align: left; }
  .equilibrio-images { height: 320px; width: min(100%, 280px); transform: translateX(-8px); }
  .equilibrio-right { text-align: left; }
  .equilibrio-right h3 { font-size: 1.3rem; }
  .equilibrio-right p { font-size: 0.8rem; }

  /* Cards */
  .cards-section { padding: 50px 20px; }
  .cards-intro { font-size: 0.8rem; margin-bottom: 40px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .card { padding: 20px 16px; }
  .card h4 { font-size: 1rem; margin-bottom: 8px; }
  .card p { font-size: 0.75rem; line-height: 1.5; }
  .card-icon { margin-bottom: 12px; }

  /* Map */
  .map-section { padding: 50px 20px; }
  .map-header h2 { font-size: 2rem; margin-bottom: 8px; }
  .map-header p { font-size: 0.9rem; }
  .map-container { grid-template-columns: 1fr; gap: 16px; }
  .map-wrapper { height: 260px; }
  .map-info { flex-direction: row; gap: 12px; }
  .map-info-item { padding: 12px; flex: 1; flex-direction: column; gap: 8px; }
  .map-icon { min-width: unset; }
  .map-icon svg { width: 20px; height: 20px; }
  .map-info-item h4 { font-size: 0.9rem; margin-bottom: 4px; }
  .map-info-item p { font-size: 0.75rem; }

  /* Morador */
  .morador-section { padding: 50px 20px; }
  .morador-section h2 { font-size: 2rem; }
  .morador-section p { font-size: 0.85rem; margin-bottom: 30px; }
  .btn-lg { padding: 14px 32px; font-size: 0.7rem; }

  /* Footer */
  .footer { padding: 40px 20px 16px; }
  .footer-inner { flex-direction: column; gap: 30px; }
  .footer-name { font-size: 1rem; }
  .footer-brand p { font-size: 0.75rem; }
    .footer-nav { flex-direction: column; gap: 12px; align-items: flex-start; text-align: left; }
  .footer-nav a { font-size: 0.65rem; }
  .footer-bottom { font-size: 0.7rem; }

  /* Nav */
  .nav-inner { padding: 0 20px; }
  .nav-mobile { padding: 12px 20px 20px; gap: 12px; }
  .nav-logo-img { height: 60px; }
}

@media (max-width: 480px) {
  :root { --section-pad: 50px 16px; }
  
  .hero-content { padding: 0 24px; }
  .hero-title { font-size: 2.1rem; line-height: 1.2; }
  .hero-eyebrow { font-size: 0.6rem; margin-bottom: 12px; }
  .hero-subtitle { font-size: 0.8rem; max-width: 28ch; }
  .hero-btns { gap: 12px; }
  .btn { padding: 12px 24px; font-size: 0.65rem; }
  
  .cards-grid { grid-template-columns: 1fr; gap: 14px; }
  .card { padding: 18px 14px; }
  
  .equilibrio-section { padding-top: 64px; }
  .equilibrio-section .section-title { font-size: 2.1rem; }
  .equilibrio-images { height: 280px; width: min(100%, 240px); transform: translateX(-6px); }
  .eq-img--top { width: 140px; height: 160px; }
  .eq-img--bottom { width: 110px; height: 140px; transform: translateX(20px); }
  
  .cards-intro { font-size: 0.75rem; }
  .card h4 { font-size: 0.95rem; }
  .card p { font-size: 0.7rem; }
  
  .map-header h2 { font-size: 1.6rem; }
  .morador-section h2 { font-size: 1.6rem; }
  
  .nav-inner { padding: 0 16px; }
  .nav-mobile { padding: 10px 16px 16px; }
}
