:root {
  /* Fondos */
  --bg: #F8F7F4;
  --surface: #FFFFFF;
  --soft: #F1EEE6;

  /* Textos */
  --text: #0B1220;
  --muted: #5C6470;

  /* Bordes */
  --line: #E4DFD3;

  /* Marca — Azul marino (secundario / dark) */
  --dark: #0A162E;
  --dark-2: #14213D;

  /* Marca — Dorado (primario / accent) */
  --accent: #C9A227;
  --accent-light: #E4C765;
  --accent-dark: #9C7B1B;
  --accent-soft: #FBF3DE;

  /* Funcional */
  --whatsapp: #216E49;
  --whatsapp-hover: #19583A;
  --success: #2E7D32;
  --error: #B3261E;
  --warning: #C9A227;

  /* Otros (sin cambio de valor) */
  --radius: 22px;
  --shadow: 0 20px 60px rgba(10, 22, 46, .10);
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

h1, h2 {
  font-family: 'Playfair Display', 'Georgia', serif;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--text);
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 3.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
}

h3, h4 {
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.25;
  letter-spacing: -.01em;
  color: var(--text);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.6rem);
}

h4 {
  font-size: 1.15rem;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

label,
.field label,
.hero-search__label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-family: 'Inter', sans-serif;
}

:focus-visible {
  outline: 3px solid rgba(201, 162, 39, .45);
  outline-offset: 2px;
}

.container {
  width: min(92%, var(--max-width));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  font-size: .96rem;
  cursor: pointer;
  transition: .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark);
  color: var(--accent-light);
}

.btn-dark:hover {
  background: var(--dark-2);
  color: #FFFFFF;
  box-shadow: 0 12px 30px rgba(10, 22, 46, .22);
}

.btn-light {
  background: var(--surface);
  border-color: var(--line);
  color: var(--text);
}

.btn-light:hover {
  color: var(--accent-dark);
  border-color: var(--accent);
  background: var(--accent-soft);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  transition: all .25s ease;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  box-shadow: 0 10px 24px rgba(33, 110, 73, .22);
}

.btn-sm {
  padding: .72rem 1rem;
  font-size: .9rem;
}

.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.45rem;
  background: none;
  border: none;
  padding: 0;
}

.section {
  padding: 5.5rem 0;
}

.section--white {
  background: var(--surface);
}

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

.section__head {
  max-width: 760px;
  margin-bottom: 2.8rem;
}

.section__head h2 {
  margin-top: 1rem;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
}

.section__head p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

/* HEADER (Cápsula Flotante Centrada sin Barra Blanca) */
.header {
  position: fixed;
  top: 1.25rem;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
}

.mobile-logo {
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.55rem;
  box-shadow: var(--shadow);
  pointer-events: auto;
}

.mobile-logo__img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

/* MENÚ DE NAVEGACIÓN TIPO PASTILLA / PILL */
.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--surface);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.45rem 0.35rem 0.65rem;
  box-shadow: var(--shadow);
  transition: all 0.25s ease;
  pointer-events: auto;
}

.nav-links:hover {
  box-shadow: 0 25px 65px rgba(10, 22, 46, 0.15);
  border-color: rgba(201, 162, 39, 0.3);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.1rem 0.4rem 0.1rem 0.15rem;
  margin-right: 0.2rem;
  transition: transform 0.2s ease;
  border-radius: 999px;
}

.nav-logo:hover {
  transform: scale(1.08);
}

.nav-logo__img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

.nav-links a:not(.btn):not(.nav-logo) {
  color: var(--text);
  font-size: 0.91rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-links a:not(.btn):not(.nav-logo):hover {
  color: var(--accent-dark);
  background: var(--accent-soft);
}

.nav-links .btn {
  background: var(--dark);
  color: var(--accent-light);
  padding: 0.55rem 1.25rem;
  font-size: 0.88rem;
  border-radius: 999px;
  margin-left: 0.35rem;
  font-weight: 600;
  border: 1px solid rgba(201, 162, 39, 0.3);
  transition: all 0.25s ease;
}

.nav-links .btn:hover {
  background: var(--dark-2);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(10, 22, 46, 0.25);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 14px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text);
  display: block;
}

/* ==========================================================
   HERO (100% Pantalla / 100vh Centrado Verticalmente)
   ========================================================== */
.hero-banner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
  max-height: none;
  background: url('../assets/images/hero/hero-bg.jpeg') center bottom / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  box-sizing: border-box;
}

.hero-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10, 22, 46, .55), rgba(10, 22, 46, .25));
  pointer-events: none;
}

.hero-banner__content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-banner__title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1.12;
  text-transform: uppercase;
  text-shadow: 0 2px 25px rgba(10, 22, 46, 0.8);
}

.hero-banner__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  font-weight: 500;
  color: #E4DFD3;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.85rem;
  text-shadow: 0 2px 14px rgba(10, 22, 46, 0.8);
}

