/* ============================================================
   REMAX Real Colonia — Estilos base + componentes
   Depende de tokens.css. Mobile-first.
   ============================================================ */

@import url('./tokens.css');

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: var(--w-regular);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: var(--w-bold); line-height: var(--lh-tight); letter-spacing: var(--tr-tight); }

/* ---------- Tipografía utilities ---------- */
.eyebrow {
  font-size: var(--fs-xs);
  font-weight: var(--w-semibold);
  letter-spacing: var(--tr-widest);
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cta);
}
.eyebrow.on-dark { color: rgba(247, 245, 238, 0.7); }
.eyebrow.on-dark::before { background: var(--remax-red); }

.lede { font-size: var(--fs-md); line-height: var(--lh-base); color: var(--ink-soft); margin: 0; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad-x);
}
.container.narrow { max-width: var(--container-narrow); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: var(--s-4) var(--s-6);
  font-size: var(--fs-sm);
  font-weight: var(--w-semibold);
  letter-spacing: var(--tr-snug);
  border-radius: var(--r-md);
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--cta);
  color: var(--white);
}
.btn-primary:hover { background: var(--cta-hover); }

.btn-dark {
  background: var(--ink-strong);
  color: var(--remax-cream);
}
.btn-dark:hover { background: var(--remax-blue-dark); }

.btn-ghost {
  background: transparent;
  color: var(--ink-strong);
  border: 1.5px solid var(--ink-strong);
}
.btn-ghost:hover { background: var(--ink-strong); color: var(--remax-cream); }

.btn-light {
  background: var(--remax-cream);
  color: var(--ink-strong);
}
.btn-light:hover { background: var(--white); }

.btn-wa {
  background: #25D366;
  color: var(--white);
}
.btn-wa:hover { background: #1DB755; }

.btn .arrow { transition: transform var(--t-fast); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: saturate(180%) blur(8px);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
  padding-block: var(--s-4);
}
.brand-logo img {
  height: 36px;
  width: auto;
  display: block;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: var(--s-6);
}
.site-nav a {
  font-size: var(--fs-sm);
  font-weight: var(--w-medium);
  color: var(--ink);
  transition: color var(--t-fast);
}
.site-nav a:hover { color: var(--cta); }
.site-nav .btn { padding: var(--s-3) var(--s-5); }

.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: transparent;
  align-items: center;
  justify-content: center;
}
.menu-toggle svg { width: 24px; height: 24px; }

