/* ============================================================
   JARDÍN GESTIONES — Hoja de estilos principal
   Reemplazar "JARDÍN GESTIONES" con el nombre comercial final
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --black:      #171311;
  --white:      #ffffff;
  --accent:     #8a7564;
  --accent-rgb: 138, 117, 100;
  --red:        var(--accent);
  --red-dark:   #665447;
  --red-light:  #c4b1a1;
  --gray-100:   #f7f3ee;
  --gray-200:   #e8dfd5;
  --gray-500:   #7f746b;
  --gray-800:   #3b332d;
  --green-wa:   #25d366;
  --font:       'Montserrat', 'Arial', sans-serif;
  --shadow-sm:  0 8px 24px rgba(23,19,17,0.06);
  --shadow-md:  0 18px 40px rgba(23,19,17,0.12);
  --shadow-lg:  0 28px 56px rgba(23,19,17,0.16);
  --radius:     6px;
  --nav-h:      72px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--black);
  background: #fcfaf7;
  line-height: 1.5;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); }

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.98);
  height: 94px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 0 22px;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid rgba(17,17,17,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.24s ease, background 0.24s ease;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  min-width: 0;
}
.nav-logo-img-wrap {
  background: #f4f0e8;
  border-radius: 10px;
  padding: 4px 12px;
  display: flex;
  align-items: center;
  min-width: 188px;
  min-height: 56px;
  justify-content: center;
}
.nav-logo-img {
  height: 50px;
  width: auto;
  display: block;
}
.navbar .nav-logo-img-wrap {
  background: transparent;
  border-radius: 0;
  padding: 0;
  min-width: auto;
  min-height: auto;
  justify-content: flex-start;
}
.navbar .nav-logo-img {
  height: 66px;
  transition: height 0.24s ease, transform 0.24s ease;
  transform-origin: left center;
}
.navbar.is-scrolled {
  box-shadow: 0 8px 18px rgba(0,0,0,0.04);
}
.navbar.is-scrolled .nav-logo-img {
  height: 54px;
}
/* Fallback cuando no existe el archivo logo.png */
.nav-logo-img[data-error="true"],
.nav-logo-img:not([src]),
.nav-logo-fallback {
  display: none;
}
.nav-logo-img.broken { display: none; }
.nav-logo-img.broken + .nav-logo-fallback { display: flex; }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  min-width: 0;
  gap: 20px;
  flex-wrap: nowrap;
}
.nav-links a {
  color: var(--black);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  padding: 10px 0;
  border-radius: 0;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active {
  background: none;
  color: var(--black);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  flex-shrink: 0;
  gap: 10px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.nav-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 156px;
  height: 44px;
  padding: 0 16px;
  background: linear-gradient(135deg, #2f2721 0%, #4a3c31 100%);
  color: #fbf7f2;
  border: 1px solid rgba(23,19,17,0.18);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 26px rgba(39,30,24,0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.nav-search:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #261f19 0%, #3f3329 100%);
  color: #ffffff;
  box-shadow: 0 18px 30px rgba(39,30,24,0.2);
}
.nav-search svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.nav-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 48px;
  height: 44px;
  padding: 0 13px;
  color: var(--gray-800);
  background: linear-gradient(180deg, rgba(252,250,247,0.98) 0%, rgba(245,239,233,0.98) 100%);
  border: 1px solid rgba(59,51,45,0.10);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.nav-icon-btn:hover {
  background: #ffffff;
  border-color: rgba(59,51,45,0.2);
  box-shadow: 0 14px 26px rgba(23,19,17,0.12);
  transform: translateY(-1px);
}
.nav-icon-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.nav-icon-btn span {
  white-space: nowrap;
}
.nav-icon-btn--location {
  min-width: 108px;
}
.nav-icon-btn--wa {
  min-width: 114px;
  background: linear-gradient(180deg, rgba(240,246,241,0.98) 0%, rgba(233,241,235,0.98) 100%);
  border-color: rgba(70,116,86,0.14);
  color: #274234;
}
.nav-icon-btn--wa:hover {
  background: #f8fbf8;
  border-color: rgba(70,116,86,0.24);
}
.nav-wa-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green-wa);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 20px;
  border: none;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-wa-btn:hover { opacity: 0.88; transform: scale(1.03); }
.nav-wa-btn svg { width: 16px; height: 16px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: linear-gradient(180deg, rgba(252,250,247,0.98) 0%, rgba(245,239,233,0.98) 100%);
  border: 1px solid rgba(59,51,45,0.10);
  padding: 0;
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.nav-toggle:hover {
  background: #ffffff;
  border-color: rgba(59,51,45,0.2);
  box-shadow: 0 14px 26px rgba(23,19,17,0.12);
  transform: translateY(-1px);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.navbar.menu-open .nav-toggle {
  background: #ffffff;
  border-color: rgba(59,51,45,0.2);
  box-shadow: 0 14px 26px rgba(23,19,17,0.12);
}
.navbar.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.navbar.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #171311 0%, #221c18 44%, #12100f 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 100%);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 64px;
  max-width: 620px;
}
.hero-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.hero h1 em {
  font-style: normal;
  color: var(--red-light);
}
.hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.home-hero {
  background: #f5f1eb;
}
.home-hero .hero-bg {
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0) 26%),
    radial-gradient(circle at 88% 22%, rgba(216,208,197,0.42) 0%, rgba(216,208,197,0) 30%),
    linear-gradient(135deg, #f7f3ee 0%, #ece4da 45%, #e4dbcf 100%);
}
.home-hero .hero-bg::after {
  background:
    linear-gradient(90deg, rgba(245,241,235,0.94) 0%, rgba(245,241,235,0.72) 45%, rgba(245,241,235,0.2) 100%);
}
.home-hero .hero-content {
  max-width: 760px;
}
.interior-hero {
  min-height: 500px;
  background: #f5f1eb;
}
.interior-hero .hero-bg {
  background:
    radial-gradient(circle at 14% 18%, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0) 30%),
    radial-gradient(circle at 86% 18%, rgba(var(--accent-rgb),0.18) 0%, rgba(var(--accent-rgb),0) 24%),
    linear-gradient(135deg, #f8f5f1 0%, #efe6dc 48%, #e6dbcf 100%);
}
.interior-hero .hero-bg::after {
  background:
    linear-gradient(90deg, rgba(248,245,241,0.95) 0%, rgba(248,245,241,0.8) 48%, rgba(248,245,241,0.34) 100%);
}
.interior-hero .hero-content {
  max-width: 780px;
}
.interior-hero .hero-tag {
  background: rgba(23,19,17,0.06);
  color: #3d352d;
  border-radius: 999px;
  letter-spacing: 1.4px;
}
.interior-hero h1 {
  color: #171412;
  text-transform: none;
  letter-spacing: -1.4px;
  line-height: 0.98;
  margin-bottom: 18px;
}
.interior-hero h1 em {
  color: var(--red-dark);
  font-style: normal;
}
.interior-hero p {
  color: rgba(23,20,18,0.72);
  max-width: 640px;
  font-size: 17px;
  margin-bottom: 0;
}
.interior-hero--gestoria .hero-bg {
  background:
    radial-gradient(circle at 10% 18%, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0) 28%),
    radial-gradient(circle at 88% 18%, rgba(126,149,160,0.17) 0%, rgba(126,149,160,0) 24%),
    linear-gradient(135deg, #f8f5f1 0%, #ede4da 50%, #e5dbd1 100%);
}
.interior-hero--seguros .hero-bg {
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0) 28%),
    radial-gradient(circle at 82% 20%, rgba(116,128,152,0.18) 0%, rgba(116,128,152,0) 22%),
    linear-gradient(135deg, #f8f5f1 0%, #ece4dc 48%, #e4dcd5 100%);
}
.interior-hero--autos .hero-bg {
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0) 28%),
    radial-gradient(circle at 84% 20%, rgba(111,131,139,0.18) 0%, rgba(111,131,139,0) 24%),
    linear-gradient(135deg, #f8f5f1 0%, #ede5db 48%, #e3dbd1 100%);
}
.interior-hero--inmuebles .hero-bg {
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0) 28%),
    radial-gradient(circle at 84% 18%, rgba(146,132,113,0.16) 0%, rgba(146,132,113,0) 24%),
    linear-gradient(135deg, #f8f5f1 0%, #eee6dc 48%, #e6ddd2 100%);
}
.hero-crumb {
  font-size: 12px;
  color: rgba(23,19,17,0.48);
  margin-bottom: 18px;
}
.hero-crumb a {
  color: rgba(23,19,17,0.62);
}
.hero-crumb a:hover {
  color: var(--black);
}
.hero-crumb span {
  color: var(--red-dark);
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.liderar-hero {
  height: auto;
  min-height: auto;
  align-items: flex-start;
  padding: 44px 0 28px;
  background: #f5f1eb;
}
.liderar-hero .hero-bg {
  background:
    radial-gradient(circle at 14% 18%, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0) 28%),
    radial-gradient(circle at 82% 18%, rgba(116,128,152,0.18) 0%, rgba(116,128,152,0) 22%),
    linear-gradient(135deg, #f8f5f1 0%, #ece4dc 48%, #e4dcd5 100%);
}
.liderar-hero .hero-bg::after {
  background: linear-gradient(90deg, rgba(248,245,241,0.95) 0%, rgba(248,245,241,0.8) 48%, rgba(248,245,241,0.34) 100%);
}
.liderar-hero-content {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 64px 12px;
}
.liderar-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 30px;
}
.liderar-hero-copy {
  max-width: 760px;
}
.liderar-hero .hero-tag {
  background: rgba(23,19,17,0.06);
  color: #3d352d;
  border-radius: 999px;
  letter-spacing: 1.4px;
}
.liderar-hero h1 {
  color: #171412;
  text-transform: none;
  letter-spacing: -1.4px;
  line-height: 0.98;
  margin-bottom: 18px;
}
.liderar-hero h1 em {
  color: var(--red-dark);
}
.liderar-hero p {
  color: rgba(23,20,18,0.72);
}
.liderar-hero .btn-primary {
  box-shadow: var(--shadow-sm);
}
.liderar-hero .btn-outline {
  color: var(--black);
  border-color: rgba(23,19,17,0.18);
  background: rgba(255,255,255,0.48);
}
.liderar-hero .btn-outline:hover {
  border-color: rgba(23,19,17,0.28);
  background: rgba(255,255,255,0.78);
}
.liderar-brand-card {
  background: rgba(255,255,255,0.82);
  color: var(--black);
  border-radius: 24px;
  width: 100%;
  max-width: 820px;
  padding: 28px;
  border: 1px solid rgba(17,17,17,0.08);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}
