/* ========================================
   ESMERALDA IMÓVEIS · Global Styles
   ======================================== */

:root {
  --green-50: hsl(142, 76%, 97%);
  --green-100: hsl(142, 72%, 90%);
  --green-200: hsl(142, 68%, 78%);
  --green-400: hsl(142, 60%, 52%);
  --green-500: hsl(142, 70%, 42%);
  --green-600: hsl(142, 72%, 34%);
  --green-700: hsl(142, 70%, 27%);
  --green-800: hsl(145, 63%, 18%);
  --green-900: hsl(145, 60%, 12%);

  --dark: #0d1b14;
  --dark-2: #152a1e;
  --dark-3: #1d3a2a;

  --text-primary: #0f2218;
  --text-secondary: #3d5a47;
  --text-muted: #6b8f77;
  --text-light: #a8c5b0;

  --white: #ffffff;
  --off-white: #f4faf6;
  --border: rgba(74, 222, 128, 0.15);

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, .1);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, .15);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, .2);
  --shadow-green: 0 8px 32px rgba(22, 163, 74, 0.25);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Outfit', sans-serif;
  --font-display: 'Playfair Display', serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-main);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Sections ── */
.section {
  padding: 100px 0;
  background: var(--white);
}

.section-dark {
  background: var(--dark);
}

.section-teal {
  background: var(--green-800);
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-main);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  transition: color var(--transition);
}

.navbar.scrolled .logo {
  color: var(--green-700);
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--green-500);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-green);
  transition: transform var(--transition);
}

.logo:hover .logo-icon {
  transform: rotate(-5deg) scale(1.05);
}

.logo-icon svg {
  width: 24px;
  height: 24px;
}

.logo-text strong {
  font-weight: 700;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.navbar.scrolled .nav-link {
  color: var(--text-secondary);
}

.nav-link:hover {
  color: var(--green-400);
  background: rgba(74, 222, 128, 0.1);
}

.navbar.scrolled .nav-link:hover {
  color: var(--green-600);
}

.btn-nav {
  padding: 10px 24px;
  background: var(--green-500);
  color: var(--white) !important;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow-green);
}