/* BUSCADOR FLOTANTE CON DESPLEGABLES MODERNOS */
.hero-search {
  width: 100%;
  max-width: 800px;
  margin-top: 2rem;
  position: relative;
  z-index: 50;
}

.hero-search__form {
  display: flex;
  align-items: center;
  background: var(--surface);
  border-radius: 20px;
  padding: 0.5rem 0.65rem 0.5rem 0.9rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  gap: 0.85rem;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.hero-search__form:hover {
  box-shadow: 0 25px 65px rgba(10, 22, 46, 0.18);
  border-color: rgba(201, 162, 39, 0.35);
}

.hero-search__field {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0.45rem 0.85rem;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

/* Hover state en campos del Hero (feedback visual sutil) */
.hero-search__field:hover {
  background: var(--soft);
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: 0 4px 14px rgba(10, 22, 46, 0.06);
}

.hero-search__field:hover .hero-search__label {
  color: var(--accent-dark);
}

.hero-search__field:hover .hero-search__field-icon {
  color: var(--accent-dark);
  transform: scale(1.08);
}

.hero-search__field:hover .custom-select__chevron {
  color: var(--accent-dark);
}

/* Estado activo / abierto del desplegable */
.hero-search__field.is-open,
.hero-search__field:has(.custom-select.is-active) {
  background: var(--accent-soft);
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.20), 0 4px 16px rgba(10, 22, 46, 0.08);
}

.hero-search__field.is-open .hero-search__label,
.hero-search__field:has(.custom-select.is-active) .hero-search__label {
  color: var(--accent-dark);
}

.hero-search__label {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--muted);
  margin-bottom: 0.15rem;
  transition: color 0.2s ease;
  pointer-events: none;
}

.hero-search__divider {
  width: 1px;
  height: 38px;
  background: var(--line);
}

.hero-search__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  padding: 0.95rem 2.2rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.35);
  white-space: nowrap;
  font-family: inherit;
}

.hero-search__btn:hover {
  background: var(--accent-light);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.45);
}

.hero-search__btn-icon {
  width: 17px;
  height: 17px;
  stroke-width: 2.3;
  flex-shrink: 0;
  color: var(--dark);
  transition: transform 0.2s ease;
}

.hero-search__btn:hover .hero-search__btn-icon {
  transform: scale(1.1);
}

/* COMPONENTE CUSTOM-SELECT (Desplegables Modernos) */
.custom-select {
  position: relative;
  width: 100%;
}

.custom-select__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: transparent;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0.35rem 0.2rem 0.35rem 0;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: all 0.2s ease;
}

.custom-select__trigger-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  flex: 1;
}

.hero-search__field-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, color 0.2s ease;
}

.hero-search__field-icon svg {
  width: 100%;
  height: 100%;
}

.custom-select.is-active .hero-search__field-icon {
  transform: scale(1.1);
  color: var(--accent-dark);
}

.custom-select__value {
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
}

.custom-select__chevron {
  width: 17px;
  height: 17px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}

.custom-select.is-active .custom-select__chevron {
  transform: rotate(180deg);
  color: var(--accent-dark);
}

.custom-select.is-active .custom-select__value {
  color: var(--accent-dark);
}

/* MENÚ DESPLEGABLE FLOTANTE */
.custom-select__menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -12px;
  min-width: 280px;
  max-width: 320px;
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 0.55rem;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top left;
  transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.22s;
  pointer-events: none;
  list-style: none;
  max-height: 290px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-light) transparent;
}

.custom-select__menu::-webkit-scrollbar {
  width: 5px;
}

.custom-select__menu::-webkit-scrollbar-thumb {
  background: var(--accent-light);
  border-radius: 999px;
}

.custom-select.is-active .custom-select__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.custom-select__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.18s ease;
  user-select: none;
}

.custom-select__item:hover {
  background: var(--accent-soft);
  color: var(--accent-dark);
  transform: translateX(3px);
}

.custom-select__item.is-selected {
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 600;
}

.custom-select__item-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.custom-select__item-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.18s ease;
}

.custom-select__item:hover .custom-select__item-icon,
.custom-select__item.is-selected .custom-select__item-icon {
  background: var(--accent-dark);
  color: #ffffff;
}

.custom-select__item-icon svg {
  width: 15px;
  height: 15px;
}

.custom-select__check {
  width: 16px;
  height: 16px;
  color: var(--accent-dark);
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.18s ease;
  flex-shrink: 0;
}

.custom-select__item.is-selected .custom-select__check {
  opacity: 1;
  transform: scale(1);
}

/* ==========================================================
   QUIÉNES SOMOS (ABOUT)
   ========================================================== */
.about-section {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  padding: 6rem 0 5rem;
}

/* 1. Imagen de fondo lateral izquierda con difuminado */
.about-bg-image {
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(340px, 45vw, 680px);
  max-height: 520px;
  z-index: 1;
  pointer-events: none;
}

.about-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left bottom;
  display: block;
}