.liderar-brand-logo-wrap {
  background: linear-gradient(180deg, #ffffff 0%, #f6f1eb 100%);
  border-radius: 18px;
  min-height: 138px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 20px 58px;
  margin-bottom: 18px;
}
.liderar-brand-logo-link {
  position: relative;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.liderar-brand-logo-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
}
.liderar-brand-logo {
  width: min(100%, 260px);
  height: auto;
}
.liderar-brand-logo-action {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.liderar-brand-card .liderar-brand-note {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1.5;
  background: #f6f1eb;
  border: 1px solid rgba(var(--accent-rgb),0.18);
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 18px;
}
.liderar-quote-box {
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  background: #181818;
  display: grid;
  gap: 12px;
}
.liderar-quote-box strong {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
}
.liderar-brand-card .liderar-quote-box p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.74);
}
.liderar-quote-box .btn {
  width: 100%;
  justify-content: center;
}
.liderar-brand-points {
  display: grid;
  gap: 12px;
}
.liderar-brand-points li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: var(--gray-800);
  line-height: 1.6;
}
.liderar-brand-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.seguro-cotizador-section {
  scroll-margin-top: calc(var(--nav-h) + 28px);
  background: linear-gradient(180deg, rgba(236,228,220,0.52) 0%, rgba(248,245,241,0.92) 100%);
}
.seguro-cotizador-header {
  margin-bottom: 34px;
}
.seguro-cotizador-panel {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: 32px;
  box-shadow: var(--shadow-md);
}
.seguro-cotizador-layout {
  display: grid;
  grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
  gap: 24px;
}
.seguro-cotizador-controls {
  background: #181818;
  color: var(--white);
  border-radius: 24px;
  padding: 24px;
  display: grid;
  gap: 16px;
  align-content: start;
}
.seguro-cotizador-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.seguro-cotizador-categories {
  display: grid;
  gap: 10px;
}
.seguro-categoria-btn {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.seguro-categoria-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.28);
}
.seguro-categoria-btn.is-active {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.seguro-cotizador-select-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
}
.seguro-cotizador-select {
  width: 100%;
  appearance: none;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
}
.seguro-cotizador-select option {
  color: var(--black);
}
.seguro-cotizador-legend {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}
.seguro-cotizador-result {
  display: grid;
  gap: 20px;
}
.seguro-cotizador-price-card {
  background: linear-gradient(135deg, #181818 0%, #2d241e 100%);
  border-radius: 24px;
  padding: 28px;
  display: grid;
  gap: 12px;
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.seguro-cotizador-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}
.seguro-cotizador-price {
  font-size: clamp(38px, 5vw, 54px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -1.2px;
}
.seguro-cotizador-price-card h3 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.04;
}
.seguro-cotizador-price-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.76);
}
.seguro-cotizador-note {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
}
.seguro-cotizador-price-card .btn {
  justify-content: center;
}
.seguro-cotizador-list {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: 24px;
}
.seguro-cotizador-list-head {
  margin-bottom: 18px;
}
.seguro-cotizador-list-head h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}
.seguro-cotizador-list-head p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-500);
}
.seguro-cotizador-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.seguro-option-card {
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  background: #fffdfb;
  padding: 18px;
  text-align: left;
  display: grid;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.seguro-option-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.seguro-option-card.is-active {
  border-color: rgba(204,34,0,0.28);
  box-shadow: 0 16px 26px rgba(0,0,0,0.08);
}
.seguro-option-type {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--red);
}
.seguro-option-card strong {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--black);
}
.seguro-option-price {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  color: #2d241e;
}
.seguro-option-card small {
  font-size: 12px;
  line-height: 1.6;
  color: var(--gray-500);
}