.btn-nav:hover {
  background: var(--green-600);
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(22, 163, 74, 0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .hamburger span {
  background: var(--green-700);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(13, 27, 20, 0.85) 0%,
      rgba(21, 42, 30, 0.7) 50%,
      rgba(13, 27, 20, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 100px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: var(--green-200);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  animation: fadeInDown 0.8s ease forwards;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green-400);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: .7;
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 0.9s 0.1s ease forwards;
  opacity: 0;
}

.highlight {
  background: linear-gradient(135deg, var(--green-400), var(--green-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
  animation: fadeInUp 0.9s 0.2s ease forwards;
  opacity: 0;
}

/* Search Bar */
.search-bar {
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 8px;
  gap: 4px;
  max-width: 900px;
  box-shadow: var(--shadow-xl);
  animation: fadeInUp 0.9s 0.3s ease forwards;
  opacity: 0;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.search-group {
  flex: 1;
  min-width: 160px;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.search-group label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-600);
}

.search-group input,
.search-group select {
  border: none;
  outline: none;
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: transparent;
  padding: 4px 0;
}

.search-group select {
  cursor: pointer;
}

.search-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 8px 0;
}

.btn-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green-500);
  color: white;
  border: none;
  border-radius: var(--radius-lg);
  padding: 14px 28px;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-search svg {
  width: 18px;
  height: 18px;
}

.btn-search:hover {
  background: var(--green-600);
  transform: translateY(-1px);
  box-shadow: var(--shadow-green);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeInUp 0.9s 0.4s ease forwards;
  opacity: 0;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-circle {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-circle svg {
  width: 18px;
  height: 18px;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: var(--green-50);
  color: var(--green-600);
  border: 1px solid var(--green-100);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title.white {
  color: white;
}

.text-green {
  color: var(--green-600);
}

.text-green-light {
  color: var(--green-400);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-sub.light {
  color: rgba(255, 255, 255, 0.65);
}

/* ========================================
   FILTER TABS
   ======================================== */
.filter-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border: 1.5px solid var(--border);
  background: transparent;
  border-radius: var(--radius-full);
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--green-500);
  border-color: var(--green-500);
  color: white;
  box-shadow: var(--shadow-green);
}

/* ========================================
   PROPERTY CARDS
   ======================================== */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
}

.property-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  transform: translateY(0);
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.property-card.hidden {
  display: none;
}

.card-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.card-img-wrap img {
  transition: transform 0.6s ease;
}

.property-card:hover .card-img-wrap img {
  transform: scale(1.07);
}

.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-green {
  background: var(--green-500);
  color: white;
}

.badge-orange {
  background: #f97316;
  color: white;
}

.badge-blue {
  background: #3b82f6;
  color: white;
}

.card-fav {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-secondary);
}

.card-fav svg {
  width: 16px;
  height: 16px;
}

.card-fav:hover {
  background: white;
  color: #ef4444;
  transform: scale(1.1);
}

.card-fav.active {
  color: #ef4444;
}

.card-fav.active svg {
  fill: #ef4444;
}

.card-body {
  padding: 24px;
}

.card-type {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-500);
  margin-bottom: 8px;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.card-location svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.card-features {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 18px;
}

.card-features span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.card-features svg {
  width: 14px;
  height: 14px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.card-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green-600);
}

.btn-card {
  padding: 9px 20px;
  background: var(--green-50);
  color: var(--green-700);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  border: 1.5px solid var(--green-200);
}

.btn-card:hover {
  background: var(--green-500);
  color: white;
  border-color: var(--green-500);
}

.section-cta {
  text-align: center;
  margin-top: 60px;
}

.btn-outline {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid var(--green-500);
  color: var(--green-600);
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--green-500);
  color: white;
  box-shadow: var(--shadow-green);
  transform: translateY(-2px);
}

/* ========================================
   EMPREENDIMENTOS
   ======================================== */
.emp-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

.emp-featured {
  grid-row: 1 / 3;
}

.emp-card {
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.emp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 222, 128, 0.25);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.emp-img-wrap {
  position: relative;
  height: 340px;
  overflow: hidden;
}

.emp-img-wrap.small {
  height: 180px;
}

.emp-img-wrap img {
  transition: transform 0.6s ease;
}

.emp-card:hover .emp-img-wrap img {
  transform: scale(1.06);
}

.emp-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  padding: 24px;
}

.emp-status {
  display: inline-block;
  background: rgba(74, 222, 128, 0.2);
  border: 1px solid rgba(74, 222, 128, 0.4);
  color: var(--green-200);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.emp-status-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  color: var(--green-300, #86efac);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.emp-status-pill.delivered {
  color: #60a5fa;
  border-color: rgba(96, 165, 250, 0.4);
}

.emp-prog-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
}

.emp-prog-label strong {
  color: var(--green-400);
}

.emp-prog-bar {
  height: 5px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
}

.emp-prog-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-400), var(--green-200));
  border-radius: 3px;
  transition: width 1.5s ease;
}

.emp-body {
  padding: 28px;
}

.emp-body.small {
  padding: 20px;
}

.emp-tag {
  display: inline-block;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.25);
  color: var(--green-400);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
}

.emp-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
  line-height: 1.2;
}

.emp-title-sm {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.emp-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 28px;
}

.emp-desc-sm {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 14px;
}

