/* =============================================================
   LA RIOJA RESIDENCIAL - Main Stylesheet
   Based on HTML mockup design
   ============================================================= */

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

:root {
  --rojo:        #ad322f;
  --rojo-oscuro: #8f2825;
  --rojo-claro:  #c43d3a;
  --rojo-bg:     #ad322f;
  --gris-texto:  #444444;
  --gris-oscuro: #111111;
  --gris-claro:  #f7f7f7;
  --blanco:      #ffffff;
  --borde:       #dddddd;
  --font-titulo: 'Cormorant Garamond', Georgia, serif;
  --font-body:   'Open Sans', sans-serif;
  --section-pad: 80px 40px;
  --max-w:       1200px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--gris-oscuro); background: var(--blanco); overflow-x: hidden; }

/* HEADER TOP */
.hdr-top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 56px; background: #fff; border-bottom: 1px solid #e8e8e8;
  position: sticky; top: 0; z-index: 1000; gap: 20px;
}
.hdr-logo { display: flex; align-items: center; text-decoration: none; }
.hdr-logo img { height: 78px; width: auto; }
.hdr-logo-text {
  font-family: var(--font-titulo); font-size: 22px; font-weight: 600; color: var(--rojo);
}
.hdr-contactos { display: flex; gap: 56px; align-items: center; }
.hdr-contacto {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--gris-oscuro); transition: color 0.2s;
}
.hdr-contacto:hover { color: var(--rojo); }
.hdr-contacto-ico {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gris-claro); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hdr-contacto-ico svg { width: 32px; height: 32px; fill: #ad322f; }
.hdr-contacto-label { font-size: 12px; color: #888; font-weight: 400; line-height: 1.4; display: block; }
.hdr-contacto-val   { font-size: 13px; font-weight: 600; line-height: 1; }

/* NAVIGATION */
.hdr-nav {
  display: flex; align-items: center; justify-content: flex-start; gap: 0;
  background: #fff; padding: 0 40px; position: sticky; top: 114px; z-index: 999;
  border-bottom: 1px solid var(--borde);
}
.hdr-links { display: flex; align-items: center; gap: 36px; list-style: none; margin: 0; padding: 0; }
.hdr-link {
  display: inline-block; padding: 22px 0;
  color: var(--gris-oscuro); text-decoration: none; font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; border-bottom: 3px solid transparent;
}
.hdr-link:hover, .hdr-link.active { color: var(--rojo); border-bottom-color: var(--rojo); }
.hdr-cta {
  background: var(--rojo); color: #fff; padding: 14px 32px;
  border-radius: 4px; font-size: 12px; font-weight: 700;
  text-decoration: none; letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap;
  transition: background 0.2s; flex-shrink: 0;
}
.hdr-cta:hover { background: var(--rojo-oscuro); }
.hdr-menu-toggle { display: none; }

/* MOBILE MENU */
.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--rojo); z-index: 2000;
  flex-direction: column; align-items: flex-start; padding: 60px 32px 32px;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; color: #fff; font-size: 24px; cursor: pointer;
}
.mobile-link {
  color: #fff; text-decoration: none; font-size: 22px; font-weight: 500;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.15); width: 100%;
}
.mobile-link-cta {
  background: #fff; color: var(--rojo); padding: 12px 24px;
  border-radius: 4px; font-weight: 700; margin-top: 16px;
  border-bottom: none; text-align: center;
}

