/* Variables Globales */
:root {
  --background: #f7f8fa;
  --foreground: #0f1b2d;
  --border: #dce5ec;
  --input: #ffffff;
  --primary: #123b7a;
  --primary-foreground: #ffffff;
  --secondary: #eaf6f3;
  --secondary-foreground: #0f1b2d;
  --muted: #f1f5f7;
  --muted-foreground: #667085;
  --success: #19a974;
  --success-foreground: #ffffff;
  --accent: #19a974;
  --accent-foreground: #ffffff;
  --destructive: #ffecef;
  --destructive-foreground: #7a0710;
  --warning: #fff4e6;
  --warning-foreground: #7a4b00;
  --card: #ffffff;
  --card-foreground: #0f1b2d;
  --sidebar: #f4f8fb;
  --sidebar-foreground: #0f1b2d;
  --sidebar-primary: #123b7a;
  --sidebar-primary-foreground: #ffffff;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --font-family-body: Inter;
}

/* Estilos Base */
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}
.export-wrapper {
  font-family: var(
    --font-family-body,
    system-ui,
    -apple-system,
    sans-serif
  );
  color: var(--foreground);
  background: var(--background);
  margin: 0;
  line-height: 1.6;
}
h1,
h2,
h3,
h4,
p,
ul {
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Estilos de Diseño (Layout) */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.section {
  padding: 112px 0;
}
.section-muted {
  background: var(--muted);
}
.pt-120 {
  padding-top: 120px;
}
.pb-120 {
  padding-bottom: 120px;
}

.grid {
  display: grid;
}
.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.gap-2 {
  gap: 8px;
}
.gap-4 {
  gap: 16px;
}
.gap-6 {
  gap: 24px;
}
.gap-8 {
  gap: 32px;
}
.gap-12 {
  gap: 48px;
}

/* Utilidades Flex */
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.flex-1 {
  flex: 1;
}

/* Tipografía */
.text-center {
  text-align: center;
}
.text-6xl {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.text-5xl {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.text-4xl {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.text-3xl {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.text-2xl {
  font-size: 24px;
  font-weight: 600;
}
.text-xl {
  font-size: 20px;
  font-weight: 600;
}
.text-lg {
  font-size: 18px;
  color: var(--muted-foreground);
}
.text-sm {
  font-size: 14px;
}
.font-medium {
  font-weight: 500;
}
.text-muted {
  color: var(--muted-foreground);
}
.text-primary {
  color: var(--primary);
}
.text-accent {
  color: var(--accent);
}

/* Componentes */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  white-space: nowrap;
}
.btn-lg {
  height: 52px;
  padding: 0 32px;
  font-size: 16px;
}
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}
.btn-outline {
  border: 1px solid var(--border);
  background: var(--background);
  color: var(--foreground);
}
.btn-ghost {
  background: transparent;
  color: var(--foreground);
}
.btn-accent {
  background: var(--accent);
  color: var(--accent-foreground);
}

.card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
}
.card-body {
  padding: 24px;
}

.navbar {
  height: 80px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  z-index: 50;
}
.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--foreground);
}

.search-bar {
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: 12px 12px 12px 32px;
  display: flex;
  align-items: center;
  box-shadow: 0 20px 40px -10px rgba(15, 27, 45, 0.1);
  border: 1px solid var(--border);
  gap: 24px;
}
.search-input-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.search-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.search-value {
  font-size: 15px;
  color: var(--muted-foreground);
}
.search-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
/* Estilos específicos de la página de inicio (Refactorizados de estilos en línea) */

.envoltorio-principal {
  width: 100%;
  min-height: 100vh;
  position: relative;
  font-family: var(--font-family-body);
  background-color: var(--background);
}

.logo-imagen {
  height: 48px;
}

.nav-contenedor-altura {
  height: 100%;
}

.seccion-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    var(--secondary) 0%,
    var(--background) 72%
  );
}

.hero-superposicion-fondo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  opacity: 0.24;
}