@media (max-width: 880px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
    padding: var(--s-4);
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    padding: var(--s-3) 0;
    border-bottom: 1px solid var(--rule-soft);
  }
  .site-nav a:last-child { border-bottom: none; }
  .site-nav .btn { margin-top: var(--s-3); justify-content: center; }
  .menu-toggle { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero {
  padding-block: var(--s-16) var(--s-12);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
  align-items: center;
}
.hero-text > * + * { margin-top: var(--s-6); }
.hero-text { width: 100%; }
.hero h1 {
  font-size: var(--fs-hero);
  font-weight: var(--w-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--tr-tight);
  color: var(--ink-strong);
  margin: 0;
}
.hero h1 .accent { color: var(--accent); }
.hero h1 .accent-red { color: var(--cta); }
.hero p.lede { font-size: var(--fs-lg); }
.hero-cta-row {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
}
.hero-aside {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  padding: var(--s-6);
}

@media (min-width: 880px) {
  .hero-inner.with-aside {
    grid-template-columns: 1.4fr 1fr;
    gap: var(--s-12);
  }
}

/* ---------- Sections ---------- */
.section {
  padding-block: var(--s-16);
}
.section.tight { padding-block: var(--s-12); }
.section.dark {
  background: var(--bg-dark);
  color: var(--remax-cream);
}
.section.cream-soft {
  background: var(--bg-soft);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-bottom: var(--s-10);
}
.section-head h2 {
  font-size: var(--fs-3xl);
  font-weight: var(--w-bold);
  letter-spacing: var(--tr-tight);
  color: inherit;
  width: 100%;
}
.section-head p {
  font-size: var(--fs-md);
  line-height: var(--lh-base);
  color: var(--ink-soft);
  margin: 0;
}
.section.dark .section-head p { color: rgba(247, 245, 238, 0.75); }

/* ---------- Pillar (línea de marca con datos) ---------- */
.pillar-strip {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  padding: var(--s-6);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
}
.pillar-cell {
  padding: var(--s-3);
  border-right: 1px solid var(--rule-soft);
}
.pillar-cell:nth-child(2n) { border-right: none; }
.pillar-cell .num {
  font-size: var(--fs-2xl);
  font-weight: var(--w-bold);
  letter-spacing: var(--tr-tight);
  color: var(--ink-strong);
  display: block;
  line-height: 1;
}
.pillar-cell .lab {
  font-size: var(--fs-xs);
  font-weight: var(--w-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tr-wide);
  color: var(--ink-soft);
  margin-top: var(--s-2);
  display: block;
}

@media (min-width: 720px) {
  .pillar-strip { grid-template-columns: repeat(4, 1fr); }
  .pillar-cell:nth-child(2n) { border-right: 1px solid var(--rule-soft); }
  .pillar-cell:last-child { border-right: none; }
}

/* ---------- Cards ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 720px) { .cards-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) {
  .cards-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .cards-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--rule-soft);
}
.card .num {
  font-size: var(--fs-xs);
  font-weight: var(--w-semibold);
  letter-spacing: var(--tr-wide);
  color: var(--accent-bright);
  text-transform: uppercase;
}
.card h3 {
  font-size: var(--fs-lg);
  font-weight: var(--w-bold);
  letter-spacing: var(--tr-snug);
  margin-block: var(--s-3) var(--s-2);
  color: var(--ink-strong);
}
.card p {
  font-size: var(--fs-sm);
  line-height: var(--lh-base);
  color: var(--ink-soft);
  margin: 0;
}
.section.dark .card {
  background: rgba(247, 245, 238, 0.04);
  border-color: var(--rule-on-dark);
  color: var(--remax-cream);
}
.section.dark .card h3 { color: var(--remax-cream); }
.section.dark .card p { color: rgba(247, 245, 238, 0.8); }

/* ---------- Step list ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  counter-reset: step;
}
@media (min-width: 720px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .steps.cols-4 { grid-template-columns: repeat(4, 1fr); } }
.step {
  position: relative;
  padding-left: var(--s-12);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  left: 0;
  top: 0;
  font-size: var(--fs-xl);
  font-weight: var(--w-bold);
  color: var(--cta);
  letter-spacing: var(--tr-tight);
}
.step h4 {
  font-size: var(--fs-md);
  font-weight: var(--w-bold);
  margin: 0 0 var(--s-2);
  color: var(--ink-strong);
}
.step p {
  font-size: var(--fs-sm);
  line-height: var(--lh-base);
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- Coverage ---------- */
.coverage {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 720px) { .coverage { grid-template-columns: repeat(3, 1fr); } }
.coverage-item {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: var(--s-6);
}
.coverage-item .pin {
  font-size: var(--fs-xs);
  font-weight: var(--w-semibold);
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  color: var(--accent-bright);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.coverage-item .pin::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-bright);
}
.coverage-item h3 {
  font-size: var(--fs-lg);
  margin-block: var(--s-3) var(--s-1);
  color: var(--ink-strong);
}
.coverage-item p {
  font-size: var(--fs-sm);
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- Team grid ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
}
@media (min-width: 720px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: var(--s-4);
  text-align: left;
}
.team-card .avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-md);
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(0,0,0,0.04) 14px 15px),
    var(--bg-soft);
  margin-bottom: var(--s-3);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: var(--s-3);
  position: relative;
  overflow: hidden;
}
.team-card .avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-md);
}
.team-card .avatar .placeholder {
  font-size: var(--fs-xs);
  font-weight: var(--w-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tr-wide);
  background: rgba(255, 255, 255, 0.85);
  padding: 4px 8px;
  border-radius: var(--r-sm);
  color: var(--ink-soft);
}
.team-card h4 {
  font-size: var(--fs-md);
  font-weight: var(--w-bold);
  margin: 0;
  color: var(--ink-strong);
}
.team-card .role {
  font-size: var(--fs-xs);
  font-weight: var(--w-semibold);
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: var(--s-1);
  display: block;
}