/* HERO */
.hero {
  position: relative; height: 92vh; min-height: 560px;
  overflow: hidden; display: flex; align-items: center;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide-1 { background-image: url("https://lariojaresidencial.com/wp-content/uploads/2026/07/NONI_ELITE_004-scaled.jpg"); }
.hero-slide-2 { background-image: url("https://lariojaresidencial.com/wp-content/uploads/2026/07/ALAMO_004-scaled.jpg"); }
.hero-slide-3 { background-image: url("https://lariojaresidencial.com/wp-content/uploads/2026/06/FRESNO_006-scaled.jpg"); }
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
}
.hero-content { text-align: center;
  position: relative; z-index: 2; max-width: 640px;
  padding: 0 60px; color: #fff;
}
.hero-content h1 {
  font-family: var(--font-titulo); font-size: clamp(32px, 5vw, 58px);
  font-weight: 600; line-height: 1.15; margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero-content p {
  font-size: clamp(15px, 1.8vw, 18px); color: rgba(255,255,255,0.85);
  margin-bottom: 32px; line-height: 1.6;
}
.hero-btn {
  display: inline-block; background: #0e0e0e; color: #fff;
  padding: 14px 40px; border-radius: 4px; text-decoration: none;
  font-size: 14px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; font-family: var(--font-body);
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.hero-btn:hover { background: var(--rojo-oscuro); transform: translateY(-1px); }
.hero-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 3;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6); background: transparent;
  cursor: pointer; transition: background 0.2s, border-color 0.2s; padding: 0;
}
.hero-dot.active { background: #fff; border-color: #fff; }
/* TRUST BAND */
.trust-band {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
  background: var(--gris-oscuro); padding: 28px 40px;
}
.trust-item { display: flex; align-items: center; gap: 16px; color: #fff; }
.trust-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); flex-shrink: 0;
}
.trust-text-num { font-family: var(--font-titulo); font-size: 28px; font-weight: 600; line-height: 1; }
.trust-text-label { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 3px; }

/* SECTION GLOBALS */
section { padding: var(--section-pad); }
.section-center { text-align: center; max-width: 720px; margin: 0 auto 20px; }
.section-label {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--rojo); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-titulo); font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600; line-height: 1.2; color: var(--gris-oscuro);
}
.section-sub {
  font-size: 15px; color: #666; line-height: 1.75; margin-top: 14px;
}

/* POR QUE ESCOGERNOS */
.porque { background: var(--blanco); padding: var(--section-pad); }
.porque-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; max-width: var(--max-w); margin: 0 auto 60px;
}
.porque-img { border-radius: 8px; overflow: hidden; height: 380px; }
.porque-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.porque-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  max-width: var(--max-w); margin: 0 auto;
}
.porque-card {
  background: #fff; border-radius: 8px; padding: 24px 20px;
  border: 1px solid var(--borde); text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.porque-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-3px); }
.porque-icon { width: 36px; height: 36px; fill: var(--rojo); margin: 0 auto 14px; display: block; }
.porque-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--gris-oscuro); }
.porque-card p { font-size: 13px; color: #666; line-height: 1.65; }

/* MODELOS */
.modelos { background: var(--gris-claro); padding: var(--section-pad); }
.modelos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  max-width: var(--max-w); margin: 40px auto 0;
}
.modelo-card {
  border: 1px solid var(--borde); border-radius: 8px; overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.modelo-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.12); transform: translateY(-4px); }
