/* ============================================================
   KARINA UHLIG — Asesora Inmobiliaria Century 21
   Stylesheet compartido v2 (incluye Cancún Airbnb)
   ============================================================ */

:root {
  /* Paleta principal Century 21 */
  --navy: #1F3A47;
  --navy-deep: #0F2530;
  --navy-soft: #3A5564;
  --cream: #FAF6EF;
  --cream-deep: #F0E8D8;
  --sand: #E8DDC8;
  --gold: #BEAF87;
  --gold-deep: #9C8C5F;
  --ink: #1A1A1A;
  --mid: #6B6258;
  --muted: #9E948A;

  /* Acento Caribe (solo Cancún) */
  --caribe: #2C7884;
  --caribe-soft: #5BA3AF;
  --coral: #E08566;

  /* Aliases para compatibilidad con HTML v1 */
  --ink-soft: #4A4A4A;
  --text-soft: #6B6258;
  --line: rgba(31,58,71,0.10);
  --sand-soft: #EFE6D2;

  /* Tipografía: Outfit ya carga en el HTML v1; Cormorant Garamond también */
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', 'Inter', 'Helvetica Neue', system-ui, sans-serif;

  /* Métricas */
  --container: 1280px;
  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.4s cubic-bezier(.2,.7,.2,1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font: inherit; cursor: pointer; border: none; background: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ─── NAV (compatible v1 con .nav-inner Y v2 sin nav-inner) ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  padding: 1.1rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(31,58,71,0.08);
  transition: padding var(--transition);
}
/* HTML v1 mete todo dentro de .nav-inner; en ese caso .nav-inner es el flex */
.nav > .nav-inner {
  flex: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy);
}
.nav-brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--gold-deep);
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  width: 0; height: 1px; background: var(--gold-deep);
  transition: width var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--navy);
  color: var(--cream);
  padding: 0.7rem 1.3rem;
  font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-cta:hover { background: var(--gold-deep); color: var(--cream); }

.nav-mobile-toggle {
  display: none;
  width: 30px; height: 22px;
  flex-direction: column; justify-content: space-between;
}
.nav-mobile-toggle span {
  display: block; height: 2px; background: var(--navy);
  transition: all var(--transition);
}