/* Brokers (cards más grandes) */
.brokers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
@media (min-width: 720px) { .brokers-grid { grid-template-columns: repeat(2, 1fr); } }
.broker-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.broker-card .photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  background:
    repeating-linear-gradient(135deg, transparent 0 16px, rgba(0,0,0,0.04) 16px 17px),
    var(--bg-soft);
  position: relative;
  overflow: hidden;
}
.broker-card .photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.broker-card .photo .placeholder {
  font-size: var(--fs-xs);
  font-weight: var(--w-semibold);
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.9);
  padding: var(--s-2) var(--s-3);
  border-radius: var(--r-sm);
  color: var(--ink-soft);
}
.broker-card .info { padding: var(--s-6); }
.broker-card h3 {
  font-size: var(--fs-xl);
  font-weight: var(--w-bold);
  margin: 0;
  color: var(--ink-strong);
}
.broker-card .role {
  font-size: var(--fs-xs);
  font-weight: var(--w-semibold);
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  color: var(--cta);
  margin-top: var(--s-1);
  display: block;
}
.broker-card p {
  margin-top: var(--s-3);
  font-size: var(--fs-sm);
  line-height: var(--lh-base);
  color: var(--ink-soft);
}
.broker-card .actions {
  display: flex;
  gap: var(--s-2);
  margin-top: var(--s-5);
  flex-wrap: wrap;
}

/* Layout horizontal en desktop: foto cuadrada a la izquierda, info al lado */
@media (min-width: 720px) {
  .broker-card {
    flex-direction: row;
    align-items: center;
  }
  .broker-card .photo {
    width: 45%;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
  }
  .broker-card .info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* ---------- CTA banda final ---------- */
.cta-band {
  background: var(--bg-dark);
  color: var(--remax-cream);
  padding-block: var(--s-16);
}
.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
  align-items: center;
}
.cta-band h2 {
  font-size: var(--fs-3xl);
  font-weight: var(--w-bold);
  letter-spacing: var(--tr-tight);
  color: var(--remax-cream);
}
.cta-band p {
  margin-top: var(--s-3);
  font-size: var(--fs-md);
  color: rgba(247, 245, 238, 0.8);
}
.cta-band-actions {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-top: var(--s-5);
}
@media (min-width: 880px) {
  .cta-band-inner { grid-template-columns: 1.6fr 1fr; }
}