.modelo-img { height: 220px; overflow: hidden; background: var(--gris-claro); }
.modelo-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.modelo-card:hover .modelo-img img { transform: scale(1.05); }
.modelo-img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #f0f0f0, #ddd); }
.modelo-info { padding: 24px; }
.modelo-info h3 { font-family: var(--font-titulo); font-size: 22px; font-weight: 600; margin-bottom: 6px; }
.modelo-precio { color: var(--rojo); font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.modelo-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.modelo-meta span { font-size: 12px; color: #666; }
.modelo-meta strong { color: var(--gris-oscuro); font-weight: 700; margin-right: 3px; }
.modelo-link {
  display: inline-block; color: var(--rojo); font-size: 13px; font-weight: 700;
  text-decoration: none; letter-spacing: 0.03em; transition: color 0.2s;
}
.modelo-link:hover { color: var(--rojo-oscuro); }
.modelos-cta { text-align: center; margin-top: 40px; }

/* CREDITO */
.credito {
  background: var(--gris-oscuro); color: #fff; text-align: center;
  padding: var(--section-pad);
}
.credito .section-title { color: #fff; }
.credito-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  max-width: 900px; margin: 48px auto 0; text-align: left;
}
.credito-step {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 28px 24px;
}
.credito-step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--rojo); display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 16px;
}
.credito-step h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: #fff; }
.credito-step p { font-size: 13px; color: rgba(255,255,255,0.72); line-height: 1.75; }
.credito-tipos { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; justify-content: center; }
.credito-tipo {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px; padding: 10px 20px;
  font-size: 13px; font-weight: 700; color: #fff; letter-spacing: 0.04em;
}
/* AMENIDADES */
.amenidades { background: var(--blanco); }
.amenidades-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center; margin-top: 52px; max-width: var(--max-w); margin-left: auto; margin-right: auto;
}
.amenidades-img { border-radius: 6px; overflow: hidden; height: 420px; }
.amenidades-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.amenidades-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
.amenidad {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px; border: 1px solid var(--borde); border-radius: 6px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.amenidad:hover { border-color: var(--rojo); box-shadow: 0 4px 12px rgba(173,50,47,0.1); }
.amenidad-icon { width: 28px; height: 28px; fill: var(--rojo); flex-shrink: 0; margin-top: 2px; }
.amenidad-name { font-size: 14px; font-weight: 700; margin-bottom: 3px; color: var(--gris-oscuro); }
.amenidad-desc { font-size: 12px; color: #888; }

/* TESTIMONIOS */
.testimonios { background: var(--gris-claro); }
.testimonios-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: var(--max-w); margin: 40px auto 0;
}
.testimonio {
  background: #fff; border-radius: 8px; padding: 28px;
  border: 1px solid var(--borde); display: flex; flex-direction: column; gap: 16px;
}
.estrellas { color: #f59e0b; font-size: 16px; letter-spacing: 2px; }
.testimonio p { font-size: 14px; color: #555; line-height: 1.75; flex: 1; }
.autor { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.autor-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--rojo); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.autor-nombre { font-size: 14px; font-weight: 700; }
.autor-detalle { font-size: 12px; color: #888; }

/* CITA BANNER */
.cita-banner {
  background: #fff; border-top: 3px solid var(--rojo); border-bottom: 3px solid var(--rojo);
  padding: 28px 40px; display: flex; justify-content: center;
  align-items: center; gap: 32px; flex-wrap: wrap; text-align: center;
}
.cita-banner p { font-size: 15px; color: #555; font-style: italic; }

/* UBICACION */
.ubicacion { background: var(--gris-claro); }
.ubicacion-layout {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px;
  align-items: start; margin-top: 48px; max-width: var(--max-w); margin-left: auto; margin-right: auto;
}
.ubicacion-lista { display: flex; flex-direction: column; gap: 16px; }
.ubicacion-item {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border-radius: 6px; padding: 16px 20px;
  border: 1px solid var(--borde);
}
.ubicacion-item svg { width: 24px; height: 24px; fill: var(--rojo); flex-shrink: 0; }
.ubicacion-lugar { font-size: 14px; font-weight: 600; color: var(--gris-oscuro); }
.ubicacion-tiempo { font-size: 12px; color: #888; margin-top: 2px; }
.ubicacion-mapa iframe { border-radius: 8px; display: block; }

/* CONTACTO CTA */
.cta-section {
  background: var(--gris-oscuro); color: #fff;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  padding: 80px; align-items: start;
}
.cta-section .section-title { color: #fff; }
.cta-opciones { display: flex; flex-direction: column; gap: 12px; }
.cta-opcion {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px; padding: 14px 18px; text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.cta-opcion:hover { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.3); }
.cta-opcion svg { width: 22px; height: 22px; fill: #4ade80; flex-shrink: 0; }

/* WA FAB */
.wa-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45); transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.55); }
.wa-fab svg { width: 30px; height: 30px; fill: #fff; }
/* FOOTER */
footer {
  background: #0e0e0e; color: rgba(255,255,255,0.75);
  padding: 60px 40px 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  max-width: var(--max-w); margin: 0 auto 48px;
}
.footer-brand-name {
  font-family: var(--font-titulo); font-size: 22px; font-weight: 600;
  color: #fff; margin-bottom: 12px;
}
.footer-brand p { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,0.55); }
.footer-col h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.65); text-decoration: none;
  font-size: 14px; margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px; text-align: center; max-width: var(--max-w); margin: 0 auto;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); margin-bottom: 6px; }

/* BUTTONS */
.btn-rojo {
  display: inline-block; background: var(--rojo); color: #fff;
  padding: 12px 28px; border-radius: 4px; text-decoration: none;
  font-size: 14px; font-weight: 700; letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.2s;
}
.btn-rojo:hover { background: var(--rojo-oscuro); transform: translateY(-1px); }
.btn-verde {
  display: inline-block; background: #0e0e0e; color: #fff;
  padding: 13px 36px; border-radius: 4px; text-decoration: none;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; font-family: var(--font-body);
  transition: background 0.2s;
}
.btn-verde:hover { background: #333; }
.btn-outline {
  display: inline-block; background: transparent; color: var(--rojo);
  padding: 12px 28px; border-radius: 4px; text-decoration: none;
  font-size: 14px; font-weight: 700; letter-spacing: 0.04em;
  border: 2px solid var(--rojo); transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--rojo); color: #fff; }

/* DIRECTORIO PAGE */
.directorio-layout {
  display: grid; grid-template-columns: 280px 1fr; gap: 40px;
  max-width: var(--max-w); margin: 0 auto; padding: 60px 40px;
}
.directorio-sidebar h3 { font-size: 16px; font-weight: 700; margin-bottom: 20px; }
.filter-group { margin-bottom: 28px; }
.filter-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: #555; }
.filter-group select, .filter-group input[type="text"] {
  width: 100%; padding: 10px 14px; border: 1px solid var(--borde);
  border-radius: 4px; font-size: 14px; background: #fff;
}
.filter-group select:focus, .filter-group input:focus {
  outline: none; border-color: var(--rojo);
}
.btn-filtrar {
  width: 100%; background: var(--rojo); color: #fff;
  border: none; padding: 12px; border-radius: 4px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: background 0.2s;
}
.btn-filtrar:hover { background: var(--rojo-oscuro); }
.directorio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.directorio-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.directorio-header h1 { font-family: var(--font-titulo); font-size: 32px; }
.directorio-count { font-size: 14px; color: #888; }

/* SINGLE PROPIEDAD */
.single-prop-layout {
  display: grid; grid-template-columns: 1fr 340px; gap: 40px;
  max-width: var(--max-w); margin: 0 auto; padding: 60px 40px;
}
.single-prop-gallery img {
  width: 100%; border-radius: 8px; margin-bottom: 16px; object-fit: cover;
}
.single-prop-price { font-size: 28px; font-weight: 700; color: var(--rojo); margin: 16px 0; }
.single-prop-meta { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 24px; }
.single-prop-meta-item { display: flex; flex-direction: column; gap: 4px; }
.single-prop-meta-label { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 0.06em; }
.single-prop-meta-val { font-size: 18px; font-weight: 700; }
.single-prop-sidebar {
  position: sticky; top: 160px;
  background: var(--gris-claro); border-radius: 8px; padding: 28px;
}
.single-prop-sidebar h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }

/* PAGE HERO */
.page-hero {
  background: var(--gris-oscuro); color: #fff;
  padding: 60px 40px; text-align: center;
}
.page-hero h1 { font-family: var(--font-titulo); font-size: 42px; font-weight: 600; color: #fff; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.7); margin-top: 12px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .porque-grid { grid-template-columns: repeat(2, 1fr); }
  .modelos-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-section { padding: 60px 40px; }
  .porque-intro { grid-template-columns: 1fr; gap: 32px; }
  .amenidades-layout { grid-template-columns: 1fr; }
  .ubicacion-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px 20px; }
  .hdr-top { padding: 12px 20px; }
  .hdr-contactos { display: none; }
  .hdr-nav { padding: 0 20px; justify-content: space-between; }
  .hdr-links { display: none; }
  .hdr-cta { display: none; }
  .hdr-menu-toggle {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px;
  }
  .hdr-menu-toggle span { display: block; width: 24px; height: 2px; background: var(--rojo); border-radius: 2px; }
  .trust-band { gap: 24px; padding: 20px; }
  .trust-item { flex-direction: column; align-items: center; text-align: center; }
  .modelos-grid { grid-template-columns: 1fr; }
  .credito-steps { grid-template-columns: 1fr; }
  .testimonios-grid { grid-template-columns: 1fr; }
  .cta-section { grid-template-columns: 1fr; padding: 60px 20px; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .directorio-layout { grid-template-columns: 1fr; }
  .directorio-grid { grid-template-columns: 1fr; }
  .single-prop-layout { grid-template-columns: 1fr; }
  .hero-content { padding: 0 24px; }
  .cita-banner { gap: 16px; }
  .ubicacion-layout { margin-top: 32px; }

}

@media (max-width: 480px) {
  .porque-grid { grid-template-columns: 1fr; }
  .amenidades-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 28px; }
}

/* ════════════════════════════════════════════
   MODELOS PAGE – HERO + GRID
   ════════════════════════════════════════════ */

/* Hero de la página de modelos */
.modelos-hero {
  background: #111111;
  padding: 72px 56px 56px;
  text-align: center;
}
.modelos-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--rojo);
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 16px;
}
.modelos-eyebrow::before,
.modelos-eyebrow::after {
  content: ''; display: block; width: 32px; height: 1px; background: var(--rojo);
}
.modelos-titulo {
  font-family: var(--font-titulo); font-size: clamp(36px, 5vw, 56px);
  font-weight: 300; color: #fff; line-height: 1.15; margin-bottom: 16px;
}
.modelos-sub {
  font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.5);
  max-width: 480px; margin: 0 auto; line-height: 1.8;
}