/* Difuminado/degradado en la parte superior y lateral para fundir suavemente */
.about-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 45%,
    rgba(255, 255, 255, 0.85) 75%,
    var(--surface) 100%
  ),
  linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.25) 55%,
    rgba(255, 255, 255, 0.92) 85%,
    var(--surface) 100%
  );
  pointer-events: none;
}

/* Patrón de puntos superior derecho */
.about-bg-dots {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 180px;
  height: 150px;
  background-image: radial-gradient(rgba(201, 162, 39, 0.25) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  z-index: 1;
  pointer-events: none;
}

/* Línea curva decorativa dorada cruzando la sección */
.about-bg-curve {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  max-width: 1200px;
  z-index: 1;
  pointer-events: none;
}

.about__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}

/* 2. Columna Izquierda: Encabezado y Textos */
.about__copy {
  max-width: 520px;
}

.about-eyebrow {
  display: inline-block;
  color: var(--accent);
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.45rem;
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
}

.about-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin: 0;
}

.about-title .text-gold {
  color: var(--accent);
}

/* 3. Separador Decorativo con Diamante (◇) */
.about-divider {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 1.25rem 0 1.6rem;
}

.about-divider__line {
  width: 44px;
  height: 1.5px;
  background: rgba(201, 162, 39, 0.45);
}

.about-divider__diamond {
  color: var(--accent);
  font-size: 1.05rem;
  line-height: 1;
}

.about-lead {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 1rem;
}

.about__copy p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* 4. Columna Derecha: Tarjetas 2x2 */
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
}

.mini-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2.2rem 1.8rem 3.2rem 1.8rem;
  box-shadow: 0 8px 26px rgba(10, 22, 46, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(10, 22, 46, 0.08);
  border-color: rgba(201, 162, 39, 0.35);
}

/* Ícono circular con borde dashed dorado suave */
.mini-card__icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px dashed rgba(201, 162, 39, 0.5);
  display: grid;
  place-items: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.12);
}

.mini-card__icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  color: var(--accent);
  display: block;
}

.mini-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.25;
}

/* Línea divisoria bajo el título */
.mini-card__line {
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0.55rem 0 0.85rem;
}

.mini-card p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
  margin: 0;
}

/* Recuadro de número en esquina inferior derecha */
.mini-card__num {
  position: absolute;
  right: 1.3rem;
  bottom: 1.3rem;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.8rem;
  display: grid;
  place-items: center;
  box-shadow: 0 3px 10px rgba(201, 162, 39, 0.3);
}

/* ==========================================================
   SERVICIOS
   ========================================================== */
.services-section {
  position: relative;
  overflow: hidden;
  background-color: var(--soft);
  --section-bg: var(--soft);
}

.services-container {
  position: relative;
  z-index: 2;
}

/* Encabezado */
.services-header {
  max-width: 720px;
  margin-bottom: 2.8rem;
}

.services-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.22;
  margin: 0;
}

/* Separador decorativo con rombo (◇) */
.services-divider {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0.85rem 0 1.1rem;
}

.services-divider__line {
  width: 44px;
  height: 1.5px;
  background: rgba(201, 162, 39, 0.45);
}

.services-divider__diamond {
  color: var(--accent);
  font-size: 1.05rem;
  line-height: 1;
}

.services-subtitle {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Grid de tarjetas (3 columnas x 2 filas) */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

/* Tarjeta individual de servicio */
.service-card {
  position: relative;
  padding: 2.1rem 1.8rem 2.4rem 1.8rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 20px rgba(10, 22, 46, 0.03);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease, border-color 0.28s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(10, 22, 46, 0.08);
  border-color: rgba(201, 162, 39, 0.35);
}

/* Número identificador (01–06) */
.service-card__num {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.85rem;
  display: inline-block;
  line-height: 1;
}

/* Ícono circular (fondo suave + ícono dorado) */
.service-card__icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.12);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.service-card:hover .service-card__icon-badge {
  transform: scale(1.06);
  background: rgba(201, 162, 39, 0.18);
}

.service-card__icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.24rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.55rem 0;
  line-height: 1.3;
}

.service-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

/* Flecha indicadora en esquina inferior derecha */
.card__arrow {
  position: absolute;
  right: 1.4rem;
  bottom: 1.3rem;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--accent);
  transition: transform 0.22s ease, color 0.22s ease;
}

.card__arrow svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.5;
  display: block;
}

.service-card:hover .card__arrow {
  transform: translateX(4px);
  color: var(--accent-dark);
}

/* ==========================================================
   CATALOGO
   ========================================================== */
.catalog-eyebrow {
  display: inline-block;
  color: var(--accent);
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.4rem;
  background: none;
  border: none;
  padding: 0;
}

.catalog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.catalog-header__info {
  max-width: 720px;
}

.catalog-header__info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  color: var(--text);
  margin-top: 0.6rem;
  line-height: 1.15;
}

