/* =====================================================================
   Amueblados.MX — Shared Stylesheet
   ===================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: #F1ECE0;
  color: #16312A;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: #C8E65C; color: #16312A; }
a { transition: color 0.13s; }

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  line-height: 1;
  transition: background 0.15s, color 0.15s, opacity 0.15s;
}
.btn-primary { background: #1E8B53; color: #fff; }
.btn-primary:hover { background: #176E41; color: #fff; }
.btn-outline {
  background: transparent;
  color: #16312A;
  border: 1.5px solid rgba(22,49,42,0.3);
}
.btn-outline:hover { background: #16312A; color: #fff; }
.btn-dark { background: #16312A; color: #fff; }
.btn-dark:hover { background: #1E8B53; }

/* ── Nav ─────────────────────────────────────────────────────────── */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 68px;
  background: #16312A;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span { color: #C8E65C; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  font-size: 15px;
  padding: 8px 14px;
  transition: color 0.13s;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-links a.active {
  border-bottom: 3px solid #C8E65C;
  padding-bottom: 5px;
}

/* ── Property cards ──────────────────────────────────────────────── */
.prop-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 36px -26px rgba(11,38,30,0.4);
  display: flex;
  flex-direction: column;
}
.prop-img-area {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #C8C2B5;
}
.prop-img-area img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prop-img-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #bcd4be 0%, #8aaf94 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(22,49,42,0.4);
  font-size: 12px;
  font-weight: 500;
}
.badge-tipo {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,0.95);
  color: #16312A;
  font-weight: 700;
  font-size: 12.5px;
  padding: 7px 13px;
  border-radius: 999px;
}
.badge-disp {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #C8E65C;
  color: #16312A;
  font-weight: 700;
  font-size: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.prop-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.prop-specs {
  display: flex;
  gap: 14px;
  margin: 14px 0 16px;
  padding: 12px 0;
  border-top: 1px solid #F0ECE0;
  border-bottom: 1px solid #F0ECE0;
  flex-wrap: wrap;
}
.spec {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  color: #4A5A52;
  font-weight: 500;
}
.prop-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  gap: 12px;
}
.prop-price { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 24px; color: #16312A; }
.prop-period { font-size: 14px; color: #7A8B7A; font-weight: 500; }
.prop-btn {
  text-decoration: none;
  background: #16312A;
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 18px;
  border-radius: 12px;
  transition: background 0.15s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.prop-btn:hover { background: #1E8B53; color: #fff; }

/* ── Filter pills ────────────────────────────────────────────────── */
.filter-pill {
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid #E6E0D3;
  background: #fff;
  color: #4A5A52;
  transition: all 0.15s;
  user-select: none;
}
.filter-pill.active,
.filter-pill:hover {
  background: #1E8B53;
  color: #fff;
  border-color: #1E8B53;
}

/* ── Location cards ──────────────────────────────────────────────── */
.ubic-card {
  text-decoration: none;
  display: block;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  height: 300px;
  box-shadow: 0 20px 40px -24px rgba(11,38,30,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.ubic-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 48px -24px rgba(11,38,30,0.56);
}
.ubic-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3A6B55, #2B5040);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.25);
  font-size: 13px;
}
.ubic-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ubic-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,38,30,0) 38%, rgba(11,38,30,0.82) 100%);
}
.ubic-count {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.92);
  color: #1E8B53;
  font-weight: 700;
  font-size: 12.5px;
  padding: 7px 13px;
  border-radius: 999px;
}
.ubic-info {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
}
.property-location-card {
  height: 360px;
}
.property-location-card .ubic-gradient {
  background: linear-gradient(180deg, rgba(11,38,30,0.08) 18%, rgba(11,38,30,0.9) 100%);
}
.property-location-zone {
  color: #C8E65C;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.property-location-desc {
  display: -webkit-box;
  max-height: 66px;
  margin: 0 0 14px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: rgba(255,255,255,0.78);
  font-size: 13.5px;
  line-height: 1.55;
}
.location-summary {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.location-summary span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid #DCD5C7;
  border-radius: 999px;
  background: rgba(255,255,255,0.58);
  color: #275C43;
  font-size: 13.5px;
  font-weight: 800;
}
.location-info-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 56px;
  padding: 36px 40px;
  border-radius: 24px;
  background: #16312A;
}
.location-info-strip h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  margin: 0;
  color: #fff;
  font-size: 26px;
  letter-spacing: -0.02em;
}
.location-info-strip p {
  max-width: 650px;
  margin: 8px 0 0;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.6;
}
.location-info-strip .btn {
  padding: 14px 22px;
  border-radius: 13px;
  white-space: nowrap;
}