@media (max-width: 880px) {
  .nav { padding: 0.9rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-mobile-open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); padding: 1.5rem; gap: 1.5rem;
    border-bottom: 1px solid var(--sand);
  }
  .nav-mobile-open .nav-cta { display: inline-block; margin: 1.5rem; }
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  font-size: 0.78rem; letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary { background: var(--navy); color: var(--cream); }
.btn-primary:hover { background: var(--gold-deep); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--cream); }
.btn-gold { background: var(--gold-deep); color: var(--cream); }
.btn-gold:hover { background: var(--navy); }
.btn-wa { background: #25D366; color: white; }
.btn-wa:hover { background: #1ea952; }
.btn-airbnb { background: #FF385C; color: white; }
.btn-airbnb:hover { background: #d62a4a; }

/* Aliases para compatibilidad v1 */
.btn-ghost { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--cream); }
.btn-whatsapp { background: #25D366; color: white; }
.btn-whatsapp:hover { background: #1ea952; }
.btn-block { width: 100%; justify-content: center; }

/* ============================================================
   ░░░░░░░░░░░░░░░░░░░░░  BLOQUE V1  ░░░░░░░░░░░░░░░░░░░░░
   Reglas para index.html, contacto.html y propiedades v1
   (sierra-nogal, comanjilla, oviedo-509)
   ============================================================ */

/* ─── CONTAINER & UTILITIES V1 ─── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 2.5rem; }
.eyebrow {
  display: inline-block;
  font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 500;
  color: var(--gold-deep); margin-bottom: 1rem;
}
.accent { color: var(--gold-deep); font-style: italic; font-family: var(--font-display); font-weight: 500; }
.serif-italic { font-family: var(--font-display); font-style: italic; font-weight: 500; }
.mt-1 { margin-top: 0.75rem; }
.arrow { display: inline-block; transition: transform var(--transition); }
.btn:hover .arrow, a:hover .arrow { transform: translateX(4px); }

/* ─── NAV V1 (HTML usa .name, .role, .nav-toggle, .nav-mobile) ─── */
.nav-brand { display: inline-flex; flex-direction: column; }
.nav-brand .name {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 600;
  letter-spacing: 0.02em; color: var(--navy);
  line-height: 1;
}
.nav-brand .role {
  display: block; margin-top: 4px;
  font-family: var(--font-body);
  font-size: 0.6rem; letter-spacing: 0.22em;
  color: var(--gold-deep); text-transform: uppercase;
}
.nav-cta { display: inline-flex; align-items: center; gap: 0.5rem; }
.nav-cta i { font-size: 0.95rem; }

.nav-toggle {
  display: none;
  width: 30px; height: 22px;
  flex-direction: column; justify-content: space-between;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--navy);
  transition: all var(--transition);
}

.nav-mobile {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--sand);
  z-index: 55;
  padding: 1.5rem 2.5rem;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }
.nav-mobile a {
  font-size: 0.78rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--navy);
}

@media (max-width: 880px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ─── HERO V1 (index.html) ─── */
.hero {
  position: relative;
  padding: 8rem 2.5rem 5rem;
  max-width: var(--container);
  margin: 0 auto;
  overflow: hidden;
}
.hero-watermark {
  position: absolute;
  top: 6rem; right: 2rem;
  font-family: var(--font-display);
  font-size: 22rem; font-weight: 300;
  line-height: 1;
  color: var(--sand);
  opacity: 0.35;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text { position: relative; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 5.5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 1rem 0 1.75rem;
}
.hero-title .accent {
  font-style: italic;
  color: var(--gold-deep);
}
.hero-lede {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--mid);
  max-width: 38rem;
  margin-bottom: 2.5rem;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-bottom: 4rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.hero-stat { display: flex; flex-direction: column; gap: 0.4rem; }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 1.75rem; font-weight: 500;
  color: var(--navy); line-height: 1;
}
.hero-stat .label {
  font-size: 0.72rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold-deep);
  font-weight: 500;
}

.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 600px;
  box-shadow: 0 30px 80px -30px rgba(15,37,48,0.4);
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: rgba(31,58,71,0.92);
  backdrop-filter: blur(10px);
  color: var(--cream);
  padding: 1rem 1.4rem;
  border-radius: var(--radius);
}
.hero-badge .label {
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; opacity: 0.85;
  margin-bottom: 0.25rem;
}
.hero-badge .value {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 500;
}

@media (max-width: 980px) {
  .hero { padding: 6rem 1.5rem 3rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-image { height: 480px; order: -1; }
  .hero-watermark { font-size: 14rem; top: 4rem; right: -1rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

/* ─── SECTION GENERIC V1 ─── */
.section {
  padding: 6rem 0;
  position: relative;
}
.section.properties { background: var(--cream); }
.section.about { background: var(--cream-deep); padding: 7rem 0; }
.section-header {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--navy);
  margin: 0.5rem 0 1rem;
}
.section-header p {
  color: var(--mid); line-height: 1.7;
  font-size: 1.02rem;
}

/* ─── PROPERTIES GRID V1 (index.html) ─── */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2.5rem;
}
.property-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: 0 8px 30px -15px rgba(15,37,48,0.15);
}
.property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -20px rgba(15,37,48,0.3);
}
.property-card > a { display: block; color: inherit; }
.property-card-image {
  position: relative;
  height: 280px; overflow: hidden;
}
.property-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.property-card:hover .property-card-image img { transform: scale(1.05); }
.property-card-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(31,58,71,0.92);
  backdrop-filter: blur(10px);
  color: var(--cream);
  padding: 0.4rem 0.9rem;
  font-size: 0.65rem; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 500;
  border-radius: var(--radius);
}
.property-card-tag.gold { background: var(--gold-deep); }
.property-card-body { padding: 1.75rem; }
.property-card-loc {
  font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-deep);
  font-weight: 500; margin-bottom: 0.5rem;
}
.property-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 500;
  line-height: 1.25; color: var(--navy);
  margin-bottom: 0.85rem;
}
.property-card-desc {
  font-size: 0.92rem; line-height: 1.6;
  color: var(--mid); margin-bottom: 1.25rem;
}
.property-card-specs {
  display: flex; flex-wrap: wrap; gap: 1.25rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.25rem;
}
.property-spec { display: flex; flex-direction: column; gap: 0.2rem; }
.property-spec .ic {
  font-size: 0.62rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold-deep);
  font-weight: 500;
}
.property-spec .v {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 500;
  color: var(--navy); line-height: 1;
}
.property-card-footer {
  display: flex; justify-content: space-between;
  align-items: flex-end; gap: 1rem;
}
.property-card-price {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 500;
  color: var(--navy); line-height: 1.1;
}
.property-card-price small {
  display: block; margin-top: 0.3rem;
  font-family: var(--font-body);
  font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold-deep);
  font-weight: 500;
}
.property-card-link {
  font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--navy);
  font-weight: 500;
}