.liderar-overview {
  background: linear-gradient(180deg, rgba(247,243,238,0.9) 0%, rgba(255,255,255,1) 100%);
}
.liderar-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.liderar-summary-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.liderar-summary-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.liderar-summary-card h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}
.liderar-summary-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}
.liderar-summary-list {
  display: grid;
  gap: 10px;
}
.liderar-summary-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: var(--gray-800);
  line-height: 1.55;
}
.liderar-summary-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}
.home-hero .hero-tag {
  background: rgba(17,17,17,0.06);
  color: #3d352d;
  border-radius: 999px;
  letter-spacing: 1.4px;
}
.home-hero h1 {
  color: #171412;
  text-transform: none;
  letter-spacing: -1.4px;
  line-height: 0.98;
  margin-bottom: 18px;
}
.home-hero h1 em {
  color: #756457;
}
.home-hero p {
  color: rgba(23,20,18,0.72);
  max-width: 620px;
  font-size: 17px;
  margin-bottom: 0;
}
.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.hero-services a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(23,20,18,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.46);
  color: #2d2723;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.hero-services a:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.72);
  border-color: rgba(23,20,18,0.22);
}

/* ── Botones ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: rgba(255,255,255,0.58);
  color: var(--black);
  border: 1px solid rgba(23,19,17,0.1);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.82);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover { background: var(--gray-800); }
.btn-sm { padding: 9px 18px; font-size: 12px; }

/* ── Sección genérica ──────────────────────────────────────── */
.section {
  padding: 64px 32px;
}
.section-gray { background: var(--gray-100); }
.section-dark { background: var(--black); color: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.section-header p {
  font-size: 15px;
  color: var(--gray-500);
  max-width: 540px;
  margin: 0 auto;
}
.section-dark .section-header p { color: rgba(255,255,255,0.55); }

.section-link {
  display: block;
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.section-link:hover { color: var(--red-dark); }

/* ── Servicios cards (home) ────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card-img {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: var(--gray-800);
}
.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,0.04) 0%, rgba(17,17,17,0.18) 100%);
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card-body {
  padding: 24px;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.service-card-body h3 {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.service-card-body p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-card-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(var(--accent-rgb),0.18);
  border-radius: 999px;
  background: rgba(var(--accent-rgb),0.08);
}
.service-card-brand img {
  width: 88px;
  height: auto;
  flex-shrink: 0;
}
.service-card-brand span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red-dark);
}
.service-card-body .btn {
  margin-top: auto;
  align-self: flex-start;
}
.transfer-quote-cover {
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 26%),
    linear-gradient(135deg, #171311 0%, #2a231d 55%, #8a7564 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.transfer-quote-cover-content {
  text-align: center;
  color: var(--white);
}
.transfer-quote-cover-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.12);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.transfer-quote-cover-content strong {
  display: block;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.8px;
}

/* ── Por qué elegirnos ─────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.feature-item {
  position: relative;
  overflow: hidden;
  padding: 28px 24px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  text-align: left;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--accent-rgb),0.95) 0%, rgba(var(--accent-rgb),0.12) 55%, rgba(var(--accent-rgb),0) 100%);
}
.feature-item:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--accent-rgb),0.18);
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
}
.feature-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f5eee7;
}
.feature-icon svg {
  width: 28px;
  height: 28px;
}
.feature-item h4 {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  color: var(--white);
}
.feature-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
}

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #191512 0%, #26211d 55%, #171311 100%);
  padding: 56px 32px;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(var(--accent-rgb),0.22) 0%, rgba(var(--accent-rgb),0) 24%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 18%);
  pointer-events: none;
}
.cta-banner > * {
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cta-banner p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}
.btn-white {
  background: var(--white);
  color: var(--red);
}
.btn-white:hover { background: var(--gray-100); }

/* ── Filtros ───────────────────────────────────────────────── */
.filters-bar {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.filters-bar label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-500);
}
.filter-select {
  appearance: none;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 8px 32px 8px 12px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23767676' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color 0.2s;
}
.filter-select:focus { outline: none; border-color: var(--red); }
.filters-count {
  margin-left: auto;
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 600;
}

/* ── Grilla de listados ────────────────────────────────────── */
.listings-section {
  padding: 32px;
  max-width: 1300px;
  margin: 0 auto;
}
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

/* ── Card de Auto ──────────────────────────────────────────── */
.car-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform 0.25s, box-shadow 0.25s;
}
.car-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.car-card-link {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: inherit;
}
.car-card-link:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: -2px;
}
.car-card-img {
  position: relative;
  height: 210px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.car-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.car-card-img .placeholder-icon { font-size: 72px; opacity: 0.35; }
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  color: var(--white);
}
.badge-venta    { background: var(--red); }
.badge-reserva  { background: #e67e22; }
.badge-vendido  { background: var(--gray-500); }
.badge-nuevo    { background: #27ae60; }
.badge-alquiler { background: #2980b9; }
.badge-alquilado { background: var(--gray-500); }

.car-card-body {
  padding: 20px;
}
.car-card-body h3 {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}
.car-card-sub {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 12px;
}
.car-card-specs {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.car-spec {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-800);
}
.car-spec svg { width: 14px; height: 14px; color: var(--gray-500); }
.car-card-price {
  font-size: 20px;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 16px;
}
.car-card-price small {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
}

.auto-detail-view {
  max-width: 1320px;
  margin: 0 auto;
  padding: 32px;
}
.auto-detail-page {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.auto-detail-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.auto-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.auto-back-link:hover {
  transform: translateY(-1px);
  border-color: var(--gray-500);
}
.auto-back-link svg {
  width: 18px;
  height: 18px;
  color: var(--black);
}
.auto-market-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 370px);
  gap: 28px;
  align-items: start;
}
.auto-market-main {
  min-width: 0;
}
.auto-gallery-shell {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.auto-gallery-rail {
  display: grid;
  gap: 12px;
}
.auto-gallery-main {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  overflow: hidden;
  min-height: 620px;
  box-shadow: var(--shadow-sm);
}
.auto-gallery-main img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: contain;
  background: #ffffff;
}
.auto-gallery-thumb {
  border: 2px solid transparent;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  padding: 0;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.auto-gallery-thumb:hover {
  transform: translateY(-1px);
}
.auto-gallery-thumb.is-active {
  border-color: var(--black);
}
.auto-gallery-thumb img {
  width: 100%;
  height: 88px;
  object-fit: cover;
}
.auto-market-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.auto-market-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.auto-market-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-bottom: 12px;
}
.auto-market-meta span {
  position: relative;
  font-size: 13px;
  color: var(--gray-500);
}
.auto-market-meta span:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(17,17,17,0.22);
  transform: translateY(-50%);
}
.auto-detail-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(var(--accent-rgb),0.12);
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.auto-market-card h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -1.2px;
  margin-bottom: 10px;
}
.auto-market-location {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 12px;
}
.auto-detail-price-main {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 14px;
}
.auto-market-copy {
  font-size: 14px;
  color: var(--gray-800);
  line-height: 1.6;
  margin-bottom: 18px;
}
.auto-detail-checks {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}
.auto-detail-checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
}
.auto-detail-checks svg {
  width: 16px;
  height: 16px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}