/* Grid de cards */
.modelos-section { padding: 64px 56px 96px; background: var(--gris-claro); }
.modelos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ════════════════════════════════════════════
   PROP-CARD (usada en archivo + home)
   ════════════════════════════════════════════ */
.prop-card {
  background: var(--blanco);
  border: 1px solid var(--borde);
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
  overflow: hidden;
}
.prop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

/* Imagen */
.prop-card-img {
  position: relative; height: 240px; overflow: hidden;
}
.prop-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform .5s;
}
.prop-card:hover .prop-card-img img { transform: scale(1.05); }
.prop-card-tag {
  position: absolute; top: 0; left: 0;
  background: #111111; color: #fff;
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 6px 14px;
}

/* Body */
.prop-card-body {
  padding: 28px 24px 24px;
  display: flex; flex-direction: column; flex: 1; gap: 16px;
}
.prop-card-header { display: flex; justify-content: space-between; align-items: flex-start; }
.prop-card-nombre {
  font-family: var(--font-titulo); font-size: 22px; font-weight: 500;
  color: #111111; line-height: 1.2; margin-bottom: 4px;
}
.prop-card-precio { font-size: 13px; font-weight: 600; color: var(--rojo); }
.prop-card-desc {
  font-size: 13px; color: var(--gris-texto); line-height: 1.75;
  flex: 1;
}