/* ─── ABOUT V1 (index.html) ─── */
.about-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 580px;
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.about-text h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15; color: var(--navy);
  margin: 0.5rem 0 1.5rem;
}
.about-text p {
  color: var(--mid); line-height: 1.75;
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
}
.about-quote {
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--cream);
  border-left: 3px solid var(--gold-deep);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--navy);
  border-radius: var(--radius);
}

@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image { height: 420px; }
}

/* ─── CONTACT SECTION V1 (index.html — sección final) ─── */
.contact-section {
  padding: 6rem 0;
  background: var(--navy);
  color: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem; align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15; color: var(--cream);
  margin: 0.5rem 0 1.25rem;
}
.contact-info p {
  color: rgba(250,246,239,0.75);
  line-height: 1.7; font-size: 1.02rem;
  margin-bottom: 2.5rem;
}
.contact-info .eyebrow { color: var(--gold); }
.contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-method {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(250,246,239,0.06);
  border: 1px solid rgba(250,246,239,0.1);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.contact-method:hover {
  background: rgba(250,246,239,0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.contact-method-icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-deep); color: var(--navy);
  border-radius: 50%;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-method-text .label {
  font-size: 0.65rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500;
}
.contact-method-text .value {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 500;
  color: var(--cream); margin-top: 0.15rem;
}

.form {
  background: var(--cream);
  color: var(--ink);
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.4);
}
.form-context {
  font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-deep);
  font-weight: 500; margin-bottom: 0.75rem;
}
.form h3 {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 500;
  color: var(--navy); margin-bottom: 0.5rem;
  line-height: 1.25;
}

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-methods { grid-template-columns: 1fr; }
}

/* ─── INTENT FORM V1 (contacto.html) ─── */
.intent-section {
  padding: 8rem 0 5rem;
  background: var(--cream);
  min-height: 100vh;
}
.intent-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.intent-header {
  text-align: center;
  margin-bottom: 4rem;
}
.intent-header h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1; color: var(--navy);
  margin: 0.5rem 0 1.25rem;
}
.intent-header p {
  color: var(--mid); line-height: 1.7;
  font-size: 1.05rem;
  max-width: 36rem;
  margin: 0 auto;
}
.intent-form {
  background: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px -25px rgba(15,37,48,0.2);
}
.intent-step { margin-bottom: 2.5rem; }
.intent-step:last-of-type { margin-bottom: 1.5rem; }
.step-label {
  display: inline-block;
  font-size: 0.65rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-deep);
  font-weight: 500;
  background: var(--cream-deep);
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.intent-step h3 {
  font-family: var(--font-display);
  font-size: 1.45rem; font-weight: 500;
  color: var(--navy); line-height: 1.3;
  margin-bottom: 1.25rem;
}