/* ── Page sections ───────────────────────────────────────────────── */
.page-wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.page-header { max-width: 1240px; margin: 0 auto; padding: 52px 24px 0; }
.page-hero-dark {
  background: #16312A;
  padding: 0 24px;
  position: relative;
  overflow: hidden;
}
.page-hero-inner { max-width: 1240px; margin: 0 auto; padding: 56px 0 52px; }

/* ── Form ────────────────────────────────────────────────────────── */
.contact-form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 36px 38px;
  box-shadow: 0 22px 48px -30px rgba(11,38,30,0.4);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-top: 16px; }
.form-group:first-child,
.form-row .form-group:first-child { margin-top: 0; }
.form-label { font-size: 13px; font-weight: 700; color: #16312A; }
.form-input {
  border: 1px solid #E3DDCF;
  border-radius: 12px;
  padding: 13px 15px;
  font-family: inherit;
  font-size: 15px;
  color: #16312A;
  outline: none;
  background: #FBFAF6;
  transition: border-color 0.15s;
  width: 100%;
}
.form-input:focus { border-color: #1E8B53; }
textarea.form-input { resize: vertical; }
select.form-input { appearance: none; cursor: pointer; }

/* ── Utility ─────────────────────────────────────────────────────── */
.tag-label {
  font-weight: 700;
  font-size: 14px;
  color: #1E8B53;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: #5A6A62;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.13s;
}
.back-link:hover { color: #16312A; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 24px; }

/* Property catalog */
.properties-page-header h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 12px 0 0;
  color: #16312A;
}
.properties-page-header p {
  font-size: 17px;
  line-height: 1.65;
  color: #4A5A52;
  margin: 16px 0 0;
  max-width: 680px;
}
.property-filter-wrap { padding-top: 36px; }
.property-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.property-filter-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.property-count-label {
  flex-shrink: 0;
  font-size: 14px;
  color: #7A8B7A;
  font-weight: 600;
}
.property-groups { padding-top: 38px; padding-bottom: 88px; }
.property-group + .property-group {
  margin-top: 62px;
  padding-top: 58px;
  border-top: 1px solid #DCD5C7;
}
.property-empty-state {
  max-width: 720px;
  margin: 10px auto 0;
  padding: 52px 32px;
  border-radius: 24px;
  background: rgba(255,255,255,0.62);
  text-align: center;
}
.property-empty-state h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  margin: 0;
  color: #16312A;
  font-size: 30px;
}
.property-empty-state p {
  max-width: 540px;
  margin: 12px auto 22px;
  color: #5A6A62;
  font-size: 15.5px;
  line-height: 1.6;
}
.property-empty-state .btn { padding: 14px 22px; border-radius: 13px; }
.property-group[hidden] { display: none; }
.property-group-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}
.property-group-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #1E8B53;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.property-group-eyebrow span {
  color: #6C7A72;
  font-weight: 700;
}
.property-group-eyebrow span::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 9px;
  border-radius: 50%;
  background: #AAB5AE;
  vertical-align: middle;
}
.property-group-heading h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 8px 0 0;
  color: #16312A;
}
.property-group-heading p {
  max-width: 650px;
  margin: 10px 0 0;
  color: #5A6A62;
  font-size: 15.5px;
  line-height: 1.6;
}
.property-group-total {
  flex-shrink: 0;
  padding: 9px 14px;
  border-radius: 999px;
  background: #E1E9D9;
  color: #275C43;
  font-size: 13px;
  font-weight: 700;
}
.subproperty-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.subproperty-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 36px -26px rgba(11,38,30,0.4);
}
.subproperty-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #A8BEAE;
}
.subproperty-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.subproperty-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: linear-gradient(135deg, #BCD4BE, #8AAF94);
  color: rgba(22,49,42,0.42);
  font-size: 12px;
  font-weight: 600;
}
.subproperty-status {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.subproperty-status span { width: 7px; height: 7px; border-radius: 50%; }
.subproperty-status.is-available { background: #C8E65C; color: #16312A; }
.subproperty-status.is-available span { background: #1E8B53; }
.subproperty-status.is-unavailable { background: #FEE2E2; color: #991B1B; }
.subproperty-status.is-unavailable span { background: #DC2626; }
.subproperty-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 22px 22px;
}
.subproperty-location {
  color: #1E8B53;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.subproperty-body h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  margin: 5px 0 0;
  color: #16312A;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.subproperty-description {
  margin: 9px 0 0;
  color: #5A6A62;
  font-size: 14px;
  line-height: 1.55;
}
.subproperty-specs {
  display: flex;
  align-items: center;
  gap: 8px 14px;
  flex-wrap: wrap;
  margin: 16px 0;
  padding: 13px 0;
  border-top: 1px solid #F0ECE0;
  border-bottom: 1px solid #F0ECE0;
}
.subproperty-specs span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #526159;
  font-size: 13px;
  font-weight: 600;
}
.subproperty-specs svg { color: #1E8B53; }
.subproperty-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
}
.subproperty-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  color: #16312A;
  font-size: 24px;
  font-weight: 800;
}
.subproperty-price-consult { font-size: 17px; }
.subproperty-period { color: #7A8B7A; font-size: 13px; font-weight: 600; }
.subproperty-weekly-price,
.subproperty-monthly-price {
  display: block;
  margin-top: 4px;
  color: #5A6A62;
  font-size: 14px;
  font-weight: 700;
}
.properties-cta { padding: 60px 24px; background: #16312A; }
.properties-cta > div {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.properties-cta h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  margin: 0;
  color: #fff;
  font-size: 36px;
  letter-spacing: -0.025em;
}
.properties-cta p {
  margin: 10px 0 0;
  color: rgba(255,255,255,0.78);
  font-size: 16px;
}
.properties-cta .btn {
  flex-shrink: 0;
  padding: 16px 28px;
  border-radius: 14px;
  font-size: 16px;
}

@media (max-width: 900px) {
  .subproperty-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .properties-cta > div { align-items: flex-start; flex-direction: column; }
  .location-info-strip { align-items: flex-start; grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-nav { height: 64px; padding: 0 18px; }
  .nav-links { display: none; }
  .site-nav > .btn { padding: 11px 14px !important; font-size: 13px !important; }
}

@media (max-width: 640px) {
  .page-header { padding-top: 38px; }
  .property-filter-bar,
  .property-group-heading { align-items: flex-start; flex-direction: column; }
  .property-count-label { order: -1; }
  .property-groups { padding-top: 30px; }
  .property-group + .property-group { margin-top: 44px; padding-top: 42px; }
  .subproperty-grid { grid-template-columns: 1fr; }
  .properties-cta h2 { font-size: 30px; }
  .grid-3 { grid-template-columns: 1fr; }
  .property-location-card { height: 380px; }
  .location-info-strip { padding: 30px 24px; }
}

/* ── Site footer ─────────────────────────────────────────────────── */
.site-footer { background: #16312A; color: #fff; padding: 60px 24px 36px; }
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.footer-logo span { color: #C8E65C; }
.footer-col p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin: 14px 0 0;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #C8E65C;
  margin: 0 0 16px;
}
.footer-col a {
  display: block;
  text-decoration: none;
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  margin-bottom: 11px;
  transition: color 0.12s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom span { font-size: 13.5px; color: rgba(255,255,255,0.5); }

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .site-footer { padding-top: 46px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
}

/* ── Subproperty title link ──────────────────────────────────────── */
.subproperty-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.13s;
}
.subproperty-title-link:hover { color: #1E8B53; }

/* ── Ficha pública (inmueble.php) ────────────────────────────────── */

/* Back bar */
.ficha-back-bar {
  padding: 18px 0 0;
}
.ficha-back-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ficha-back-sep {
  color: #AAB5AE;
  font-size: 14px;
}
.ficha-back-prop {
  font-size: 14px;
  font-weight: 600;
  color: #5A6A62;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
}

/* Hero */
.ficha-hero {
  padding-top: 28px;
  padding-bottom: 0;
}
.ficha-hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.ficha-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 0;
  color: #16312A;
}
.ficha-location-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #5A6A62;
  margin: 10px 0 0;
}
.ficha-location-line svg { color: #1E8B53; flex-shrink: 0; }

/* Availability badges */
.ficha-avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.ficha-avail-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.avail-green  { background: #C8E65C; color: #16312A; }
.avail-green  .ficha-avail-dot { background: #1E8B53; }
.avail-amber  { background: #FEF3C7; color: #92400E; }
.avail-amber  .ficha-avail-dot { background: #D97706; }
.avail-orange { background: #FEE2E2; color: #991B1B; }
.avail-orange .ficha-avail-dot { background: #EF4444; }
.avail-red    { background: #FEE2E2; color: #991B1B; }
.avail-red    .ficha-avail-dot { background: #DC2626; }
.avail-gray   { background: #F3F4F6; color: #6B7280; }
.avail-gray   .ficha-avail-dot { background: #9CA3AF; }

/* Gallery */
.ficha-gallery-wrap {
  padding-top: 28px;
}
.ficha-gallery {
  border-radius: 22px;
  overflow: hidden;
}
.ficha-gallery-main {
  width: 100%;
  height: 480px;
  overflow: hidden;
  background: #A8BEAE;
  border-radius: 22px;
}
.ficha-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s;
}
.ficha-gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.ficha-gallery-thumbs::-webkit-scrollbar { display: none; }
.ficha-thumb {
  flex-shrink: 0;
  width: 84px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  border: 2.5px solid transparent;
  cursor: pointer;
  background: #A8BEAE;
  transition: border-color 0.15s, opacity 0.15s;
  opacity: 0.72;
}
.ficha-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ficha-thumb:hover { opacity: 0.9; }
.ficha-thumb.is-active {
  border-color: #1E8B53;
  opacity: 1;
}
.ficha-gallery-placeholder {
  width: 100%;
  height: 340px;
  border-radius: 22px;
  background: linear-gradient(135deg, #BCD4BE, #8AAF94);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(22,49,42,0.4);
  font-size: 14px;
  font-weight: 600;
}

/* Two-column layout */
.ficha-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  padding-top: 44px;
  padding-bottom: 80px;
  align-items: start;
}
.ficha-main {
  min-width: 0;
}
.ficha-sidebar {
  position: sticky;
  top: 84px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Lead paragraph */
.ficha-lead {
  font-size: 18px;
  line-height: 1.65;
  color: #2E4A3E;
  font-weight: 500;
  margin: 0 0 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid #DCD5C7;
}

/* Sections */
.ficha-section {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid #DCD5C7;
}
.ficha-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.ficha-section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #16312A;
  margin: 0 0 18px;
}
.ficha-description {
  font-size: 15.5px;
  line-height: 1.7;
  color: #3C4E44;
}

/* Specs grid */
.ficha-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.ficha-spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #E6E0D3;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #3C4E44;
}
.ficha-spec-item svg { color: #1E8B53; flex-shrink: 0; }

/* Amenities */
.ficha-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.ficha-amenity-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #E7EFE2;
  color: #1A4030;
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
}
.ficha-amenity-chip svg { color: #1E8B53; }
.ficha-amenity-icon { font-size: 14px; line-height: 1; }

/* Property info */
.ficha-prop-info p {
  font-size: 15.5px;
  line-height: 1.65;
  color: #3C4E44;
  margin: 0 0 12px;
}
.ficha-prop-info p:last-child { margin-bottom: 0; }
.ficha-prop-address {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #5A6A62 !important;
  font-size: 14px !important;
}
.ficha-prop-address svg { color: #1E8B53; flex-shrink: 0; }

/* Price box */
.ficha-price-box {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 16px 40px -24px rgba(11,38,30,0.32);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ficha-price-wrap { }
.ficha-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 38px;
  color: #16312A;
  line-height: 1;
  letter-spacing: -0.02em;
}
.ficha-price-consult { font-size: 22px; }
.ficha-price-note {
  font-size: 14px;
  font-weight: 600;
  color: #7A8B7A;
  margin-top: 4px;
}
.ficha-weekly-price {
  margin-top: 10px;
  color: #5A6A62;
  font-size: 16px;
  font-weight: 800;
}
.ficha-monthly-price {
  margin-top: 10px;
  color: #5A6A62;
  font-size: 16px;
  font-weight: 800;
}
.ficha-avail-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 14px;
  border-radius: 12px;
}
.ficha-wa-btn {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(30,139,83,0.28);
}

/* Booking form box */
.ficha-form-box {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 16px 40px -24px rgba(11,38,30,0.22);
}
.ficha-form-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.015em;
  color: #16312A;
  margin: 0 0 4px;
}
.ficha-form-sub {
  font-size: 14px;
  color: #7A8B7A;
  margin: 0 0 20px;
}
.ficha-form .form-group { margin-top: 14px; }
.ficha-form .form-label { font-size: 12.5px; }
.ficha-form .form-input { font-size: 14px; padding: 11px 13px; }
.ficha-submit-btn {
  width: 100%;
  margin-top: 18px;
  padding: 14px;
  font-size: 15px;
  border-radius: 13px;
}

/* Alerts */
.ficha-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.ficha-alert svg { flex-shrink: 0; margin-top: 1px; }
.ficha-alert-ok  { background: #E7EFE2; color: #1A4030; }
.ficha-alert-ok svg { color: #1E8B53; }
.ficha-alert-err { background: #FEE2E2; color: #991B1B; }
.ficha-alert-err svg { color: #EF4444; }

/* Disclaimer */
.ficha-disclaimer {
  font-size: 12.5px;
  color: #8A9A8A;
  line-height: 1.55;
  margin: 0;
  text-align: center;
}

/* Responsive ficha */
@media (max-width: 1060px) {
  .ficha-layout { grid-template-columns: 1fr 340px; }
}
@media (max-width: 860px) {
  .ficha-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 32px;
  }
  .ficha-sidebar { position: static; }
  .ficha-gallery-main { height: 360px; }
}
@media (max-width: 600px) {
  .ficha-title { font-size: clamp(28px, 8vw, 40px); }
  .ficha-gallery-main { height: 260px; }
  .ficha-specs-grid { grid-template-columns: 1fr 1fr; }
  .ficha-price { font-size: 32px; }
}