/* ---------- Forms ---------- */
.form {
  display: grid;
  gap: var(--s-4);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  padding: var(--s-6);
}
.form-row {
  display: grid;
  gap: var(--s-2);
}
.form label {
  font-size: var(--fs-xs);
  font-weight: var(--w-semibold);
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  color: var(--ink-soft);
}
.form input,
.form textarea,
.form select {
  width: 100%;
  padding: var(--s-3) var(--s-4);
  border: 1.5px solid var(--rule);
  border-radius: var(--r-md);
  background: var(--white);
  color: var(--ink-strong);
  font-size: var(--fs-base);
  transition: border-color var(--t-fast);
}
.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--accent-bright);
}
.form textarea { min-height: 100px; resize: vertical; }
.form .form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.form-state {
  display: none;
  padding: var(--s-3) var(--s-4);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  font-weight: var(--w-medium);
}
.form-state.show { display: block; }
.form-state.success { background: #E6F4EA; color: #14532D; border: 1px solid #B7E0C0; }
.form-state.error { background: #FEE2E2; color: #7F1D1D; border: 1px solid #FCA5A5; }
.form button[type="submit"] {
  justify-self: start;
}

@media (min-width: 720px) {
  .form-row.cols-2 { grid-template-columns: 1fr 1fr; gap: var(--s-4); }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-dark);
  color: var(--remax-cream);
  padding-block: var(--s-16) var(--s-6);
}
.site-footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-10);
  padding-bottom: var(--s-10);
  border-bottom: 1px solid var(--rule-on-dark);
}
.site-footer-brand img {
  height: 42px;
  width: auto;
  margin-bottom: var(--s-4);
}
.site-footer-brand p {
  font-size: var(--fs-sm);
  line-height: var(--lh-base);
  color: rgba(247, 245, 238, 0.7);
  margin: 0;
}
.site-footer h5 {
  font-size: var(--fs-xs);
  font-weight: var(--w-semibold);
  letter-spacing: var(--tr-widest);
  text-transform: uppercase;
  color: rgba(247, 245, 238, 0.5);
  margin: 0 0 var(--s-4);
}
.site-footer ul li {
  margin-bottom: var(--s-2);
  font-size: var(--fs-sm);
  color: rgba(247, 245, 238, 0.85);
}
.site-footer ul li a:hover { color: var(--white); }
.site-footer .wa-card {
  background: rgba(247, 245, 238, 0.05);
  border: 1px solid var(--rule-on-dark);
  border-radius: var(--r-lg);
  padding: var(--s-5);
}
.site-footer .wa-card .lab {
  font-size: var(--fs-xs);
  font-weight: var(--w-semibold);
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  color: rgba(247, 245, 238, 0.5);
  margin-bottom: var(--s-2);
}
.site-footer .wa-card .num {
  font-size: var(--fs-lg);
  font-weight: var(--w-bold);
  color: var(--white);
  margin-bottom: var(--s-3);
  letter-spacing: var(--tr-snug);
}
.site-footer-legal {
  padding-top: var(--s-5);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s-4);
  font-size: var(--fs-xs);
  color: rgba(247, 245, 238, 0.5);
  letter-spacing: var(--tr-wide);
}

@media (min-width: 720px) {
  .site-footer-inner {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}

/* ---------- Misc ---------- */
.divider {
  height: 1px;
  background: var(--rule);
  border: none;
  margin-block: var(--s-12);
}
.tag {
  display: inline-flex;
  align-items: center;
  padding: var(--s-1) var(--s-3);
  background: var(--bg-soft);
  border-radius: 999px;
  font-size: var(--fs-xs);
  font-weight: var(--w-semibold);
  letter-spacing: var(--tr-wide);
  color: var(--ink-soft);
}

.list-bullets {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
  margin: 0;
}
@media (min-width: 720px) { .list-bullets.cols-2 { grid-template-columns: 1fr 1fr; gap: var(--s-3) var(--s-6); } }
.list-bullets li {
  padding-left: var(--s-6);
  position: relative;
  font-size: var(--fs-sm);
  color: var(--ink-soft);
  line-height: var(--lh-base);
}
.list-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 14px;
  height: 2px;
  background: var(--cta);
}

.bg-celeste-soft { background: linear-gradient(160deg, rgba(163, 212, 242, 0.18), var(--bg)); }

/* ---------- FAQ acordeón ---------- */
.faq {
  display: grid;
  gap: var(--s-3);
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t-fast);
}
.faq-item[open] { border-color: var(--accent-bright); }
.faq-item summary {
  padding: var(--s-5) var(--s-6);
  font-weight: var(--w-semibold);
  font-size: var(--fs-md);
  color: var(--ink-strong);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  transition: background var(--t-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--bg-soft); }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: var(--w-light);
  color: var(--accent-bright);
  transition: transform var(--t-fast);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item .answer {
  padding: 0 var(--s-6) var(--s-5);
  color: var(--ink-soft);
  font-size: var(--fs-sm);
  line-height: var(--lh-base);
}
.faq-item .answer p { margin: 0; }
.faq-item .answer p + p { margin-top: var(--s-3); }