.intent-radio-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.intent-card, .range-card {
  position: relative;
  display: block;
  padding: 1.5rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--cream);
}
.intent-card:hover, .range-card:hover {
  border-color: var(--gold-deep);
  background: white;
}
.intent-card input, .range-card input {
  position: absolute; opacity: 0; pointer-events: none;
}
.intent-card.is-selected,
.range-card.is-selected {
  border-color: var(--navy);
  background: white;
  box-shadow: 0 8px 25px -10px rgba(15,37,48,0.25);
}
.intent-card .title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 500;
  color: var(--navy); margin-bottom: 0.4rem;
}
.intent-card .desc {
  display: block;
  font-size: 0.88rem; color: var(--mid);
  line-height: 1.5;
}

.range-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.range-card { text-align: center; padding: 1.5rem 1rem; }
.range-label {
  display: block;
  font-size: 0.65rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-deep);
  font-weight: 500; margin-bottom: 0.5rem;
}
.range-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 500;
  color: var(--navy);
}

.fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-size: 0.75rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--navy);
  font-weight: 500; margin-bottom: 0.5rem;
}
.field input, .field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  transition: all var(--transition);
  outline: none;
}
.field input:focus, .field textarea:focus {
  border-color: var(--navy);
  background: white;
  box-shadow: 0 0 0 3px rgba(31,58,71,0.08);
}
.field textarea { resize: vertical; min-height: 100px; }
.req { color: #B85B4A; }
.opt { color: var(--muted); font-weight: 400; text-transform: none; letter-spacing: 0; }
.form-disclaimer {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--mid);
  text-align: center;
  line-height: 1.5;
}
.notice {
  margin-top: 1rem;
  padding: 0 0.5rem;
  font-size: 0.85rem;
  text-align: center;
  color: var(--gold-deep);
}

.trust-strip {
  margin-top: 3rem;
  padding: 2rem;
  background: white;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  box-shadow: 0 10px 40px -20px rgba(15,37,48,0.15);
}
.trust-item {
  display: flex; align-items: flex-start; gap: 0.85rem;
}
.trust-item i {
  font-size: 1.5rem; color: var(--gold-deep);
  flex-shrink: 0; margin-top: 2px;
}
.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 500;
  color: var(--navy); margin-bottom: 0.2rem;
}
.trust-item span {
  display: block;
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.5;
}

@media (max-width: 780px) {
  .intent-form { padding: 1.75rem; }
  .intent-radio-row, .range-grid, .fields-row { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; gap: 1.25rem; padding: 1.5rem; }
}

/* ─── DETAIL PROPIEDADES V1 (sierra-nogal, comanjilla, oviedo-509) ─── */
.detail-hero {
  position: relative;
  height: 70vh; min-height: 480px;
  margin-top: 64px;
  overflow: hidden;
}
.detail-hero img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.detail-hero-content {
  position: absolute;
  inset: 0;
  display: flex; align-items: flex-end;
  background: linear-gradient(180deg, transparent 40%, rgba(15,37,48,0.85) 100%);
  padding: 3rem 2.5rem;
  color: var(--cream);
}
.detail-hero-inner {
  max-width: var(--container);
  width: 100%; margin: 0 auto;
}
.detail-hero-tag {
  display: inline-block;
  background: rgba(250,246,239,0.18);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1rem;
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 500;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}
.detail-hero-inner h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 0.75rem;
}
.detail-hero-inner .loc {
  font-size: 1rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
  opacity: 0.92;
}

.detail-body { padding: 4rem 0 6rem; }
.detail-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2.5rem;
}
.detail-main h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2rem;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
  line-height: 1.2;
}
.detail-main h2:first-child { margin-top: 0; }
.detail-main p {
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}
.detail-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  margin: 1rem 0 2rem;
}
.detail-feature {
  padding: 0.85rem 1rem;
  background: var(--cream-deep);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--navy);
  display: flex; align-items: center; gap: 0.5rem;
}
.detail-feature::before {
  content: '·'; color: var(--gold-deep);
  font-size: 1.5rem; line-height: 0;
}