.catalog-header__info p {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* Tarjeta "Agenda tu visita" */
.catalog-cta-card {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  padding: 0.85rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(10, 22, 46, 0.05);
  text-decoration: none;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.catalog-cta-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(10, 22, 46, 0.09);
}

.catalog-cta-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #EAF4EE; /* Fondo verde suave/claro */
  color: var(--whatsapp); /* #216E49 */
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.catalog-cta-card__icon svg {
  width: 22px;
  height: 22px;
}

.catalog-cta-card__texts {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.catalog-cta-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.catalog-cta-card__subtitle {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.catalog-cta-card__arrow {
  color: #8C94A0;
  margin-left: 0.4rem;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, color 0.2s ease;
}

.catalog-cta-card:hover .catalog-cta-card__arrow {
  transform: translateX(3px);
  color: var(--accent-dark);
}

.catalog-cta-card__arrow svg {
  width: 18px;
  height: 18px;
}

/* Formulario de Filtros */
.filters {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr 1fr auto;
  gap: 1.1rem;
  align-items: start;
  padding: 1.4rem 1.6rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: 16px; /* Redondeo sutil, no tipo pastilla */
  background: var(--surface);
  box-shadow: 0 8px 30px rgba(10, 22, 46, 0.04);
}

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

.filters .field label {
  color: var(--text);
  text-transform: none; /* Minúsculas normales y discretas */
  letter-spacing: normal;
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.filters input,
.filters select {
  width: 100%;
  height: 44px;
  padding: 0.65rem 0.95rem;
  border: 1px solid #D6CEBE;
  border-radius: 8px; /* Radio bajo/sutil */
  background: var(--surface);
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: all 0.2s ease;
}

.filters input:focus,
.filters select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.input-with-icon {
  position: relative;
  width: 100%;
}

.input-with-icon input {
  padding-right: 2.5rem;
}

.input-with-icon .input-icon {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  color: #707784;
  pointer-events: none;
}

.select-wrapper {
  position: relative;
  width: 100%;
}

.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.2rem;
  cursor: pointer;
}

.select-wrapper::after {
  content: "";
  position: absolute;
  right: 0.95rem;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #5C6470;
  border-bottom: 2px solid #5C6470;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

/* Columna de acciones: Botón Filtrar + Link Limpiar filtros */
.filter-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 1.55rem; /* Alineado verticalmente con los campos */
}

.btn-filter {
  width: 100%;
  min-width: 105px;
  height: 44px;
  padding: 0.65rem 1.4rem;
  background: var(--dark); /* Color oscuro de la marca #0A162E */
  color: #FFFFFF;
  border: 1px solid var(--dark);
  border-radius: 8px; /* Mismo radio de borde que los inputs */
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-filter:hover {
  background: var(--dark-2);
  border-color: var(--dark-2);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(10, 22, 46, 0.20);
}

.btn-clear-link {
  background: none;
  border: none;
  padding: 0;
  margin-top: 0.65rem;
  color: var(--accent-dark); /* Color dorado/acento */
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease;
}

.btn-clear-link:hover {
  color: var(--accent);
}

/* Barra de conteo de propiedades y botón solicitar asesoría */
.catalog-subbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.4rem 0 0.8rem;
  padding: 0 0.2rem;
  flex-wrap: wrap;
}

.catalog-subbar__count {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 500;
}

.catalog-subbar__icon {
  width: 19px;
  height: 19px;
  color: var(--accent-dark);
  flex-shrink: 0;
}

.btn-advisor {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.58rem 1.15rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  border: 1px solid #D6CEBE;
  border-radius: 8px; /* Radio consistente y suave */
  box-shadow: 0 2px 8px rgba(10, 22, 46, 0.04);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-advisor:hover {
  background: var(--soft);
  border-color: var(--accent);
  color: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-advisor__icon {
  width: 17px;
  height: 17px;
  color: var(--accent-dark);
}

.properties {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
  margin-top: 1.6rem;
}

.property {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: .25s ease;
}

.property:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 162, 39, 0.3);
}

.property__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.property__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .6s ease;
}

.property:hover .property__media img {
  transform: scale(1.05);
}

.tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: .35rem .75rem;
  border-radius: 8px; /* Mismo radio sutil consistente (8px) que los botones */
  background: var(--accent-soft);
  color: var(--text); /* Texto negro/oscuro del Design System */
  border: 1px solid rgba(201, 162, 39, 0.2);
  font-size: .74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.price {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: .5rem .85rem;
  border-radius: 8px; /* Mismo radio sutil consistente (8px) que los botones */
  background: var(--dark);
  color: var(--accent-light);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: -.02em;
  border: 1px solid rgba(201, 162, 39, 0.25);
}

.property__content {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: 1.3rem;
  flex: 1;
}

.property__content h3 {
  font-size: 1.22rem;
  line-height: 1.35;
  color: var(--text);
}

.location {
  color: var(--muted);
  font-size: .93rem;
}

.specs {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.specs span {
  padding: .35rem .6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-size: .78rem;
}

.property__footer {
  display: flex;
  gap: 0.65rem;
  padding: 0 1.3rem 1.3rem;
}

.property__footer .btn {
  flex: 1;
  border-radius: 8px; /* Radio sutil consistente con el buscador, no pastilla */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.65rem 0.85rem;
  transition: all 0.2s ease;
}

.property__footer .btn .btn-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.property__footer .property__btn-details:hover .btn-icon {
  transform: translateX(3px);
}

.empty {
  grid-column: 1 / -1;
  padding: 2rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
  text-align: center;
}

/* ==========================================================
   PROCESO (Cómo trabajamos)
   ========================================================== */
.process-accent-line {
  width: 54px;
  height: 3px;
  background: var(--accent);
  border-radius: 999px;
  margin-top: 1rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  margin-top: 3.6rem;
  position: relative;
}

.step {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.4rem 1.4rem 1.4rem;
  box-shadow: 0 6px 24px rgba(10, 22, 46, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.step:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: 0 14px 34px rgba(10, 22, 46, 0.08);
}

/* Ícono circular flotante superior */
.step__badge {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 2px solid var(--surface);
  box-shadow: 0 4px 14px rgba(201, 162, 39, 0.22);
  display: grid;
  place-items: center;
  color: var(--accent-dark);
  transition: transform 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  z-index: 3;
}

.step:hover .step__badge {
  transform: translateX(-50%) scale(1.08);
  color: var(--accent);
  box-shadow: 0 6px 18px rgba(201, 162, 39, 0.32);
}

.step__badge svg {
  width: 22px;
  height: 22px;
}

.step__badge-img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
  pointer-events: none;
  transition: transform 0.25s ease;
}

.step:hover .step__badge-img {
  transform: scale(1.06);
}

/* Número estilizado */
.step__num {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.75rem;
  display: block;
}

.step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.step p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  flex: 1;
}

/* Ilustración decorativa en la parte inferior */
.step__illustration-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 0.5rem;
}

.step__illustration,
.step__illustration-img {
  width: 100%;
  max-width: 220px;
  height: 110px;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  transition: transform 0.3s ease;
}

.step:hover .step__illustration,
.step:hover .step__illustration-img {
  transform: translateY(-2px);
}

/* Conectores entre tarjetas (línea de tiempo / proceso) */
.step__connector {
  position: absolute;
  top: 35%;
  right: -1.9rem;
  width: 2rem;
  display: flex;
  align-items: center;
  z-index: 4;
  pointer-events: none;
}

.step__connector-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.step__connector-line {
  flex: 1;
  height: 1px;
  background: rgba(201, 162, 39, 0.45);
}

.step__connector-arrow {
  width: 12px;
  height: 12px;
  color: var(--accent);
  margin-left: -2px;
  flex-shrink: 0;
}

.step:last-child .step__connector {
  display: none;
}

/* Bloque final "¿Tienes dudas?" con WhatsApp */
.process-faq-card {
  margin-top: 3rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem 1.8rem;
  box-shadow: 0 4px 20px rgba(10, 22, 46, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.process-faq-card__left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.process-faq-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0A261A; /* Verde oscuro profundo como en Imagen 1 */
  color: #FFFFFF;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.process-faq-card__icon svg {
  width: 24px;
  height: 24px;
}

.process-faq-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.3;
}

.process-faq-card__desc {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 0.2rem;
}

.btn-process-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  background: var(--dark); /* Navy profundo #0A162E */
  color: #FFFFFF;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(10, 22, 46, 0.15);
}