.auto-market-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.auto-market-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.auto-market-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.auto-market-btn--ask {
  background: #0f62fe;
  color: #ffffff;
}
.auto-market-btn--wa {
  background: #eff4ff;
  border-color: #b5cafb;
  color: #0f62fe;
}
.auto-product-section {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.auto-product-header {
  margin-bottom: 26px;
}
.auto-product-header h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: -0.4px;
}
.auto-feature-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 40px;
  margin-bottom: 34px;
}
.auto-highlight-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.auto-highlight-icon {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f3f3f3;
  color: var(--black);
  flex-shrink: 0;
}
.auto-highlight-icon img {
  width: 50px;
  height: 50px;
}
.auto-highlight-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}
.auto-highlight-copy span {
  color: var(--gray-500);
}
.auto-highlight-copy strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}
.auto-feature-groups {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 36px;
}
.auto-feature-column {
  display: grid;
  align-content: start;
}
.auto-feature-column-stack {
  gap: 28px;
}
.auto-feature-group h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
}
.auto-feature-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ededed;
}
.auto-feature-row th,
.auto-feature-row td {
  padding: 15px 18px;
  font-size: 14px;
  text-align: left;
  vertical-align: middle;
}
.auto-feature-row th {
  width: 50%;
  font-weight: 500;
  color: var(--black);
  background: #f3f3f3;
}
.auto-feature-row td {
  font-weight: 500;
  color: var(--gray-800);
  background: #f3f3f3;
}
.auto-feature-row:nth-child(even) th,
.auto-feature-row:nth-child(even) td {
  background: #ffffff;
}
.auto-detail-empty {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
}
.auto-detail-empty h1 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  margin: 14px 0 10px;
}
.auto-detail-empty p {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.detail-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.detail-panel {
  background: #ffffff;
  border-radius: 16px;
  width: min(1080px, 100%);
  max-height: min(88vh, 920px);
  overflow: auto;
  box-shadow: 0 28px 80px rgba(0,0,0,0.35);
}
.detail-header {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #111111;
  color: #ffffff;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.detail-header h3 {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.detail-close {
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.detail-content {
  padding: 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}
.detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.detail-gallery-item {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  background: #f4f4f4;
}
.detail-gallery-item:first-child {
  grid-column: 1 / -1;
}
.detail-gallery-item img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
  display: block;
}
.detail-info {
  display: flex;
  flex-direction: column;
}
.detail-info-single {
  grid-column: 1 / -1;
}
.detail-price {
  font-size: 30px;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 18px;
}
.detail-specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.detail-specs-auto {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.detail-spec {
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  background: #fafafa;
}
.detail-spec span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.detail-spec strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}
.detail-description {
  font-size: 15px;
  color: var(--gray-800);
  line-height: 1.7;
  margin-bottom: 0;
}
.detail-footer {
  padding: 0 24px 24px;
}
.detail-wa-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px;
  border-radius: 10px;
}