.detail-sidebar {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 50px -25px rgba(15,37,48,0.2);
  height: fit-content;
  position: sticky; top: 90px;
}
.detail-price-block {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.5rem;
}
.detail-price-block .label {
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-deep);
  font-weight: 500; margin-bottom: 0.5rem;
}
.detail-price {
  font-family: var(--font-display);
  font-size: 2.25rem; font-weight: 500;
  color: var(--navy); line-height: 1;
}
.detail-price small {
  font-family: var(--font-body);
  font-size: 0.85rem; color: var(--mid);
  font-weight: 400; margin-left: 0.4rem;
  letter-spacing: 0.05em;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}
.spec-item { display: flex; flex-direction: column; gap: 0.25rem; }
.spec-item .label {
  font-size: 0.62rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-deep);
  font-weight: 500;
}
.spec-item .value {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 500;
  color: var(--navy);
}

@media (max-width: 980px) {
  .detail-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .detail-sidebar { position: static; }
}

/* ─── GALLERY V1 (propiedades originales) ─── */
.gallery {
  padding: 5rem 0;
  background: var(--cream-deep);
}
.gallery-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2.5rem;
}
.gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
  aspect-ratio: 4/3;
}
.gallery-item.large { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

@media (max-width: 780px) {
  .gallery .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-column: span 2; grid-row: span 1; }
}

/* ─── SHARE BAR ─── */
.share-bar {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  text-align: center;
}
.share-bar > div:first-child {
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-deep);
  font-weight: 500; margin-bottom: 0.75rem;
}
.share-buttons {
  display: inline-flex; gap: 0.5rem; justify-content: center;
}
.share-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: var(--cream-deep);
  color: var(--navy);
  border-radius: 50%;
  font-size: 1.05rem;
  transition: all var(--transition);
}
.share-btn:hover { background: var(--navy); color: var(--cream); transform: translateY(-2px); }

/* ─── FOOTER V1 (HTML usa .footer-inner) ─── */
.footer { background: var(--navy-deep); color: var(--cream); padding: 4rem 0 0; }
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .name {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 500;
  color: var(--cream);
  display: block;
  margin-bottom: 0.4rem;
}
.footer-brand .role {
  display: block;
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold); font-weight: 500;
  margin-bottom: 1.25rem;
}
.footer-brand p {
  color: rgba(250,246,239,0.65);
  font-size: 0.9rem; line-height: 1.65;
  max-width: 30rem;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a, .footer-col li {
  color: rgba(250,246,239,0.75);
  font-size: 0.9rem;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.75rem 2.5rem;
  border-top: 1px solid rgba(250,246,239,0.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  color: rgba(250,246,239,0.55);
  font-size: 0.82rem;
}
.footer-social { display: inline-flex; gap: 0.5rem; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: rgba(250,246,239,0.08);
  border-radius: 50%;
  font-size: 1rem;
  color: var(--cream);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold-deep); color: var(--navy-deep); }

@media (max-width: 880px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 580px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─── DELAY UTILITIES PARA REVEAL ─── */
.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }
.reveal.delay-3 { transition-delay: 0.45s; }

/* ============================================================
   ░░░░░░░░░░░░░░░░░░░  FIN BLOQUE V1  ░░░░░░░░░░░░░░░░░░░░░
   ============================================================ */

/* ─── BREADCRUMB ─── */
.breadcrumb {
  padding: 6rem 2.5rem 0;
  max-width: var(--container); margin: 0 auto;
  font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--mid);
}
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span { margin: 0 0.6rem; color: var(--gold-deep); }

/* ─── PROPERTY HERO ─── */
.prop-hero {
  position: relative;
  padding: 2rem 2.5rem 0;
  max-width: var(--container); margin: 0 auto;
}
.prop-hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 8px;
  height: 600px;
  margin-bottom: 3rem;
}
.prop-hero-grid > div {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
}
.prop-hero-grid > div:first-child { grid-row: 1 / 3; }
.prop-hero-grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.prop-hero-grid > div:hover img { transform: scale(1.05); }

.prop-hero-grid .more-photos {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(31,58,71,0.92);
  color: var(--cream);
  padding: 0.6rem 1rem;
  font-size: 0.72rem; letter-spacing: 0.15em;
  border-radius: var(--radius);
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.5rem;
}