.btn-process-wa:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 22, 46, 0.22);
}

.btn-process-wa__icon {
  width: 18px;
  height: 18px;
  color: #FFFFFF;
}

/* RESEÑAS */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}

.review {
  padding: 1.6rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(10, 22, 46, .04);
}

.stars {
  color: var(--accent);
  letter-spacing: .1em;
  margin-bottom: .8rem;
}

.review p {
  color: var(--muted);
}

.review footer {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: 1.2rem;
}

.avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 700;
}

.review footer strong {
  display: block;
}

.review footer span {
  color: var(--muted);
  font-size: .9rem;
}

/* FAQ */
.faq {
  display: grid;
  gap: .9rem;
  max-width: 900px;
  margin-inline: auto;
}

.faq details {
  padding: 1.1rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  font-family: 'Inter', sans-serif;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--accent-dark);
  font-size: 1.4rem;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "−";
}

.faq p {
  margin-top: .9rem;
  color: var(--muted);
}

/* ==========================================================
   CONTACTO (Agenda tu cita por WhatsApp)
   ========================================================== */
.contact-section {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding: 5.5rem 0 4.5rem;
}

/* 1. Elementos decorativos de fondo */
.contact-bg-house {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: clamp(280px, 34vw, 500px);
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.contact-bg-house img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left bottom;
  display: block;
}