/* ── Card de Inmueble ──────────────────────────────────────── */
.prop-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform 0.25s, box-shadow 0.25s;
}
.prop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.prop-card-image-link {
  display: block;
  color: inherit;
  text-decoration: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 100%;
  cursor: pointer;
}
.prop-card-image-link:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: -2px;
}
.prop-card-img {
  position: relative;
  height: 210px;
  background: linear-gradient(135deg, #002233 0%, #004455 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.prop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prop-card-img .placeholder-icon { font-size: 72px; opacity: 0.35; }
.prop-card-body {
  padding: 20px;
}
.prop-card-body h3 {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}
.prop-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 600;
  margin-bottom: 12px;
}
.prop-features {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.prop-feat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-800);
}
.prop-card-price {
  font-size: 20px;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 16px;
}
.prop-card-price small {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
}
.prop-card-footer {
  display: flex;
  gap: 8px;
}
.prop-card-footer .btn { flex: 1; justify-content: center; }

/* ── Gestoría page ─────────────────────────────────────────── */
.gestoria-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #f5f1eb;
  padding: 0;
  display: flex;
  align-items: center;
  min-height: 500px;
}
.gestoria-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0) 30%),
    radial-gradient(circle at 86% 18%, rgba(126,149,160,0.18) 0%, rgba(126,149,160,0) 26%),
    linear-gradient(135deg, #f8f5f1 0%, #ede4da 48%, #e5dbd1 100%);
  z-index: -2;
}
.gestoria-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(248,245,241,0.95) 0%, rgba(248,245,241,0.8) 46%, rgba(248,245,241,0.3) 100%);
  z-index: -1;
}
.gestoria-hero-content {
  max-width: 780px;
  padding: 72px 64px;
}
.gestoria-hero .hero-tag {
  background: rgba(23,19,17,0.06);
  color: #3d352d;
  border-radius: 999px;
  letter-spacing: 1.4px;
}
.gestoria-hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  color: #171412;
  text-transform: none;
  letter-spacing: -1.4px;
  line-height: 0.98;
  margin-bottom: 18px;
}
.gestoria-hero p {
  font-size: 17px;
  color: rgba(23,20,18,0.72);
  line-height: 1.6;
  margin-bottom: 28px;
}
.gestoria-hero .btn-primary {
  box-shadow: var(--shadow-sm);
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.servicio-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.servicio-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.servicio-icon {
  width: 48px;
  height: 48px;
  background: var(--gray-100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.servicio-icon--text {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.9px;
  color: #171412;
  text-transform: uppercase;
}
.servicio-text h4 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 6px;
}
.servicio-text p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}
.gestoria-highlight-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}
.gestoria-highlight-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(23,20,18,0.1);
  box-shadow: var(--shadow-sm);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #3d352d;
}
.gestoria-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}
.gestoria-tag {
  display: inline-flex;
  align-items: center;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  font-weight: 700;
  color: #171412;
}
.gestoria-note {
  max-width: 820px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}
