/* ==========================================================================
   MULTICASA BIENES — Sistema de diseño
   Paleta de marca: dorado #DC9F2F · taupe #BBA687 · negro #000000 · gris #999999
   Tipografía de marca: Bodrians (display) / Activ Grotesk (cuerpo)
   -> Mientras llegan los archivos de fuente reales, se usan fallbacks
      de calidad similar (Fraunces / Work Sans) cargados de Google Fonts.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,500&family=Work+Sans:wght@400;500;600;700&display=swap');

/* Cuando tengas los archivos reales, colócalos en /assets/fonts/ y
   descomenta estas reglas (y borra el @import de arriba si ya no lo necesitas) */
/*
@font-face {
  font-family: 'Bodrians';
  src: url('../fonts/Bodrians-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Activ Grotesk';
  src: url('../fonts/ActivGrotesk-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}
*/

:root {
  /* Marca */
  --gold: #DC9F2F;
  --gold-deep: #B9821F;
  --taupe: #BBA687;
  --black: #000000;
  --gray: #999999;

  /* Derivados neutros */
  --cream: #F8F5EF;
  --cream-deep: #F1EAD9;
  --white: #FFFFFF;
  --gray-line: #E4E0D8;

  /* Tipografía */
  --font-display: 'Bodrians', 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Activ Grotesk', 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container: 1220px;
  --radius: 6px;
  --gutter: clamp(20px, 5vw, 64px);
}

/* ---------- Reset base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 4.6vw, 4.2rem); font-weight: 400; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; max-width: 62ch; }
.lede { font-size: 1.15rem; color: #333; max-width: 52ch; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.seccion { padding: clamp(56px, 8vw, 108px) 0; }
.seccion--cream { background: var(--cream); }
.seccion--negra { background: var(--black); color: var(--white); }
.seccion--negra p { color: #cfcfcf; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 0.9em;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn--dorado { background: var(--gold); color: var(--black); }
.btn--dorado:hover { background: var(--gold-deep); }
.btn--negro { background: var(--black); color: var(--white); }
.btn--negro:hover { background: #222; }
.btn--outline { background: transparent; color: var(--black); border-color: var(--black); }
.btn--outline:hover { background: var(--black); color: var(--white); }
.btn--outline-claro { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn--outline-claro:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn--block { width: 100%; justify-content: center; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}
.logo {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
}
.logo img { height: 46px; width: auto; display: block; }
.logo span { color: var(--gold); }

.nav-desktop { display: none; }
.nav-desktop ul { display: flex; gap: 2.4rem; }
.nav-desktop a {
  color: #E9E5DC;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.nav-desktop a:hover, .nav-desktop a[aria-current="page"] {
  border-color: var(--gold);
  color: var(--white);
}

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-actions .btn { padding: 11px 20px; font-size: 0.88rem; }

.hamburger {
  background: none;
  border: none;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hamburger span { width: 24px; height: 2px; background: var(--white); display: block; }

.nav-mobile {
  position: fixed;
  inset: 82px 0 0 0;
  background: var(--black);
  transform: translateY(-110%);
  transition: transform 0.28s ease;
  z-index: 99;
  overflow-y: auto;
}
.nav-mobile.abierto { transform: translateY(0); }
.nav-mobile ul { padding: 2rem var(--gutter); display: flex; flex-direction: column; gap: 1.6rem; }
.nav-mobile a { color: var(--white); font-size: 1.4rem; font-family: var(--font-display); }
.nav-mobile .header-actions { padding: 0 var(--gutter) 2rem; flex-direction: column; align-items: stretch; }

@media (min-width: 960px) {
  .nav-desktop { display: block; }
  .hamburger { display: none; }
  .nav-mobile { display: none; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
  overflow: hidden;
  padding: clamp(48px, 8vw, 96px) 0 0;
}
.hero .container {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.hero-texto .eyebrow { color: var(--gold-deep); }
.hero-texto h1 { color: var(--black); }
.hero-texto h1 em { font-style: normal; color: var(--gold-deep); }

.hero-ilustracion { justify-self: center; width: min(560px, 100%); }
.hero-ilustracion img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.35);
}

/* Barra de búsqueda flotante */
.buscador {
  background: var(--black);
  border-radius: var(--radius);
  padding: 22px;
  display: grid;
  gap: 14px;
  margin-top: 2.6rem;
  position: relative;
  z-index: 2;
}
.buscador-campo { display: flex; flex-direction: column; gap: 6px; }
.buscador-campo label { color: #C9C4B8; font-size: 0.78rem; font-weight: 600; }
.buscador-campo select,
.buscador-campo input {
  background: #161616;
  border: 1px solid #333;
  color: var(--white);
  padding: 12px 14px;
  border-radius: 4px;
}
.buscador-campo select:focus, .buscador-campo input:focus { border-color: var(--gold); outline: none; }

@media (min-width: 720px) {
  .buscador { grid-template-columns: 1.2fr 1fr 1fr auto; align-items: end; }
}
@media (min-width: 960px) {
  .hero .container { grid-template-columns: 1.05fr 0.75fr; }
  .hero-ilustracion { justify-self: end; }
}

/* Franja de estadísticas discretas */
.stats-strip {
  border-top: 1px solid var(--gray-line);
  padding: 28px 0;
}
.stats-strip .container { display: flex; flex-wrap: wrap; gap: 2.4rem 3.2rem; }
.stat b { font-family: var(--font-display); font-size: 1.6rem; display: block; color: var(--black); }
.stat span { color: var(--gray); font-size: 0.9rem; }

/* ==========================================================================
   GRID DE PROPIEDADES DESTACADAS (asimétrico)
   ========================================================================== */
.destacadas-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .destacadas-grid {
    grid-template-columns: 1.35fr 1fr;
    grid-template-rows: auto auto;
  }
  .destacadas-grid .tarjeta-propiedad:first-child {
    grid-row: 1 / span 2;
  }
}