.contact-bg-dots {
  position: absolute;
  top: 1.8rem;
  right: 2rem;
  width: 200px;
  height: 160px;
  background-image: radial-gradient(rgba(201, 162, 39, 0.28) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  z-index: 1;
  pointer-events: none;
}

.contact-bg-curve {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(260px, 36vw, 480px);
  height: clamp(260px, 36vw, 480px);
  z-index: 1;
  pointer-events: none;
}

.contact-container {
  position: relative;
  z-index: 2;
  max-width: 1140px;
}

/* 2. Encabezado Centrado */
.contact-header {
  text-align: center;
  margin-bottom: 2.8rem;
}

.contact-eyebrow {
  display: inline-block;
  color: var(--accent);
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.45rem;
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 3.5vw, 2.9rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 0.6rem;
}

.contact-title .text-gold {
  color: var(--accent);
}

.contact-subtitle {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 580px;
  margin: 0 auto;
}

.contact-sparkle-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.1rem;
}

.sparkle-line {
  width: 48px;
  height: 1px;
  background: rgba(201, 162, 39, 0.45);
}

.sparkle-symbol {
  color: var(--accent);
  font-size: 0.95rem;
  line-height: 1;
}

/* 3. Cuadrícula Principal */
.contact__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 2.2rem;
  align-items: stretch;
  margin-bottom: 2.8rem;
}

/* 4. Tarjeta Izquierda: Hablemos directo */
.contact-info-card {
  background: linear-gradient(165deg, #0A2B1D 0%, #081F15 100%);
  border-radius: 24px;
  padding: 2.4rem 2rem;
  color: #FFFFFF;
  border: 1px solid rgba(201, 162, 39, 0.22);
  box-shadow: 0 16px 40px rgba(10, 38, 26, 0.2);
  display: flex;
  flex-direction: column;
}

.contact-info-card__header {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.contact-info-card__badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  background: rgba(201, 162, 39, 0.12);
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-info-card__badge svg {
  width: 22px;
  height: 22px;
}

.contact-info-card__titles h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 0.25rem;
}

.contact-info-card__titles p {
  color: var(--accent-light);
  font-size: 0.84rem;
  line-height: 1.35;
  margin: 0;
}

.contact-card-divider {
  height: 1px;
  background: rgba(201, 162, 39, 0.22);
  margin: 1.4rem 0 1.6rem;
}

.direct-info-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.35rem;
  margin: auto 0;
  flex: 1;
}

.direct-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.direct-info-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.35);
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}

.direct-info-icon svg {
  width: 17px;
  height: 17px;
}

.direct-info-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.direct-info-text strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.direct-info-text span {
  font-size: 0.85rem;
  color: var(--accent-light);
  line-height: 1.25;
}

.btn-direct-write {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #E4C765 0%, #C9A227 100%);
  color: #0A162E;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  width: 100%;
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin-top: auto;
}

.btn-direct-write:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(201, 162, 39, 0.5);
}

.btn-direct-write__icon {
  width: 18px;
  height: 18px;
}

/* 5. Tarjeta Derecha: Solicita una cita (Formulario) */
.contact-form-card {
  position: relative;
  background: var(--surface);
  border-radius: 24px;
  padding: 2.4rem 2.2rem;
  border: 1px solid var(--line);
  box-shadow: 0 12px 36px rgba(10, 22, 46, 0.05);
  overflow: hidden;
}



.contact-form-card__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.5rem;
}

.contact-form-card__badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E4C765 0%, #C9A227 100%);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(201, 162, 39, 0.25);
}

.contact-form-card__badge svg {
  width: 22px;
  height: 22px;
}

.contact-form-card__titles h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 0.25rem;
}

.contact-form-card__titles p {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
}

.contact-form-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.2rem;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
  background: #FFFFFF;
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.field-date-wrap .input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.field-date-wrap .input-with-icon input {
  padding-right: 2.4rem;
}

.input-date-icon {
  position: absolute;
  right: 0.8rem;
  width: 18px;
  height: 18px;
  color: var(--muted);
  pointer-events: none;
}

.field-full {
  grid-column: 1 / -1;
}

.field-full textarea {
  min-height: 100px;
  resize: vertical;
}

.btn-submit-wa {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #0E3626 0%, #071E14 100%);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(10, 38, 26, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 0.4rem;
}

.btn-submit-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(10, 38, 26, 0.35);
  background: linear-gradient(135deg, #134632 0%, #0A2B1D 100%);
}

.btn-submit-wa__content {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.btn-submit-wa__wa-icon {
  width: 20px;
  height: 20px;
}

.btn-submit-wa__send-icon {
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
}

.form-trust-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.form-trust-note__icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.form-trust-note__icon svg {
  width: 14px;
  height: 14px;
}

.form-trust-note p {
  color: var(--muted);
  font-size: 0.8rem;
  margin: 0;
}

/* 6. Bloque de Beneficios Inferior */
.contact-benefits-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 1.2rem 2rem;
  background: transparent;
  gap: 1.5rem;
}