.consultas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.consulta-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}
.consulta-card h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #171412;
}
.consulta-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}
.gestoria-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.gestoria-step {
  padding: 28px 24px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.gestoria-step-number {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
}
.gestoria-step:nth-child(2) .gestoria-step-number {
  background: var(--red);
}
.gestoria-step h4 {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.gestoria-step p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
}
.transferencia-layout {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 420px);
  gap: 28px;
  align-items: start;
}
.transferencia-form-card,
.transferencia-result-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  padding: 30px;
}
.transferencia-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--red-dark);
  margin-bottom: 12px;
}
.transferencia-form-card h3,
.transferencia-result-card h3 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.8px;
  margin-bottom: 10px;
  color: #171412;
}
.transferencia-card-copy {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-500);
  margin-bottom: 24px;
}
.vehicle-type-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.vehicle-type-option {
  position: relative;
  display: inline-flex;
}
.vehicle-type-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.vehicle-type-option span {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid var(--gray-200);
  background: #f7f3ee;
  color: #171412;
  font-size: 14px;
  font-weight: 800;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.vehicle-type-option.is-active span {
  background: #171311;
  border-color: #171311;
  color: var(--white);
  transform: translateY(-1px);
}
.quote-estimate-box {
  background: linear-gradient(180deg, #f7f3ee 0%, #fff 100%);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 22px;
  margin: 22px 0;
}
.quote-estimate-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 8px;
}
.quote-estimate-amount {
  display: block;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1;
  color: #171412;
  letter-spacing: -1.4px;
  margin-bottom: 10px;
}
.quote-estimate-meta {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}
.quote-summary-list {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}
.quote-summary-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}
.quote-summary-list dt {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gray-500);
}
.quote-summary-list dd {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  text-align: right;
  color: #171412;
}
.quote-rate-list {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}
.quote-rate-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f7f3ee;
  border: 1px solid var(--gray-200);
}
.quote-rate-list span {
  font-size: 13px;
  color: var(--gray-800);
}
.quote-rate-list strong {
  font-size: 13px;
  font-weight: 900;
  color: #171412;
}
.quote-disclaimer {
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.quote-whatsapp-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.quote-whatsapp-btn.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}