/* Specs */
.prop-card-specs {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 0; border-top: 1px solid var(--borde); border-bottom: 1px solid var(--borde);
}
.pcs {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: 4px;
}
.pcs svg {
  width: 16px; height: 16px; fill: none; stroke: var(--rojo);
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  margin-bottom: 4px;
}
.pcs-val {
  font-family: var(--font-titulo); font-size: 20px; font-weight: 500;
  color: #111111; line-height: 1;
}
.pcs-key {
  font-size: 9px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: #999;
}
.pcs-div { width: 1px; height: 36px; background: var(--borde); }

/* Botones */
.prop-card-actions { display: flex; gap: 10px; }
.btn-ver {
  flex: 1; background: #111111; color: #fff;
  padding: 12px; text-align: center; text-decoration: none;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; font-family: var(--font-body);
  transition: background .2s;
}
.btn-ver:hover { background: #333; }
.btn-wa-card {
  background: transparent; border: 1px solid var(--borde);
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  color: #25d366; text-decoration: none; transition: background .2s, border-color .2s;
  flex-shrink: 0;
}
.btn-wa-card svg { width: 20px; height: 20px; }
.btn-wa-card:hover { background: #25d366; color: #fff; border-color: #25d366; }
.no-props { text-align: center; padding: 60px 20px; color: #999; font-size: 15px; }

/* ==========================================================
   LRR PROPERTY PAGE - Diseno Netlify (whimsical-taiyaki-52df41)
   Namespace: .lrr-prop (clases con prefijo lrr- para evitar
   colisiones con otras clases del sitio/plugins)
   ========================================================== */
.lrr-prop, .lrr-prop *, .lrr-prop *::before, .lrr-prop *::after { box-sizing: border-box; }
.lrr-prop { font-family: 'Inter', sans-serif; color: #0e0e0e; background: #fff; overflow-x: hidden; }

.lrr-prop .lrr-breadcrumb { padding: 14px 56px; background: #f7f7f7; border-bottom: 1px solid var(--borde); font-size: 12px; color: #888; display: flex; gap: 8px; align-items: center; }
.lrr-prop .lrr-breadcrumb a { color: #888; text-decoration: none; }
.lrr-prop .lrr-breadcrumb a:hover { color: var(--rojo); }
.lrr-prop .lrr-breadcrumb span { color: #0e0e0e; font-weight: 500; }

.lrr-prop .lrr-hero { display: grid; grid-template-columns: 1fr 380px; gap: 0; min-height: 520px; }
.lrr-prop .lrr-galeria { position: relative; overflow: hidden; background: #111; min-height: 320px; }
.lrr-prop .lrr-galeria-main { width: 100%; height: 100%; object-fit: cover; display: block; cursor: zoom-in; transition: transform .4s; }
.lrr-prop .lrr-galeria-main:hover { transform: scale(1.02); }
.lrr-prop .lrr-thumbs { position: absolute; bottom: 16px; left: 16px; right: 16px; display: flex; gap: 8px; flex-wrap: wrap; overflow: hidden; max-height: 60px; }
.lrr-prop .lrr-thumb { width: 72px; height: 52px; object-fit: cover; border: 2px solid rgba(255,255,255,.4); cursor: pointer; opacity: .7; transition: opacity .2s, border-color .2s; flex-shrink: 0; }
.lrr-prop .lrr-thumb:hover, .lrr-prop .lrr-thumb.is-active { opacity: 1; border-color: var(--rojo); }
.lrr-prop .lrr-counter { position: absolute; top: 16px; right: 16px; background: rgba(0,0,0,.55); color: #fff; font-size: 12px; font-weight: 500; padding: 5px 12px; letter-spacing: .06em; }

.lrr-prop .lrr-ficha { background: #0e0e0e; color: #fff; padding: 40px 36px; display: flex; flex-direction: column; }
.lrr-prop .lrr-ficha-tag { font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--rojo); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.lrr-prop .lrr-ficha-tag::before { content: ""; display: block; width: 24px; height: 1px; background: var(--rojo); }
.lrr-prop .lrr-ficha h1 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 42px; font-weight: 400; line-height: 1.1; margin-bottom: 8px; color: #fff; }
.lrr-prop .lrr-ficha-precio { font-size: 22px; font-weight: 700; color: var(--rojo); margin-bottom: 28px; letter-spacing: .02em; }
.lrr-prop .lrr-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08); margin-bottom: 28px; }
.lrr-prop .lrr-spec-item { background: rgba(255,255,255,.04); padding: 16px 18px; display: flex; flex-direction: column; gap: 4px; }
.lrr-prop .lrr-spec-val { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 28px; font-weight: 400; color: #fff; line-height: 1; }
.lrr-prop .lrr-spec-key { font-size: 10px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.lrr-prop .lrr-ficha-divider { height: 1px; background: rgba(255,255,255,.1); margin-bottom: 24px; }
.lrr-prop .lrr-ficha-creditos { margin-bottom: 28px; }
.lrr-prop .lrr-ficha-creditos p { font-size: 11px; color: rgba(255,255,255,.45); letter-spacing: .04em; margin-bottom: 12px; text-transform: uppercase; font-weight: 500; }
.lrr-prop .lrr-credito-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.lrr-prop .lrr-ctag { border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.6); font-size: 11px; padding: 5px 12px; letter-spacing: .06em; }

.lrr-prop .lrr-btn-wa { display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--rojo); color: #fff; padding: 15px; text-decoration: none; font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-family: 'Inter', sans-serif; border-radius: 6px; margin-bottom: 10px; transition: background .2s, transform .18s cubic-bezier(.34,1.56,.64,1); }
.lrr-prop .lrr-btn-wa:hover { background: var(--rojo-oscuro); transform: scale(1.03); }
.lrr-prop .lrr-btn-wa svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }
.lrr-prop .lrr-btn-tel { display: flex; align-items: center; justify-content: center; gap: 10px; background: transparent; color: #fff; padding: 14px; text-decoration: none; font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-family: 'Inter', sans-serif; border: 1px solid rgba(255,255,255,.2); border-radius: 6px; transition: border-color .2s, background .2s; }
.lrr-prop .lrr-ficha .lrr-btn-tel:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.05); }
.lrr-prop .lrr-btn-tel svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.lrr-prop .lrr-body { max-width: 1200px; margin: 0 auto; padding: 64px 56px; display: grid; grid-template-columns: 1fr 340px; gap: 64px; align-items: start; }
.lrr-prop .lrr-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--rojo); display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.lrr-prop .lrr-eyebrow::before { content: ""; display: block; width: 28px; height: 1px; background: var(--rojo); }
.lrr-prop .lrr-titulo { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(28px,3.5vw,40px); font-weight: 400; color: #0e0e0e; line-height: 1.2; margin-bottom: 20px; }
.lrr-prop .lrr-texto { font-size: 15px; font-weight: 300; color: #555; line-height: 1.9; margin-bottom: 40px; }
.lrr-prop .lrr-texto p { margin-bottom: 16px; }
.lrr-prop .lrr-caracteristicas { margin-bottom: 48px; }
.lrr-prop .lrr-caract-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--borde); border: 1px solid var(--borde); }
.lrr-prop .lrr-caract-item { background: #fff; padding: 18px 20px; display: flex; align-items: center; gap: 14px; }
.lrr-prop .lrr-caract-ico { width: 36px; height: 36px; border: 1px solid var(--borde); display: flex; align-items: center; justify-content: center; color: var(--rojo); flex-shrink: 0; }
.lrr-prop .lrr-caract-ico svg { width: 18px; height: 18px; }
.lrr-prop .lrr-caract-label { font-size: 11px; color: #999; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 3px; }
.lrr-prop .lrr-caract-val { font-size: 14px; font-weight: 600; color: #0e0e0e; }

.lrr-prop .lrr-sidebar { position: sticky; top: 90px; }
.lrr-prop .lrr-sidebar-card { border: 1px solid var(--borde); padding: 32px; margin-bottom: 20px; }
.lrr-prop .lrr-sidebar-card h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 22px; font-weight: 500; margin-bottom: 6px; color: #0e0e0e; }
.lrr-prop .lrr-sidebar-card p { font-size: 13px; color: #555; margin-bottom: 24px; }
.lrr-prop .lrr-sidebar-precio { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 32px; font-weight: 400; color: var(--rojo); margin-bottom: 4px; line-height: 1; }
.lrr-prop .lrr-sidebar-precio-sub { font-size: 11px; color: #999; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 24px; }
.lrr-prop .lrr-sidebar-card .lrr-btn-wa { background: var(--rojo); color: #fff; }
.lrr-prop .lrr-sidebar-card .lrr-btn-wa:hover { background: var(--rojo-oscuro); }
.lrr-prop .lrr-sidebar-cita { color: #0e0e0e; border-color: var(--borde); margin-bottom: 0; }
.lrr-prop .lrr-sidebar-cita:hover { border-color: #0e0e0e; background: #f7f7f7; }

.lrr-prop .lrr-otros { padding: 0 56px 80px; max-width: 1200px; margin: 0 auto; }
.lrr-prop .lrr-otros-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 32px; }
.lrr-prop .lrr-otro-card { display: flex; gap: 16px; align-items: center; border: 1px solid var(--borde); padding: 16px; text-decoration: none; color: inherit; transition: border-color .2s, box-shadow .2s; }
.lrr-prop .lrr-otro-card:hover { border-color: var(--rojo); box-shadow: 0 4px 16px rgba(173,50,47,.1); }
.lrr-prop .lrr-otro-img { width: 100px; height: 72px; object-fit: cover; flex-shrink: 0; }
.lrr-prop .lrr-otro-nombre { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 18px; font-weight: 500; margin-bottom: 4px; color: #0e0e0e; }
.lrr-prop .lrr-otro-precio { font-size: 12px; color: var(--rojo); font-weight: 600; }
.lrr-prop .lrr-otro-specs { font-size: 11px; color: #999; margin-top: 4px; }

@media (max-width: 960px) {
  .lrr-prop .lrr-hero { grid-template-columns: 1fr; min-height: auto; }
  .lrr-prop .lrr-galeria { min-height: 320px; }
  .lrr-prop .lrr-ficha { padding: 32px 24px; }
  .lrr-prop .lrr-ficha h1 { font-size: 34px; }
  .lrr-prop .lrr-body { grid-template-columns: 1fr; padding: 40px 24px; gap: 40px; }
  .lrr-prop .lrr-sidebar { position: static; }
  .lrr-prop .lrr-otros { padding: 0 24px 56px; }
  .lrr-prop .lrr-otros-grid { grid-template-columns: 1fr; }
  .lrr-prop .lrr-breadcrumb { padding: 12px 20px; }
  .lrr-prop .lrr-caract-grid { grid-template-columns: 1fr; }
}