.contact-benefit-col {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex: 1;
  justify-content: center;
}

.contact-benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid rgba(201, 162, 39, 0.25);
  color: var(--accent-dark);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

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

.contact-benefit-texts {
  display: flex;
  flex-direction: column;
}

.contact-benefit-texts strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.contact-benefit-texts span {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.25;
}

.contact-benefit-divider {
  width: 1px;
  height: 36px;
  background: var(--line);
  flex-shrink: 0;
}

/* FOOTER */
.footer {
  padding: 4rem 0 1.5rem;
  background: var(--dark);
  color: #E4DFD3;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
}

.footer h4 {
  color: #FFFFFF;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
}

.footer p,
.footer li {
  font-size: .95rem;
  color: #E4DFD3;
}

.footer a:hover {
  color: var(--accent-light);
}

.footer li + li {
  margin-top: .55rem;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(228, 223, 211, .15);
  font-size: .9rem;
  color: #E4DFD3;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 1100;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--whatsapp);
  box-shadow: 0 12px 30px rgba(33, 110, 73, .25);
  transition: .25s ease;
}

.whatsapp-float:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 36px rgba(33, 110, 73, .32);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* ==========================================================
   FICHA LATERAL / DRAWER DE PROPIEDAD
   ========================================================== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 46, 0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.35s;
}

.drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(560px, 94vw);
  height: 100%;
  height: 100dvh;
  background: var(--surface);
  box-shadow: -15px 0 50px rgba(10, 22, 46, 0.28);
  z-index: 1210;
  transform: translateX(105%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  z-index: 10;
  flex-shrink: 0;
}

.drawer__header-info {
  display: flex;
  align-items: center;
}

.drawer__tag-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}

.drawer__close {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.drawer__close svg {
  width: 20px;
  height: 20px;
}

.drawer__close:hover {
  background: var(--dark);
  color: var(--accent-light);
  border-color: var(--dark);
  transform: scale(1.05);
}

.drawer__scroll {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}

.drawer__scroll::-webkit-scrollbar {
  width: 6px;
}

.drawer__scroll::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 999px;
}

/* Segmento Disponibilidad (Renta / Venta) con cuadros de bajo radio de borde */
.drawer-availability {
  padding: 1.1rem 1.4rem 0.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.drawer-availability__title {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.drawer-availability__selector {
  display: inline-flex;
  gap: 0.55rem;
}

.drawer-availability__btn {
  padding: 0.48rem 1.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--muted);
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 6px; /* Radio de borde bajo (cuadrado suave, NO pastilla) */
  cursor: pointer;
  transition: all 0.2s ease;
}

.drawer-availability__btn:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.drawer-availability__btn.is-active {
  background: var(--dark);
  color: var(--accent-light);
  border-color: var(--dark);
  box-shadow: 0 2px 8px rgba(10, 22, 46, 0.14);
}

/* Galería de imágenes con navegación */
.drawer-gallery {
  padding: 0.7rem 1.4rem 0.5rem;
}

.drawer-gallery__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  overflow: hidden;
  background: var(--dark);
  box-shadow: 0 8px 24px rgba(10, 22, 46, 0.12);
}

.drawer-gallery__viewport img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease;
}

.drawer-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(10, 22, 46, 0.7);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 5;
}

.drawer-gallery__nav svg {
  width: 18px;
  height: 18px;
}

.drawer-gallery__nav:hover {
  background: var(--dark);
  color: var(--accent-light);
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.1);
}

.drawer-gallery__nav--prev {
  left: 0.75rem;
}

.drawer-gallery__nav--next {
  right: 0.75rem;
}

.drawer-gallery__counter {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(10, 22, 46, 0.75);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.drawer-gallery__thumbs {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  scrollbar-width: none;
}

.drawer-gallery__thumbs::-webkit-scrollbar {
  display: none;
}

.drawer-gallery__thumb {
  width: 72px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: var(--soft);
  transition: all 0.2s ease;
  opacity: 0.65;
}

.drawer-gallery__thumb:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.drawer-gallery__thumb.is-active {
  border-color: var(--accent);
  opacity: 1;
  box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.3);
}

.drawer-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cuerpo de la ficha */
.drawer__body {
  padding: 1rem 1.4rem 1.6rem;
}

.drawer__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.drawer__location {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

.drawer__location svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

.drawer__price {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

/* Título de sección dentro del drawer (Resumen, Descripción) */
.drawer__section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
}

/* Quick facts / stats en columnas con estructura vertical y recuadro más marcado */
.drawer-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  padding: 1.15rem 0.75rem;
  background: #E8E2D4; /* Tono más oscuro y marcado para contrastar claramente con el fondo */
  border: 1px solid #D5CDBC;
  border-radius: 16px;
  margin-bottom: 1.6rem;
}