/* ── Contacto ──────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}
.contact-section {
  padding-top: 72px;
}
.contact-info,
.contact-form {
  border-radius: 28px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 48px rgba(0,0,0,0.16);
}
.contact-info {
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.03) 100%);
}
.contact-form {
  background: var(--white);
  border-color: rgba(23,19,17,0.08);
}
.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.contact-form .contact-eyebrow {
  background: rgba(var(--accent-rgb),0.1);
  color: var(--red-dark);
}
.contact-info h3 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  text-transform: none;
  margin-bottom: 12px;
}
.contact-intro {
  font-size: 15px;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  margin-bottom: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.contact-item:last-child {
  margin-bottom: 0;
}
.contact-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5eee7;
  flex-shrink: 0;
}
.contact-item-icon svg {
  width: 22px;
  height: 22px;
}
.contact-item-text label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2px;
}
.contact-item-text span {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.6;
}
.contact-item-text a {
  color: inherit;
}

.contact-form h3 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  text-transform: none;
  margin-bottom: 20px;
  color: var(--black);
}
.contact-form form {
  margin-top: 24px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 14px;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: #0a0a0a;
  padding: 48px 32px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 260px;
}
.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ── WhatsApp flotante ─────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.wa-float svg { width: 28px; height: 28px; fill: var(--white); }
.wa-tooltip {
  display: none;
}

/* ── Page hero (para sub-páginas) ──────────────────────────── */
.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, #f8f4ef 0%, #eee6dc 100%);
  padding: 72px 32px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  min-height: 360px;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0) 28%),
    radial-gradient(circle at 86% 18%, rgba(var(--accent-rgb),0.16) 0%, rgba(var(--accent-rgb),0) 24%),
    linear-gradient(135deg, #f8f4ef 0%, #eee6dc 100%);
  z-index: -2;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(248,244,239,0.94) 0%, rgba(248,244,239,0.74) 48%, rgba(248,244,239,0.26) 100%);
  z-index: -1;
}
.page-hero > * {
  position: relative;
  z-index: 1;
}
.page-hero .btn {
  box-shadow: var(--shadow-sm);
}
.page-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
  color: var(--black);
  text-transform: none;
  letter-spacing: -1.3px;
  line-height: 0.98;
}
.page-hero p {
  font-size: 17px;
  color: var(--gray-500);
  margin-top: 10px;
  max-width: 620px;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(23,19,17,0.06);
  border-radius: 999px;
  font-size: 12px;
  color: rgba(23,19,17,0.4);
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(23,19,17,0.6); }
.breadcrumb a:hover { color: var(--black); }
.breadcrumb span { color: var(--red-dark); }

/* ── No resultados ─────────────────────────────────────────── */
.no-results {
  text-align: center;
  padding: 64px 32px;
  grid-column: 1 / -1;
}
.no-results p { font-size: 15px; color: var(--gray-500); }

.property-detail-section {
  padding: 48px 32px 0;
  background: linear-gradient(180deg, #f8f4ef 0%, #ffffff 100%);
}
.property-detail-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 28px;
  align-items: start;
}
.property-main,
.property-sidebar {
  min-width: 0;
}
.property-summary {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.detail-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(var(--accent-rgb),0.1);
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.property-summary h2 {
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.property-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-800);
  margin-bottom: 24px;
}
.property-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.property-highlight-card {
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--gray-200);
  background: #faf7f3;
}
.property-highlight-card span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 6px;
}
.property-highlight-card strong {
  display: block;
  font-size: 20px;
  font-weight: 900;
  color: var(--black);
}
.property-sticky {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
}
.property-price-card,
.property-tech-card,
.property-location-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.property-price-card p,
.property-location-card p {
  color: var(--gray-800);
  line-height: 1.7;
}
.property-price-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 8px;
}
.property-price-value {
  display: block;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
}
.property-card-actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
.property-tech-card h3,
.property-location-card h3 {
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.tech-list {
  display: grid;
  gap: 10px;
}
.tech-list div {
  padding: 12px 14px;
  border-radius: 12px;
  background: #fafafa;
  border: 1px solid var(--gray-200);
}
.tech-list dt {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.tech-list dd {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}
.location-inline-card {
  max-width: 1240px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.location-inline-card img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}
.location-inline-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-inline-body h2 {
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.location-inline-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-800);
  margin-bottom: 18px;
}
.location-points {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}
.location-points li {
  list-style: none;
  position: relative;
  padding-left: 18px;
  color: var(--gray-800);
}
.location-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-dark);
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1480px) {
  .navbar {
    gap: 14px;
    padding: 0 18px;
  }
  .nav-links {
    gap: 14px;
  }
  .nav-links a {
    font-size: 14px;
  }
  .nav-search {
    min-width: 144px;
    height: 42px;
    padding: 0 15px;
    font-size: 13px;
  }
  .nav-icon-btn {
    min-width: 42px;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 14px;
  }
  .nav-icon-btn span {
    display: none;
  }
  .nav-toggle {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }
}

.page-empty-shell {
  min-height: 52vh;
}