/* ---------- Tabla comparativa ---------- */
.compare-table {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
  width: 100%;
}
.compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid var(--rule-soft);
}
.compare-row:last-child { border-bottom: none; }
.compare-row > div {
  padding: var(--s-4) var(--s-5);
  font-size: var(--fs-sm);
  display: flex;
  align-items: center;
}
.compare-row.head > div {
  background: var(--bg-soft);
  font-size: var(--fs-xs);
  font-weight: var(--w-semibold);
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  color: var(--ink-soft);
}
.compare-row.head .col-good {
  color: var(--cta);
}
.compare-row .label {
  font-weight: var(--w-medium);
  color: var(--ink-strong);
}
.compare-row .col-good {
  background: rgba(0, 67, 255, 0.04);
  color: var(--accent);
  font-weight: var(--w-semibold);
  justify-content: center;
}
.compare-row .col-bad {
  color: var(--ink-muted);
  justify-content: center;
}
.check { color: #0a8754; font-weight: var(--w-bold); }
.cross { color: #c44; font-weight: var(--w-bold); }

@media (max-width: 600px) {
  .compare-row { grid-template-columns: 1.6fr 1fr 1fr; }
  .compare-row > div { padding: var(--s-3); font-size: var(--fs-xs); }
}

/* ---------- WhatsApp Floating Action Button ---------- */
.wa-fab {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.wa-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}
.wa-fab svg {
  width: 30px;
  height: 30px;
}

/* ---------- Disclaimer (aviso legal) ---------- */
.disclaimer {
  margin-top: var(--s-6);
  padding: var(--s-4) var(--s-5);
  background: rgba(247, 245, 238, 0.05);
  border: 1px solid var(--rule-on-dark);
  border-radius: var(--r-md);
  font-size: var(--fs-xs);
  color: rgba(247, 245, 238, 0.6);
  line-height: var(--lh-base);
  max-width: 60ch;
}

/* ---------- Image placeholders (para visualizar dónde van fotos pendientes) ---------- */
.img-placeholder {
  position: relative;
  width: 100%;
  border-radius: var(--r-xl);
  background:
    repeating-linear-gradient(
      45deg,
      rgba(0, 67, 255, 0.06),
      rgba(0, 67, 255, 0.06) 12px,
      rgba(0, 67, 255, 0.12) 12px,
      rgba(0, 67, 255, 0.12) 24px
    ),
    var(--bg-soft);
  border: 2px dashed var(--accent-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--s-6);
  color: var(--accent);
  overflow: hidden;
}
.img-placeholder.aspect-43 { aspect-ratio: 4 / 3; }
.img-placeholder.aspect-32 { aspect-ratio: 3 / 2; }
.img-placeholder.aspect-11 { aspect-ratio: 1 / 1; }
.img-placeholder.aspect-169 { aspect-ratio: 16 / 9; }
.img-placeholder .ph-inner {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  align-items: center;
  max-width: 90%;
}
.img-placeholder .ph-icon {
  font-size: 2rem;
  line-height: 1;
}
.img-placeholder .ph-label {
  font-size: var(--fs-xs);
  font-weight: var(--w-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tr-widest);
  color: var(--accent-bright);
}
.img-placeholder .ph-text {
  font-size: var(--fs-sm);
  font-weight: var(--w-medium);
  color: var(--ink);
  line-height: var(--lh-base);
}
.img-placeholder .ph-hint {
  font-size: var(--fs-xs);
  color: var(--ink-soft);
  font-style: italic;
}

/* ---------- Hero image (paisaje home) ---------- */
.hero-image {
  display: block;
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 14, 53, 0.12);
}
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Hero nota (texto secundario en hero) ---------- */
.hero-nota {
  font-size: var(--fs-sm);
  color: var(--ink-soft);
  background: var(--bg-soft);
  border-left: 3px solid var(--accent-bright);
  padding: var(--s-3) var(--s-4);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin-top: var(--s-4);
  max-width: 60ch;
}
.hero-nota strong { color: var(--ink-strong); }