.emp-specs {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.emp-spec {
  flex: 1;
  padding: 14px 12px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.emp-spec:last-child {
  border-right: none;
}

.spec-val {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-400);
  line-height: 1;
  margin-bottom: 4px;
}

.spec-key {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.emp-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.emp-price-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.emp-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
}

.emp-price-sm {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.emp-price-sm strong {
  color: var(--green-400);
  font-size: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--green-500);
  color: white;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--green-400);
  box-shadow: var(--shadow-green);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block;
  padding: 9px 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-ghost:hover {
  border-color: var(--green-400);
  color: var(--green-400);
}

/* ========================================
   QUEM SOMOS
   ======================================== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 16px;
  align-items: end;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 520px;
  box-shadow: var(--shadow-xl);
}

.about-img-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-img-card>*:first-child {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 300px;
  box-shadow: var(--shadow-lg);
}

.about-award {
  background: var(--green-600);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.about-award svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.about-award div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-award strong {
  font-size: 0.95rem;
  font-weight: 700;
}

.about-award span {
  font-size: 0.78rem;
  opacity: 0.8;
}

.about-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text strong {
  color: var(--green-600);
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.value-icon {
  width: 44px;
  height: 44px;
  background: var(--green-50);
  border: 1.5px solid var(--green-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  flex-shrink: 0;
  transition: var(--transition);
}

.value-item:hover .value-icon {
  background: var(--green-500);
  border-color: var(--green-500);
  color: white;
  transform: scale(1.05);
}

.value-icon svg {
  width: 20px;
  height: 20px;
}

.value-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.value-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.about-team {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-md);
}

.team-avatars {
  display: flex;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2.5px solid white;
  margin-left: -10px;
  box-shadow: var(--shadow-sm);
}

.team-avatars .avatar:first-child {
  margin-left: 0;
}

.about-team p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.about-team strong {
  color: var(--green-700);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.testimonial-card.featured {
  background: var(--green-600);
  border-color: var(--green-500);
}

.stars {
  font-size: 1.1rem;
  color: #fbbf24;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-author img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.testimonial-author div {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  font-size: 0.9rem;
  color: white;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ========================================
   CONTATO
   ======================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--off-white);
  transition: var(--transition);
}

.contact-item:hover {
  border-color: var(--green-200);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  flex-shrink: 0;
}

.contact-icon.green {
  background: #dcfce7;
  color: #16a34a;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
}

.ci-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.ci-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  background: var(--off-white);
  transition: var(--transition);
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

.social-btn:hover {
  background: var(--green-500);
  border-color: var(--green-500);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 28px;
}

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

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: white;
  transition: border-color 0.2s;
  outline: none;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-400);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.12);
}

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  background: var(--green-500);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit svg {
  width: 18px;
  height: 18px;
}

.btn-submit:hover {
  background: var(--green-600);
  box-shadow: var(--shadow-green);
  transform: translateY(-1px);
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  color: var(--green-700);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  margin-top: 16px;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-success svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.form-success.show {
  display: flex;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--dark);
}

.footer-top {
  padding: 72px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-creci {
  display: inline-block;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.25);
  color: var(--green-400);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer-col li a:hover {
  color: var(--green-400);
}

.footer-hours,
.footer-phone {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.footer-phone a {
  color: var(--green-400);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.55);
}

.wf-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: white;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.whatsapp-float:hover .wf-tooltip {
  opacity: 1;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1100px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-images {
    max-width: 600px;
  }

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

  .emp-featured {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    color: var(--text-secondary) !important;
    padding: 12px 16px;
    width: 100%;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .search-bar {
    flex-direction: column;
    gap: 0;
  }

  .search-divider {
    display: none;
  }

  .btn-search {
    width: 100%;
    justify-content: center;
  }

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

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

  .emp-featured {
    grid-column: auto;
  }

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

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .about-images {
    grid-template-columns: 1fr;
  }

  .about-img-main {
    height: 280px;
  }

  .about-img-card>*:first-child {
    height: 200px;
  }

  .about-award {
    display: none;
  }

  /* ── Cards mobile ── */
  .property-card {
    border-radius: var(--radius-md);
  }

  .card-img-wrap {
    height: 180px;
  }

  .card-body {
    padding: 14px 16px 16px;
  }

  .card-title {
    font-size: 0.93rem;
  }

  .card-price {
    font-size: 1rem;
  }

  .btn-card {
    padding: 7px 14px;
    font-size: 0.8rem;
  }

  .card-location {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    gap: 16px;
  }

  .stat-sep {
    display: none;
  }

  .hero-badge {
    font-size: 0.78rem;
  }

  .section-title {
    font-size: 1.75rem;
  }
}