.hero-imagen-ajuste {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.capa-contenido {
  position: relative;
  z-index: 1;
}

.contenedor-max-centrado {
  max-width: 800px;
  margin: 0 auto;
}

.insignia-inteligente {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  color: var(--primary);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.punto-indicador-acento {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-titulo {
  margin-bottom: 24px;
  color: var(--foreground);
}

.hero-descripcion {
  margin-bottom: 56px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--foreground);
  opacity: 0.78;
}

.grupo-busqueda-izquierda {
  text-align: left;
}

.boton-busqueda-redondo {
  border-radius: 99px;
  width: 64px;
  height: 64px;
  padding: 0;
}

.contenedor-icono-centrado {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cabecera-seccion-propiedades {
  margin-bottom: 48px;
}

.titulo-seccion-secundario {
  margin-bottom: 8px;
}

.tarjeta-seleccionable {
  cursor: pointer;
}

.contenedor-imagen-relativo {
  position: relative;
}

.etiqueta-novedad {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--card);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--border);
}

.contenedor-precio-tarjeta {
  margin-bottom: 12px;
}

.texto-ubicacion-tarjeta {
  margin-bottom: 24px;
  font-size: 15px;
}

.icono-acento-decorativo {
  font-size: 16px;
  color: var(--accent);
}

.icono-detalle-propiedad {
  font-size: 18px;
}

.seccion-gradiente-mapa {
  background: linear-gradient(
    180deg,
    var(--muted) 0%,
    var(--secondary) 100%
  );
}

.contenedor-icono-mapa {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.lista-ventajas-espaciada {
  list-style: none;
  margin-bottom: 40px;
}

.punto-ventaja-icono {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-foreground);
}

.contenedor-mapa-marco {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 4px solid var(--card);
  box-shadow: 0 25px 50px -12px rgba(15, 27, 45, 0.12);
}

.cabecera-beneficios-intro {
  max-width: 700px;
  margin: 0 auto 64px;
}

.tarjeta-beneficio-padding {
  padding: 32px 24px;
}

.circulo-beneficio-fondo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.icono-beneficio-grande {
  font-size: 36px;
}

.cta-banner-propietarios {
  background: var(--foreground);
  color: var(--background);
  border-radius: var(--radius-xl);
  padding: 80px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.columna-info-ancho {
  max-width: 600px;
}

.insignia-translucida {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
  border-radius: 999px;
  padding: 8px 14px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.texto-primario-propietarios {
  color: var(--primary-foreground);
  margin-bottom: 24px;
}

.texto-secundario-propietarios {
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.8);
}

.contenedor-decorativo-propietario {
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icono-marca-agua-gigante {
  font-size: 200px;
  color: rgba(255, 255, 255, 0.12);
}

.pie-de-pagina-principal {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  background: var(--background);
}

.logo-footer-margen {
  height: 48px;
  margin-bottom: 24px;
}

.texto-footer-ancho {
  max-width: 300px;
}

.lista-enlaces-pie {
  list-style: none;
}

.barra-inferior-pie {
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.margen-inf-medio {
  margin-bottom: 16px;
}

.margen-inf-grande {
  margin-bottom: 32px;
}

.icono-busqueda-peque {
  font-size: 14px;
}

.icono-grande-acento {
  font-size: 32px;
  color: var(--accent);
}

.alineado-izquierda {
  text-align: left;
}

.icono-busqueda-principal {
  font-size: 24px;
  color: var(--primary-foreground);
}

.margen-inf-12 {
  margin-bottom: 12px;
}

.color-primario {
  color: var(--primary);
}

.color-acento {
  color: var(--accent);
}

.info-ubicacion-tarjeta {
  margin-bottom: 24px;
  font-size: 15px;
}

.icono-16-acento {
  font-size: 16px;
  color: var(--accent);
}

.icono-18-caracteristica {
  font-size: 18px;
}

.punto-verificacion-lista {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-foreground);
}