@media (max-width: 880px) {
  .prop-hero-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 120px;
    height: auto;
  }
  .prop-hero-grid > div:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
  .prop-hero-grid > div:nth-child(4),
  .prop-hero-grid > div:nth-child(5) { display: none; }
}

/* ─── PROPERTY HEADER ─── */
.prop-header {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 3rem;
  margin-bottom: 3.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(31,58,71,0.12);
}
.prop-tag {
  display: inline-block;
  font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.prop-tag.tag-rental { color: var(--caribe); }
.prop-tag.tag-rent { color: var(--navy-soft); }
.prop-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.prop-location {
  font-size: 0.95rem;
  color: var(--mid);
  margin-top: 0.6rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.prop-price {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
}
.prop-price small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.4rem;
}

@media (max-width: 880px) {
  .prop-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-bottom: 2rem;
  }
}

/* ─── PROPERTY BODY GRID ─── */
.prop-body {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
}
@media (max-width: 980px) {
  .prop-body { grid-template-columns: 1fr; gap: 3rem; }
}

/* ─── PROPERTY DESCRIPTION ─── */
.prop-section { margin-bottom: 3.5rem; }
.prop-section-label {
  font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.8rem;
}
.prop-section-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.prop-section p {
  color: var(--mid);
  margin-bottom: 1rem;
  line-height: 1.75;
  font-size: 1.02rem;
}

/* ─── FEATURE GRID ─── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
  margin: 2rem 0;
}
.feature {
  padding: 1.5rem 1.2rem;
  background: white;
  border: 1px solid rgba(31,58,71,0.08);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 0.4rem;
}
.feature-icon {
  font-size: 1.5rem; color: var(--gold-deep);
  margin-bottom: 0.4rem;
}
.feature-label {
  font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
}
.feature-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1;
}

/* ─── AMENITIES LIST ─── */
.amenities {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.5rem 1.5rem;
  list-style: none;
}
.amenities li {
  padding: 0.6rem 0;
  display: flex; align-items: center; gap: 0.7rem;
  color: var(--mid);
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(31,58,71,0.06);
}
.amenities li::before {
  content: '✓';
  color: var(--gold-deep);
  font-weight: 600;
}