.tarjeta-propiedad {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-deep);
  aspect-ratio: 4 / 3;
  display: block;
  border: 1px solid var(--gray-line);
}
.destacadas-grid .tarjeta-propiedad:first-child { aspect-ratio: 4/5; }
@media (min-width: 860px) {
  .destacadas-grid .tarjeta-propiedad:first-child { aspect-ratio: auto; height: 100%; }
}

.tarjeta-propiedad img,
.tarjeta-propiedad .sin-imagen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.tarjeta-propiedad:hover img { transform: scale(1.04); }

.sin-imagen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--taupe) 0%, var(--cream-deep) 100%);
  color: var(--black);
}
.sin-imagen svg { width: 46px; height: 46px; opacity: 0.55; }
.sin-imagen span { font-size: 0.8rem; opacity: 0.65; }

.tarjeta-etiqueta {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.tarjeta-info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 18px 16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0) 100%);
  color: var(--white);
}
.tarjeta-info .precio { font-family: var(--font-display); font-size: 1.35rem; margin-bottom: 2px; }
.tarjeta-info .ubicacion { font-size: 0.85rem; color: #E4E0D8; margin-bottom: 8px; }
.tarjeta-specs { display: flex; gap: 14px; font-size: 0.82rem; color: #D8D3C6; }

/* ==========================================================================
   LISTADO DE PROPIEDADES (con filtros)
   ========================================================================== */
.listado-layout {
  display: grid;
  gap: 32px;
}
@media (min-width: 900px) {
  .listado-layout { grid-template-columns: 280px 1fr; align-items: start; }
}
.panel-filtros {
  background: var(--cream);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: 100px;
}
.panel-filtros h3 { margin-bottom: 1.2rem; }
.campo-filtro { margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: 6px; }
.campo-filtro label { font-size: 0.82rem; font-weight: 600; color: #444; }
.campo-filtro select, .campo-filtro input {
  border: 1px solid var(--gray-line);
  border-radius: 4px;
  padding: 10px 12px;
  background: var(--white);
}

.grid-listado {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.grid-listado .tarjeta-propiedad { aspect-ratio: 4/3.1; }

.sin-resultados {
  padding: 60px 20px;
  text-align: center;
  color: var(--gray);
  border: 1px dashed var(--gray-line);
  border-radius: var(--radius);
}

/* ==========================================================================
   DETALLE DE PROPIEDAD
   ========================================================================== */
.detalle-header { padding: 40px 0 0; }
.detalle-header .breadcrumb { color: var(--gray); font-size: 0.85rem; margin-bottom: 1rem; }
.detalle-header .breadcrumb a:hover { color: var(--gold-deep); }
.detalle-titulo-bar {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 16px;
  padding-bottom: 24px; border-bottom: 1px solid var(--gray-line);
}
.detalle-precio { font-family: var(--font-display); font-size: 2rem; color: var(--gold-deep); }

.galeria-principal {
  margin: 28px 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/8;
  background: var(--cream-deep);
}
.galeria-miniaturas { display: grid; grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 10px; margin-bottom: 40px; }
.galeria-miniaturas img, .galeria-miniaturas .sin-imagen { aspect-ratio: 1; border-radius: 4px; cursor: pointer; }

.detalle-layout { display: grid; gap: 40px; }
@media (min-width: 900px) { .detalle-layout { grid-template-columns: 1.5fr 1fr; } }

.specs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px,1fr)); gap: 18px; margin: 24px 0; padding: 24px 0; border-top: 1px solid var(--gray-line); border-bottom: 1px solid var(--gray-line); }
.specs-grid div b { display: block; font-family: var(--font-display); font-size: 1.3rem; }
.specs-grid div span { font-size: 0.82rem; color: var(--gray); }

.card-contacto {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  position: sticky;
  top: 100px;
}
.card-contacto h3 { color: var(--white); }
.card-contacto .campo { margin-bottom: 12px; display: flex; flex-direction: column; gap: 6px; }
.card-contacto label { font-size: 0.8rem; color: #C9C4B8; }
.card-contacto input, .card-contacto textarea, .card-contacto select {
  background: #161616; border: 1px solid #333; color: var(--white); padding: 11px 12px; border-radius: 4px; width: 100%;
}

/* ==========================================================================
   FORMULARIOS (contacto general)
   ========================================================================== */
.form-card {
  background: var(--cream);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
}
.form-grid { display: grid; gap: 18px; }
@media (min-width: 640px) { .form-grid.dos-col { grid-template-columns: 1fr 1fr; } }
.campo { display: flex; flex-direction: column; gap: 6px; }
.campo label { font-size: 0.85rem; font-weight: 600; }
.campo input, .campo select, .campo textarea {
  border: 1px solid var(--gray-line); border-radius: 4px; padding: 12px 14px; background: var(--white);
}
.campo input:focus, .campo select:focus, .campo textarea:focus { border-color: var(--gold-deep); outline: none; }

.alerta { padding: 14px 18px; border-radius: 4px; margin-bottom: 20px; font-size: 0.92rem; }
.alerta--exito { background: #EAF4E7; color: #2C5E27; border: 1px solid #C6E0BF; }
.alerta--error { background: #FBEAEA; color: #7A2020; border: 1px solid #F0C7C7; }

/* ==========================================================================
   PROCESO / PASOS (secuencia real → numeración justificada)
   ========================================================================== */
.pasos { display: grid; gap: 32px; margin-top: 2.4rem; }
@media (min-width: 800px) { .pasos { grid-template-columns: repeat(3, 1fr); } }
.paso .num { font-family: var(--font-display); font-size: 2.6rem; color: var(--gold); line-height: 1; margin-bottom: 0.4rem; }

/* ==========================================================================
   CTA banda
   ========================================================================== */
.cta-banda { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 24px; }
.cta-banda h2 { color: var(--white); margin: 0; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--black); color: #C9C4B8; padding: 60px 0 26px; }
.footer-grid { display: grid; gap: 40px; margin-bottom: 40px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-grid h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 1rem; }
.footer-grid ul { display: flex; flex-direction: column; gap: 10px; font-size: 0.9rem; }
.footer-grid a:hover { color: var(--gold); }
.footer-logo { font-family: var(--font-display); color: var(--white); font-size: 1.4rem; margin-bottom: 12px; display: block; }
.footer-logo-img { height: 40px; width: auto; margin-bottom: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; font-size: 0.8rem; color: #7A7669; }

/* ==========================================================================
   WHATSAPP FLOTANTE
   ========================================================================== */
.whatsapp-flotante {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 90;
  transition: transform 0.2s ease;
}
.whatsapp-flotante:hover { transform: scale(1.07); }
.whatsapp-flotante svg { width: 28px; height: 28px; }

/* ==========================================================================
   PÁGINA NOSOTROS
   ========================================================================== */
.mision-vision-grid { display: grid; gap: 32px; }
@media (min-width: 860px) { .mision-vision-grid { grid-template-columns: 1fr 1fr; } }
.mv-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
}
.mv-card p { max-width: none; }

.servicio-destacado {
  background: var(--cream);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
  margin-bottom: 40px;
}
.servicio-destacado-texto { max-width: 640px; margin-bottom: 2rem; }
.servicio-destacado-texto h3 { color: var(--gold-deep); }
.beneficios-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.beneficio svg { width: 30px; height: 30px; color: var(--gold-deep); margin-bottom: 10px; }
.beneficio h4 { font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; margin: 0 0 0.35em; }
.beneficio p { font-size: 0.9rem; color: #555; margin: 0; }

.servicios-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.servicio-card {
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.servicio-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.servicio-card svg { width: 32px; height: 32px; color: var(--gold-deep); margin-bottom: 12px; }
.servicio-card h3 { font-size: 1.1rem; margin-bottom: 0.4em; }
.servicio-card p { font-size: 0.92rem; color: #555; margin: 0; }

.contacto-datos {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  max-width: 900px;
  margin: 0 auto;
}
.contacto-dato {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 16px 18px;
  color: #E9E5DC;
  font-size: 0.92rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.contacto-dato:hover { border-color: var(--gold); color: var(--white); }
.contacto-dato svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }

/* Animación de luz LED dorada — traza el contorno real de la tarjeta (vía SVG, sin distorsión) */
.led-borde { position: relative; }
.led-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 2;
}
.led-glow-rect {
  fill: none;
  stroke: var(--gold);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 20 80;
  filter: blur(5px);
  opacity: 0.85;
  animation: led-trazado 4.5s linear infinite;
}
.led-rect {
  fill: none;
  stroke: #FFF3D2;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 20 80;
  animation: led-trazado 4.5s linear infinite;
}
@keyframes led-trazado {
  to { stroke-dashoffset: -100; }
}
/* Cada tarjeta arranca en un punto distinto para que no se muevan todas en sincronía */
.mv-card:nth-of-type(2) .led-glow-rect, .mv-card:nth-of-type(2) .led-rect { animation-delay: -1.5s; }
.servicio-card:nth-of-type(2) .led-glow-rect, .servicio-card:nth-of-type(2) .led-rect { animation-delay: -1.1s; }
.servicio-card:nth-of-type(3) .led-glow-rect, .servicio-card:nth-of-type(3) .led-rect { animation-delay: -2.3s; }
.servicio-card:nth-of-type(4) .led-glow-rect, .servicio-card:nth-of-type(4) .led-rect { animation-delay: -3.4s; }
/* ==========================================================================
   POPUP PUBLICITARIO
   ========================================================================== */
.promo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.promo-overlay.visible { display: flex; }
.promo-overlay.mostrar { opacity: 1; }

.promo-caja {
  position: relative;
  max-width: 420px;
  width: 100%;
  max-height: 90vh;
  transform: scale(0.94);
  transition: transform 0.25s ease;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.6);
}
.promo-overlay.mostrar .promo-caja { transform: scale(1); }

.promo-caja img {
  display: block;
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
  background: var(--black);
}

.promo-cerrar {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--gold);
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, transform 0.2s ease;
}
.promo-cerrar:hover { background: var(--gold); color: var(--black); transform: scale(1.08); }

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.encabezado-seccion { max-width: 640px; margin-bottom: 2.6rem; }
.encabezado-seccion.centrado { margin-left: auto; margin-right: auto; text-align: center; }
.badge-estado {
  display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  padding: 4px 10px; border-radius: 3px; letter-spacing: 0.03em;
}
.badge-estado--disponible { background: #EAF4E7; color: #2C5E27; }
.badge-estado--reservado { background: #FDF2DE; color: #8A5A0A; }
.badge-estado--vendido, .badge-estado--arrendado { background: #EFEFEF; color: #666; }
/* =========================================
   FIRMA DEL DESARROLLADOR
   Ing. Santiago Benavides
   ========================================= */

.developer-signature {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 30px;
    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.10);

    width: fit-content;

    font-family: 'Inter', Arial, sans-serif;
}


/* LOGO */

.developer-signature__logo {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.developer-signature__logo a {
    display: block;
    line-height: 0;
}

.developer-signature__logo img {
    width: 52px;
    height: auto;

    display: block;

    object-fit: contain;

    transition:
        transform 0.3s ease,
        filter 0.3s ease;
}


/* Efecto al pasar el mouse */

.developer-signature__logo a:hover img {
    transform: scale(1.08);

    filter:
        drop-shadow(0 0 8px rgba(45, 126, 255, 0.35))
        drop-shadow(0 0 12px rgba(112, 40, 255, 0.20));
}


/* INFORMACIÓN */

.developer-signature__info {
    display: flex;
    flex-direction: column;

    gap: 2px;
}


/* "Desarrollado por" */

.developer-signature__label {
    font-size: 11px;
    font-weight: 400;

    color: #929292;

    letter-spacing: 0.3px;
}


/* Nombre */

.developer-signature__name {
    width: fit-content;

    font-size: 15px;
    font-weight: 600;

    color: #ffffff;

    text-decoration: none;

    transition:
        color 0.3s ease;
}

.developer-signature__name:hover {
    color: #3987ff;
}


/* Profesión */

.developer-signature__profession {
    font-size: 11px;
    font-style: italic;

    color: #999999;

    letter-spacing: 0.2px;
}
@media (max-width: 600px) {

    .developer-signature {
        width: 100%;

        gap: 12px;

        margin-top: 25px;
        padding-top: 18px;
    }

    .developer-signature__logo {
        width: 45px;
        height: 45px;
    }

    .developer-signature__logo img {
        width: 45px;
    }

    .developer-signature__name {
        font-size: 14px;
    }

    .developer-signature__label,
    .developer-signature__profession {
        font-size: 10px;
    }

}