@media (max-width: 900px) {
  .navbar {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 0 16px;
    position: sticky;
    height: 82px;
  }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: auto;
    width: min(320px, calc(100vw - 32px));
    background: rgba(255,255,255,0.98);
    padding: 10px;
    border: 1px solid rgba(17,17,17,0.08);
    border-radius: 18px;
    box-shadow: 0 20px 42px rgba(0,0,0,0.14);
    backdrop-filter: blur(12px);
    gap: 4px;
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 14px 16px;
    border-bottom: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 800;
  }
  .nav-links.open a::after { display: none; }
  .nav-links.open a:hover,
  .nav-links.open a.active {
    background: #f4f4f4;
  }
  .nav-actions {
    gap: 8px;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
  }
  .nav-search { display: none; }
  .nav-icon-btn,
  .nav-toggle {
    min-width: 42px;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 14px;
  }
  .nav-icon-btn span { display: none; }
  .navbar .nav-logo-img { height: 54px; }
  .navbar.is-scrolled .nav-logo-img { height: 46px; }

  .hero { height: auto; min-height: 360px; }
  .hero-content { padding: 48px 24px; }
  .interior-hero { min-height: 420px; }
  .liderar-hero-content { padding: 48px 24px; }
  .liderar-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .liderar-hero-copy { max-width: none; }
  .seguro-cotizador-panel { padding: 18px; }
  .seguro-cotizador-layout { grid-template-columns: 1fr; }
  .seguro-cotizador-controls,
  .seguro-cotizador-price-card,
  .seguro-cotizador-list {
    padding: 22px;
  }
  .seguro-cotizador-options { grid-template-columns: 1fr 1fr; }

  .gestoria-hero {
    min-height: 420px;
    padding: 0;
  }
  .gestoria-hero-content { padding: 56px 24px; }
  .gestoria-highlight-row { gap: 8px; }
  .gestoria-highlight-chip { font-size: 11px; padding: 9px 12px; }
  .gestoria-tag-list { gap: 10px; }
  .gestoria-tag {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .consultas-grid,
  .gestoria-step-grid {
    grid-template-columns: 1fr;
  }
  .transferencia-layout,
  .vehicle-type-switch {
    grid-template-columns: 1fr;
  }
  .transferencia-form-card,
  .transferencia-result-card {
    padding: 24px;
  }
  .transferencia-form-card h3,
  .transferencia-result-card h3 {
    font-size: 24px;
  }
  .quote-summary-list div,
  .quote-rate-list div {
    flex-direction: column;
    align-items: flex-start;
  }
  .quote-summary-list dd {
    text-align: left;
  }

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

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

  .filters-bar { padding: 12px 16px; }
  .listings-section { padding: 20px 16px; }
  .auto-detail-view { padding: 24px 16px; }
  .auto-market-layout { grid-template-columns: 1fr; }
  .auto-market-sidebar { position: static; }
  .auto-gallery-shell { grid-template-columns: 1fr; }
  .auto-gallery-rail {
    order: 2;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
  }
  .auto-gallery-main { order: 1; }
  .auto-feature-groups { grid-template-columns: 1fr; gap: 24px; }
  .auto-feature-highlights { grid-template-columns: 1fr 1fr; }
  .auto-gallery-main,
  .auto-gallery-main img {
    min-height: 420px;
  }
  .property-detail-section { padding: 32px 16px 0; }
  .property-detail-grid,
  .location-inline-card {
    grid-template-columns: 1fr;
  }
  .property-sticky {
    position: static;
  }
  .property-highlight-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .section { padding: 48px 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-logo-img-wrap { min-width: 160px; min-height: 48px; padding: 3px 10px; }
  .navbar { height: 76px; }
  .navbar .nav-logo-img { height: 50px; }
  .navbar.is-scrolled .nav-logo-img { height: 42px; }
  .nav-actions { gap: 6px; }
  .nav-icon-btn,
  .nav-toggle {
    min-width: 38px;
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }
  .nav-toggle span { width: 16px; }
  .nav-links.open {
    right: 12px;
    width: calc(100vw - 24px);
  }
  .nav-links.open a {
    padding: 13px 14px;
    font-size: 16px;
  }
  .page-empty-shell { min-height: 44vh; }
  .auto-detail-view { padding: 16px; }
  .auto-product-section,
  .auto-market-card,
  .auto-detail-empty {
    padding: 22px 18px;
    border-radius: 18px;
  }
  .auto-detail-topbar {
    align-items: flex-start;
  }
  .auto-back-link {
    width: 42px;
    height: 42px;
  }
  .auto-gallery-main,
  .auto-gallery-main img {
    min-height: 280px;
    border-radius: 18px;
  }
  .auto-gallery-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .auto-gallery-thumb img {
    height: 72px;
  }
  .auto-feature-highlights {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .auto-market-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .detail-modal { padding: 12px; }
  .detail-content {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .detail-gallery {
    grid-template-columns: 1fr;
  }
  .detail-gallery-item:first-child {
    grid-column: auto;
  }
  .detail-specs-auto {
    grid-template-columns: 1fr;
  }
  .detail-footer {
    padding: 0 18px 18px;
  }
  .prop-card-footer { flex-direction: column; }
  .page-hero { padding: 32px 16px; }
  .property-summary,
  .property-price-card,
  .property-tech-card,
  .property-location-card,
  .location-inline-body {
    padding: 18px;
  }
  .property-price-value {
    font-size: 30px;
  }
  .location-inline-card img {
    min-height: 260px;
  }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .liderar-brand-card,
  .liderar-summary-card {
    padding: 20px;
  }
  .seguro-cotizador-panel {
    padding: 14px;
    border-radius: 24px;
  }
  .seguro-cotizador-controls,
  .seguro-cotizador-price-card,
  .seguro-cotizador-list {
    padding: 18px;
    border-radius: 20px;
  }
  .seguro-cotizador-options { grid-template-columns: 1fr; }
  .seguro-cotizador-price {
    font-size: 34px;
  }
  .service-card-brand {
    width: 100%;
    border-radius: 16px;
    justify-content: center;
  }
}