.drawer-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.drawer-stat__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #FFFFFF;
  color: var(--accent-dark);
  display: grid;
  place-items: center;
  margin-bottom: 0.55rem;
  border: 1px solid #D5CDBC;
  box-shadow: 0 2px 8px rgba(10, 22, 46, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.drawer-stat:hover .drawer-stat__icon {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: var(--accent);
}

.drawer-stat__icon svg {
  width: 22px;
  height: 22px;
}

.drawer-stat__value {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.drawer-stat__label {
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 0.25rem;
  line-height: 1.25;
}

/* Descripción */
.drawer__desc-block {
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
}

.drawer__description {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* Footer fijo de la ficha con botón WhatsApp */
.drawer__footer {
  padding: 1rem 1.4rem;
  background: var(--surface);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(10, 22, 46, 0.06);
  flex-shrink: 0;
  display: flex;
  gap: 0.75rem;
}

.drawer__whatsapp-btn {
  width: 100%;
  padding: 1rem 1.4rem;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: var(--whatsapp);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(33, 110, 73, 0.22);
  border-radius: 999px;
  transition: all 0.25s ease;
}

.drawer__whatsapp-btn:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(33, 110, 73, 0.30);
}

.drawer__whatsapp-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .hero__grid,
  .about__grid {
    grid-template-columns: 1fr;
  }

  .about-bg-image {
    opacity: 0.14;
    width: 100%;
    max-height: 400px;
  }

  .about__copy {
    max-width: 100%;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-bg-house {
    opacity: 0.12;
    width: 100%;
  }

  .contact-benefits-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1rem 0;
  }

  .contact-benefit-col {
    justify-content: flex-start;
    width: 100%;
  }

  .contact-benefit-divider {
    display: none;
  }

  .catalog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
  }

  .catalog-cta-card {
    width: 100%;
    justify-content: space-between;
  }

  .filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filters .field--search {
    grid-column: 1 / -1;
  }

  .filter-actions {
    grid-column: 1 / -1;
    padding-top: 0.5rem;
    flex-direction: row;
    justify-content: flex-end;
    gap: 1.2rem;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3.2rem 1.6rem;
  }

  .step__connector {
    display: none;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
  }

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .header {
    top: 0.85rem;
    padding: 0 1rem;
  }

  .nav {
    justify-content: space-between;
  }

  .mobile-logo {
    display: flex;
  }

  .menu-toggle {
    display: flex;
    pointer-events: auto;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: 0 4px 16px rgba(10, 22, 46, 0.08);
    border-radius: 999px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 3%;
    right: 3%;
    display: grid;
    gap: .25rem;
    padding: 1.2rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(10, 22, 46, 0.15);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease;
  }

  .nav-links .nav-logo {
    display: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links a:not(.btn) {
    width: 100%;
    padding: .75rem 1rem;
    border-radius: 12px;
    border-bottom: none;
  }

  .nav-links .btn {
    width: 100%;
    margin-top: .5rem;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    min-height: 100dvh;
    height: auto;
    padding: 5rem 1rem 3.5rem;
  }

  .hero-search {
    margin-top: 1.6rem;
  }

  .hero-search__form {
    flex-direction: column;
    padding: 1.25rem;
    gap: 1rem;
    border-radius: 20px;
  }

  .hero-search__divider {
    width: 100%;
    height: 1px;
    background: var(--line);
  }

  .hero-search__field {
    width: 100%;
  }

  .custom-select__menu {
    left: 0;
    right: 0;
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }

  .hero-search__btn {
    width: 100%;
    padding: 1rem;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4rem 0;
  }

  .hero-banner {
    min-height: 100dvh;
    padding: 4.5rem 0.8rem 3rem;
  }

  .hero-banner__title {
    font-size: 2.1rem;
  }

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

  .mini-card {
    padding: 1.8rem 1.4rem 2.8rem 1.4rem;
  }

  .about-title {
    font-size: 2.1rem;
  }

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

  .contact-info-card,
  .contact-form-card {
    padding: 1.8rem 1.3rem;
  }

  .contact-title {
    font-size: 1.85rem;
  }

  .property__footer {
    flex-direction: column;
  }

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

  .filters {
    grid-template-columns: 1fr;
    padding: 1.15rem;
  }

  .filter-actions {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .service-card {
    padding: 1.8rem 1.4rem 2.2rem 1.4rem;
  }

  .process-faq-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.3rem;
  }

  .process-faq-card__left {
    width: 100%;
  }

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

  .btn-filter {
    width: 100%;
  }

  .btn-clear-link {
    text-align: center;
    margin-top: 0.75rem;
  }

  .drawer {
    width: 100%;
  }

  .drawer-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
    padding: 1rem;
  }

  .drawer__body {
    padding: 0.8rem 1rem 1.4rem;
  }

  .drawer-availability {
    padding: 0.9rem 1rem 0.2rem;
  }

  .drawer-gallery {
    padding: 1rem 1rem 0.4rem;
  }
}