/* ========================================
   API DYNAMIC ELEMENTS
   ======================================== */

/* ── Skeleton loading cards ── */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.skeleton-card {
  pointer-events: none;
}

.skeleton-img {
  height: 240px;
  border-radius: 0;
}

.skeleton-tag {
  height: 14px;
  width: 70px;
  margin-bottom: 10px;
}

.skeleton-title {
  height: 18px;
  width: 90%;
  margin-bottom: 8px;
}

.skeleton-title.short {
  width: 60%;
}

.skeleton-loc {
  height: 14px;
  width: 55%;
  margin-bottom: 16px;
}

.skeleton-features {
  height: 14px;
  width: 85%;
  margin-bottom: 18px;
  border: none;
}

.skeleton-price {
  height: 22px;
  width: 110px;
}

.skeleton-btn {
  height: 34px;
  width: 90px;
  border-radius: var(--radius-full);
}

/* ── Card estágio badge (ex: Lançamento, Pronto) ── */
.card-estagio {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  color: var(--green-200);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(74, 222, 128, 0.3);
}

/* ── Infraestrutura item tags ── */
.card-itens {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.item-tag {
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--green-50);
  color: var(--green-700);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-full);
  padding: 3px 10px;
  white-space: nowrap;
}

/* ── Fade-in animation for dynamically rendered cards ── */
.property-card.fade-in {
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.property-card.fade-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Cards dentro do carrossel sempre visíveis (JS controla o .visible via setTimeout,
   mas se o rAF falhar por timing, o card não fica preso invisível) */
.carousel-slide .property-card.fade-in,
.carousel-slide .emp-card.fade-in {
  opacity: 0;
  transform: translateY(10px) scale(0.99);
}

.carousel-slide .property-card.fade-in.visible,
.carousel-slide .emp-card.fade-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Fallback: se .visible nunca chegar, mostra após 800ms via animation */
.carousel-slide .property-card,
.carousel-slide .emp-card {
  animation: cardReveal 0s 0.8s forwards;
}

@keyframes cardReveal {
  to {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Empty / error state ── */
.empty-state {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
  gap: 16px;
}

.empty-icon {
  width: 72px;
  height: 72px;
  background: var(--green-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.empty-icon svg {
  width: 32px;
  height: 32px;
  color: var(--green-500);
  display: block;
}

.empty-state h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.empty-state p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 340px;
}

.error-state .empty-icon {
  background: #fef2f2;
}

.error-state .empty-icon svg {
  color: #ef4444;
}

/* ========================================
   CARROSSEL GENÉRICO
   ======================================== */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.carousel-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  box-sizing: border-box;
}

.carousel-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--green-200);
  background: white;
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.carousel-arrow:hover:not(:disabled) {
  background: var(--green-500);
  border-color: var(--green-500);
  color: white;
  box-shadow: var(--shadow-green);
  transform: scale(1.08);
}

.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.carousel-arrow svg {
  width: 20px;
  height: 20px;
}

/* Setas na seção escura */
.section-dark .carousel-arrow {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
}

.section-dark .carousel-arrow:hover:not(:disabled) {
  background: var(--green-500);
  border-color: var(--green-500);
  color: white;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--green-200);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.carousel-dot.active {
  background: var(--green-500);
  transform: scale(1.3);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.25);
}

.section-dark .carousel-dot {
  background: rgba(255, 255, 255, 0.2);
}

.section-dark .carousel-dot.active {
  background: var(--green-400);
}

/* Mobile: 1 coluna */
@media (max-width: 699px) {
  .carousel-wrapper {
    gap: 6px;
  }

  .carousel-slide {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 4px;
  }

  /* Card no carrossel mobile: proporções equilibradas */
  .carousel-slide .property-card,
  .carousel-slide .emp-card {
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }

  .carousel-slide .card-img-wrap {
    height: 200px;
  }

  .carousel-arrow {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
  }

  .carousel-arrow svg {
    width: 16px;
    height: 16px;
  }
}

/* Tablet: 2 colunas */
@media (min-width: 700px) and (max-width: 1023px) {
  .carousel-slide {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   PAGE HERO (Empreendimentos page)
   ======================================== */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 27, 20, 0.88) 0%, rgba(21, 42, 30, 0.72) 60%, rgba(13, 27, 20, 0.55) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 24px;
  width: 100%;
}

/* ========================================
   EMP CARD ENHANCEMENTS (carrossel emp)
   ======================================== */
.emp-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 14px;
}