/* ─── GALLERY GRID ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 2rem;
}
.gallery-grid > div {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-grid > div:hover img { transform: scale(1.06); }

@media (max-width: 680px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── SIDEBAR (right column on property page) ─── */
.prop-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}
.sidebar-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(31,58,71,0.1);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 24px rgba(31,58,71,0.06);
}
.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.sidebar-card .agent {
  display: flex; gap: 1rem; align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(31,58,71,0.1);
}
.sidebar-card .agent-photo {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--navy-soft) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
}
.sidebar-card .agent-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 500;
}
.sidebar-card .agent-info span {
  font-size: 0.74rem; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.sidebar-card .btn { width: 100%; justify-content: center; margin-bottom: 0.6rem; }

/* ─── CALENDAR (Cancún Airbnb properties) ─── */
.cal-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(44,120,132,0.18);
  box-shadow: 0 6px 28px rgba(31,58,71,0.06);
}
.cal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(31,58,71,0.08);
}
.cal-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 500;
}
.cal-nav { display: flex; gap: 0.4rem; }
.cal-nav button {
  width: 36px; height: 36px;
  border: 1px solid rgba(31,58,71,0.15);
  border-radius: var(--radius);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.cal-nav button:hover {
  background: var(--navy); color: var(--cream); border-color: var(--navy);
}
.cal-month-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 500;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-weekday {
  font-size: 0.65rem; letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: var(--gold-deep);
  padding: 0.4rem 0;
  font-weight: 500;
}
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--navy);
  border-radius: var(--radius);
  position: relative;
  background: var(--cream-deep);
}
.cal-day.empty { background: transparent; }
.cal-day.past { color: var(--muted); opacity: 0.4; background: transparent; }
.cal-day.available { background: white; border: 1px solid rgba(44,120,132,0.2); }
.cal-day.available:hover { background: var(--caribe); color: white; cursor: pointer; }
.cal-day.blocked {
  background: var(--cream-deep);
  color: var(--muted);
  position: relative;
  text-decoration: line-through;
  text-decoration-color: rgba(31,58,71,0.35);
}
.cal-day.today {
  font-weight: 600;
  outline: 2px solid var(--gold-deep);
}
.cal-legend {
  display: flex; gap: 1.5rem;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(31,58,71,0.08);
  font-size: 0.78rem;
  color: var(--mid);
}
.cal-legend span { display: flex; align-items: center; gap: 0.5rem; }
.cal-legend span::before {
  content: ''; width: 14px; height: 14px; border-radius: 3px;
}
.cal-legend .av::before { background: white; border: 1px solid rgba(44,120,132,0.3); }
.cal-legend .bl::before { background: var(--cream-deep); }
.cal-loading {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--mid);
  font-size: 0.9rem;
}
.cal-loading::before {
  content: ''; display: inline-block;
  width: 18px; height: 18px;
  border: 2px solid var(--sand);
  border-top-color: var(--caribe);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
  margin-right: 0.6rem;
}
@keyframes spin { to { transform: rotate(360deg); } }
.cal-error {
  background: var(--cream-deep);
  padding: 1.2rem;
  border-radius: var(--radius);
  color: var(--mid);
  font-size: 0.85rem;
  text-align: center;
}

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(15,37,48,0.96);
  display: none;
  align-items: center; justify-content: center;
  z-index: 100;
  padding: 4rem 2rem;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  color: var(--cream);
  font-size: 2rem;
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: all var(--transition);
}
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255,255,255,0.25);
}
.lightbox-counter {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: var(--cream); font-size: 0.85rem;
  letter-spacing: 0.15em;
}

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  color: var(--cream);
  padding: 4rem 2.5rem 1.5rem;
  margin-top: 5rem;
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 1.2rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  color: rgba(250,246,239,0.7);
  font-size: 0.92rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-col p {
  color: rgba(250,246,239,0.7);
  font-size: 0.92rem;
  line-height: 1.7;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  display: block;
}
.footer-brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem; letter-spacing: 0.22em;
  color: var(--gold);
  margin-top: 4px;
}
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250,246,239,0.1);
  display: flex; justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(250,246,239,0.5);
}
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(250,246,239,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  z-index: 50;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
}
.wa-float:hover { transform: scale(1.08); }

/* ─── CATALOG PAGE ─── */
.catalog-hero {
  padding: 9rem 2.5rem 4rem;
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.catalog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  color: var(--navy);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.catalog-hero p {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 580px;
  margin: 0 auto;
}

.catalog-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 3rem 0 4rem;
  flex-wrap: wrap;
}
.catalog-tab {
  padding: 0.8rem 1.5rem;
  background: white;
  border: 1px solid rgba(31,58,71,0.15);
  border-radius: 50px;
  font-size: 0.78rem; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  transition: all var(--transition);
}
.catalog-tab.active, .catalog-tab:hover {
  background: var(--navy); color: var(--cream); border-color: var(--navy);
}

.catalog-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2.5rem;
  margin-bottom: 5rem;
}
.catalog-section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(31,58,71,0.12);
}
.catalog-section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy);
  font-weight: 500;
}
.catalog-section-count {
  font-size: 0.78rem; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.props-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.prop-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(31,58,71,0.08);
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.prop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(31,58,71,0.12);
}
.prop-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.prop-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.prop-card:hover .prop-card-img img { transform: scale(1.06); }
.prop-card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--navy);
  color: var(--cream);
  padding: 0.35rem 0.8rem;
  font-size: 0.65rem; letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--radius);
}
.prop-card-badge.bg-gold { background: var(--gold-deep); }
.prop-card-badge.bg-caribe { background: var(--caribe); }
.prop-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.prop-card-loc {
  font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.4rem;
}
.prop-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.prop-card-meta {
  display: flex; gap: 1rem;
  font-size: 0.82rem;
  color: var(--mid);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(31,58,71,0.08);
}
.prop-card-meta span { display: flex; align-items: center; gap: 0.35rem; }
.prop-card-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 500;
  margin-top: auto;
}
.prop-card-price small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