.emp-location svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.emp-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.emp-meta-row span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}

.emp-meta-row svg {
  width: 13px;
  height: 13px;
}

.emp-itens {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

/* ========================================
   BREADCRUMB BAR
   ======================================== */
.breadcrumb-bar {
  background: var(--green-50);
  border-bottom: 1px solid var(--green-100);
  padding: 12px 0;
  margin-top: 80px;
}

.breadcrumb-bar .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb-bar a {
  color: var(--green-600);
  font-weight: 500;
}

.breadcrumb-bar a:hover {
  text-decoration: underline;
}

.bc-sep {
  color: var(--text-light);
}

/* ========================================
   DETALHE DO IMÓVEL
   ======================================== */
.detail-section-wrap {
  padding-top: 48px;
}

.detail-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 60px;
}

.detail-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-height: 520px;
  box-shadow: var(--shadow-xl);
}

.detail-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.detail-badge {
  font-size: 0.88rem !important;
  padding: 7px 16px !important;
}

.detail-estagio {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(13, 27, 20, 0.85);
  backdrop-filter: blur(8px);
  color: var(--green-300, #86efac);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(74, 222, 128, 0.4);
}

.detail-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 12px;
}

.detail-loc {
  margin-bottom: 20px !important;
}

.detail-price-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
  padding: 20px 24px;
  background: var(--green-50);
  border: 1.5px solid var(--green-100);
  border-radius: var(--radius-lg);
}

.detail-price-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--green-600);
}

.detail-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-700);
  line-height: 1;
}

.detail-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.spec-item svg {
  width: 16px;
  height: 16px;
  color: var(--green-500);
  flex-shrink: 0;
}

.detail-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.btn-outline-sm {
  padding: 11px 24px !important;
  font-size: 0.9rem !important;
}

.detail-ref {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Detail body */
.detail-body {
  max-width: 900px;
}

.detail-section {
  margin-bottom: 40px;
  padding: 32px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.detail-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.detail-section-title svg {
  color: var(--green-500);
}

.detail-leisure {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.leisure-tag {
  padding: 7px 16px;
  background: var(--green-50);
  border: 1.5px solid var(--green-200);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-700);
  transition: var(--transition);
}

.leisure-tag:hover {
  background: var(--green-100);
}

.detail-address {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.detail-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 36px;
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  border-radius: var(--radius-xl);
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.detail-cta-bar p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  font-weight: 500;
}

/* Detail skeleton */
.detail-skeleton {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
}

.detail-sk-img {
  height: 480px;
  border-radius: var(--radius-xl);
}

.detail-sk-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 12px;
}

/* ── Responsive Detail ── */
@media (max-width: 900px) {

  .detail-hero,
  .detail-skeleton {
    grid-template-columns: 1fr;
  }

  .detail-img-wrap img {
    height: 300px;
  }

  .detail-cta-bar {
    flex-direction: column;
    text-align: center;
  }
}