/* ==============================================
   INMOMR — modern.css
   Static template v2.0 — EN / ES / DE
   ============================================== */

/* ==============================================
   VARIABLES
   ============================================== */
:root {
  --green:      #71b100;
  --green-l:    #8fd400;
  --green-dim:  rgba(113,177,0,.12);
  --orange:     #e08709;
  --navy:       #060c1a;
  --navy-2:     #0c1e35;
  --white:      #ffffff;
  --off:        #f7f9fc;
  --text:       #0f172a;
  --muted:      #64748b;
  --border:     #e2e8f0;
  --shadow:     0 8px 32px rgba(0,0,0,.1);
  --shadow-lg:  0 24px 64px rgba(0,0,0,.16);
  --r:          14px;
  --r-lg:       22px;
  --ease:       cubic-bezier(.22,1,.36,1);
}

/* ==============================================
   RESET
   ============================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: all .25s var(--ease); }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ==============================================
   WHATSAPP FLOAT
   ============================================== */
.wa-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 9999;
  width: 62px; height: 62px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; color: #fff;
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.wa-float:hover {
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 14px 40px rgba(37,211,102,.55);
  color: #fff;
}
.wa-float i { font-size: 1.8rem; }
.wa-float svg { display: block; }
.wa-tooltip {
  position: absolute; right: 72px;
  background: var(--navy-2); color: #fff;
  font-size: .8rem; font-weight: 600;
  padding: 7px 14px; border-radius: 8px;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
}
.wa-tooltip::after {
  content: ''; position: absolute;
  right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy-2);
  border-right: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ==============================================
   NAVBAR
   ============================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background .4s var(--ease), box-shadow .4s;
  padding: 0 5%;
}
.nav.solid {
  background: rgba(6,12,26,.96);
  backdrop-filter: blur(24px);
  box-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.nav-inner {
  height: 72px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.nav-logo {
  font-size: 1.55rem; font-weight: 900; color: #fff;
  letter-spacing: -.03em; flex-shrink: 0;
}
.nav-logo span { color: var(--green); }

.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,.7);
  font-size: .85rem; font-weight: 500;
  padding: 8px 14px; border-radius: 8px;
  transition: all .2s;
}
.nav-links a:hover, .nav-links a.active {
  color: #fff; background: rgba(255,255,255,.08);
}

.nav-right { display: flex; align-items: center; gap: 10px; }

/* --- Language Switcher --- */
.lang-switch { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
  padding: 7px 12px; border-radius: 8px;
  font-size: .82rem; font-weight: 600;
  transition: all .2s; cursor: pointer;
}
.lang-btn:hover { background: rgba(255,255,255,.18); color: #fff; }
#langCode { letter-spacing: .04em; }
#langChevron { font-size: .65rem; transition: transform .25s; }
.lang-switch.open #langChevron { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: rgba(8,16,35,.97);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 6px; min-width: 148px;
  opacity: 0; pointer-events: none;
  transform: translateY(-8px) scale(.97);
  transition: all .22s var(--ease);
  z-index: 200;
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.lang-switch.open .lang-dropdown {
  opacity: 1; pointer-events: auto;
  transform: translateY(0) scale(1);
}
.lang-dropdown li button {
  width: 100%; text-align: left;
  padding: 9px 14px; border-radius: 8px;
  font-size: .84rem; color: rgba(255,255,255,.7);
  transition: all .15s;
  display: flex; gap: 9px; align-items: center;
}
.lang-dropdown li button:hover,
.lang-dropdown li button.active {
  background: var(--green-dim); color: var(--green);
}
.lang-dropdown li button.active { font-weight: 700; }

/* --- Dark Toggle --- */
.btn-dark-toggle {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; transition: all .2s;
}
.btn-dark-toggle:hover { background: rgba(255,255,255,.1); color: #fff; }

/* --- WhatsApp Nav Btn --- */
.btn-wa-nav {
  display: flex; align-items: center; gap: 7px;
  background: #25d366; color: #fff;
  padding: 9px 18px; border-radius: 30px;
  font-size: .83rem; font-weight: 700;
  transition: all .25s var(--ease);
}
.btn-wa-nav:hover {
  background: #20b858; transform: translateY(-2px); color: #fff;
}

/* --- Hamburger --- */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span {
  width: 22px; height: 2px; background: #fff;
  border-radius: 2px; transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==============================================
   HERO — SPLIT LAYOUT
   ============================================== */
.hero {
  min-height: 100vh; background: var(--navy);
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}

/* Blobs */
.hero-blobs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-blobs::before {
  content: ''; position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(113,177,0,.18), transparent 70%);
  top: -200px; left: -200px;
  animation: blobFloat 12s ease-in-out infinite;
}
.hero-blobs::after {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,135,9,.12), transparent 70%);
  bottom: -100px; right: 30%;
  animation: blobFloat 16s ease-in-out infinite reverse;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px,-40px) scale(1.08); }
}

/* Left */
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 6% 80px; position: relative; z-index: 1;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-dim); border: 1px solid rgba(113,177,0,.3);
  color: #a3e03b; font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 30px;
  margin-bottom: 28px; width: fit-content;
}
.hero-eyebrow::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(113,177,0,.5); }
  50% { box-shadow: 0 0 0 6px rgba(113,177,0,0); }
}

.hero-heading {
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 900; color: #fff; line-height: 1.08;
  letter-spacing: -.03em; margin-bottom: 20px;
}
.hero-heading em {
  font-style: italic; font-family: 'Playfair Display', serif;
  background: linear-gradient(135deg, var(--green), var(--green-l));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: rgba(255,255,255,.6); font-size: 1rem;
  max-width: 460px; margin-bottom: 36px; line-height: 1.8;
}

/* Search tabs */
.search-tabs {
  display: flex; gap: 0; margin-bottom: 20px;
  width: fit-content;
  background: rgba(255,255,255,.07); border-radius: 12px; padding: 4px;
}
.search-tab {
  padding: 9px 22px; border-radius: 9px;
  font-size: .85rem; font-weight: 600;
  color: rgba(255,255,255,.55); transition: all .25s;
}
.search-tab.active { background: var(--green); color: #fff; }
.search-tab:hover:not(.active) { color: #fff; }

.hero-search {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg); padding: 20px;
  max-width: 520px;
}
.search-input-row { display: flex; gap: 10px; margin-bottom: 14px; }
.search-input-wrap {
  flex: 1; display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.95);
  border-radius: 10px; padding: 0 16px;
}
.search-input-wrap i { color: var(--muted); font-size: .88rem; }
.search-input-wrap input {
  border: none; background: transparent; outline: none;
  padding: 13px 0; font-size: .9rem; color: var(--text); width: 100%;
}
.search-input-wrap input::placeholder { color: var(--muted); }

.btn-search {
  background: var(--green); color: #fff;
  padding: 0 22px; border-radius: 10px;
  font-weight: 700; font-size: .88rem;
  display: flex; align-items: center; gap: 7px;
  transition: all .25s var(--ease); white-space: nowrap;
}
.btn-search:hover {
  background: var(--green-l); transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(113,177,0,.4);
}

.search-filters { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }

.sf-select, .sf-input {
  height: 42px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  padding: 0 14px; font-size: .82rem;
  outline: none; width: 100%; font-family: inherit;
  transition: border-color .2s;
}
.sf-select:focus, .sf-input:focus { border-color: var(--green); }
.sf-select option { background: var(--navy-2); color: #fff; }
.sf-input::placeholder { color: rgba(255,255,255,.45); }

/* Hero stats */
.hero-stats {
  display: flex; align-items: center; gap: 28px;
  margin-top: 32px; flex-wrap: wrap;
}
.hero-stat strong {
  display: block; font-size: 2rem; font-weight: 900;
  color: #fff; line-height: 1; margin-bottom: 4px;
}
.hero-stat span {
  font-size: .75rem; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .07em;
}
.stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,.12); }

/* Right — mosaic */
.hero-right {
  position: relative; display: flex; align-items: center;
  padding: 120px 5% 80px 0;
}
.hero-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 10px; width: 100%; height: 80vh; max-height: 600px;
}
.mosaic-item {
  border-radius: var(--r); overflow: hidden; position: relative;
  transition: transform .4s var(--ease);
}
.mosaic-item:hover { transform: scale(1.02); }
.mosaic-item.tall { grid-row: span 2; }
.mosaic-tag {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(0,0,0,.55); backdrop-filter: blur(8px);
  color: #fff; padding: 5px 12px; border-radius: 20px;
  font-size: .72rem; font-weight: 600;
}
.mosaic-price {
  position: absolute; top: 10px; right: 10px;
  background: var(--green); color: #fff;
  padding: 4px 12px; border-radius: 20px;
  font-size: .75rem; font-weight: 700;
}
.m1 { background: linear-gradient(135deg, #0d3b1a, #1a6b35); }
.m2 { background: linear-gradient(135deg, #1a1a4d, #2d2d8a); }
.m3 { background: linear-gradient(135deg, #4d1a0d, #8a3520); }
.m4 { background: linear-gradient(135deg, #0d2e4d, #1a6480); }
.m5 { background: linear-gradient(135deg, #2e1a4d, #6435a0); }
.mosaic-icon {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  color: rgba(255,255,255,.35); font-size: 2.5rem;
}
.mosaic-icon.small { font-size: 1.6rem; }
.mosaic-icon span { font-size: .78rem; font-weight: 600; letter-spacing: .05em; }

/* ==============================================
   PROPERTY CATEGORIES — Scroll horizontal
   ============================================== */
.cats-section {
  padding: 48px 0; background: var(--white);
  border-bottom: 1px solid var(--border);
}
.cats-scroll {
  display: flex; gap: 14px; overflow-x: auto;
  padding: 0 5% 8px; scrollbar-width: none;
}
.cats-scroll::-webkit-scrollbar { display: none; }
.cat-pill {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
  padding: 12px 22px; border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: .88rem; font-weight: 600; color: var(--muted);
  transition: all .25s var(--ease); white-space: nowrap;
}
.cat-pill i { font-size: 1.1rem; }
.cat-pill:hover, .cat-pill.active {
  background: var(--green); border-color: var(--green);
  color: #fff; transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(113,177,0,.3);
}

/* ==============================================
   PROPERTIES SECTION
   ============================================== */
.props-section { padding: 100px 5%; }
.sec-header {
  margin-bottom: 60px;
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.sec-label {
  font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--green); margin-bottom: 12px;
}
.sec-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900; color: var(--text); line-height: 1.15;
  letter-spacing: -.02em;
}
.sec-link {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid var(--border); border-radius: 30px;
  padding: 10px 22px; font-size: .85rem;
  font-weight: 600; color: var(--muted);
  transition: all .25s; flex-shrink: 0;
}
.sec-link:hover {
  border-color: var(--green); color: var(--green);
  background: var(--green-dim);
}
.sec-link i { transition: transform .25s; }
.sec-link:hover i { transform: translateX(4px); }

/* Cards grid */
.props-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

/* CARD */
.pcard {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
  display: flex; flex-direction: column; cursor: pointer;
}
.pcard:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(113,177,0,.25);
}
.pcard-img { position: relative; overflow: hidden; aspect-ratio: 4/3; flex-shrink: 0; }
.pcard-img > div { width: 100%; height: 100%; transition: transform .5s var(--ease); }
.pcard:hover .pcard-img > div { transform: scale(1.06); }

.pcard-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,12,26,.85) 0%, transparent 55%);
  opacity: 0; transition: opacity .35s;
  display: flex; align-items: flex-end; padding: 20px;
}
.pcard:hover .pcard-overlay { opacity: 1; }
.pcard-overlay-btn {
  background: #fff; color: var(--text);
  padding: 10px 20px; border-radius: 30px;
  font-size: .82rem; font-weight: 700;
  display: flex; align-items: center; gap: 7px;
  width: 100%; justify-content: center;
  transition: background .2s;
}
.pcard-overlay-btn:hover { background: var(--green); color: #fff; }

.pcard-badges {
  position: absolute; top: 14px; left: 14px;
  display: flex; gap: 7px;
}
.pcard-badge {
  padding: 5px 11px; border-radius: 20px;
  font-size: .7rem; font-weight: 700;
  backdrop-filter: blur(8px);
}
.b-venta { background: rgba(113,177,0,.9); color: #fff; }
.b-renta { background: rgba(224,135,9,.9); color: #fff; }
.b-tipo  { background: rgba(0,0,0,.55); color: #fff; }
.b-new   { background: rgba(59,130,246,.9); color: #fff; }

.pcard-fav {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.9); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .9rem; transition: all .2s;
}
.pcard-fav:hover { background: #fff; color: #e53e3e; transform: scale(1.1); }

.pcard-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.pcard-price {
  font-size: 1.45rem; font-weight: 900; color: var(--green);
  margin-bottom: 6px; display: flex; align-items: baseline; gap: 6px;
}
.pcard-price small {
  font-size: .7rem; font-weight: 600; color: var(--muted);
  background: var(--off); padding: 2px 8px; border-radius: 20px;
}
.pcard-title {
  font-size: .98rem; font-weight: 700;
  line-height: 1.35; margin-bottom: 8px; color: var(--text);
}
.pcard-title a:hover { color: var(--green); }
.pcard-loc {
  display: flex; align-items: center; gap: 5px;
  font-size: .8rem; color: var(--muted); margin-bottom: 14px;
}
.pcard-loc i { color: var(--green); font-size: .72rem; }
.pcard-feats {
  display: flex; gap: 8px; flex-wrap: wrap;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.pcard-feat {
  display: flex; align-items: center; gap: 5px;
  font-size: .78rem; color: var(--muted); font-weight: 500;
}
.pcard-feat i { color: var(--green); font-size: .7rem; }

/* ==============================================
   STATS / WHY US — Split dark section
   ============================================== */
.why-section { display: grid; grid-template-columns: 1fr 1fr; }

.why-dark {
  background: var(--navy); padding: 100px 7%;
  display: flex; flex-direction: column; justify-content: center;
}
.why-dark .sec-label { color: rgba(113,177,0,.7); }
.why-dark .sec-title { color: #fff; }

.why-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 36px; margin-top: 48px;
}
.why-stat strong {
  font-size: 3.5rem; font-weight: 900;
  background: linear-gradient(135deg, var(--green), var(--green-l));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; display: block; margin-bottom: 6px;
}
.why-stat p { color: rgba(255,255,255,.5); font-size: .85rem; }

.why-light {
  background: var(--off); padding: 100px 7%;
  display: flex; flex-direction: column;
  justify-content: center; gap: 28px;
}
.why-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 24px; background: #fff; border-radius: var(--r);
  border: 1px solid var(--border);
  transition: all .3s var(--ease);
}
.why-item:hover {
  transform: translateX(6px);
  border-color: rgba(113,177,0,.3);
  box-shadow: var(--shadow);
}
.why-icon {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  background: var(--green-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--green); transition: all .3s;
}
.why-item:hover .why-icon { background: var(--green); color: #fff; }
.why-item-body h4 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.why-item-body p { font-size: .87rem; color: var(--muted); line-height: 1.6; }

/* ==============================================
   CTA BANNER
   ============================================== */
.cta-banner {
  position: relative; padding: 110px 5%; overflow: hidden;
  background: var(--navy-2);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(113,177,0,.2), transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(224,135,9,.15), transparent 60%);
}
.cta-inner { position: relative; z-index: 1; max-width: 680px; }
.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; color: #fff; margin-bottom: 14px; line-height: 1.1;
}
.cta-inner p {
  color: rgba(255,255,255,.6); font-size: 1rem;
  margin-bottom: 36px; line-height: 1.8;
}
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.btn-cta-1 {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--green); color: #fff;
  padding: 16px 36px; border-radius: 30px;
  font-weight: 700; font-size: .95rem;
  transition: all .25s var(--ease);
}
.btn-cta-1:hover {
  background: var(--green-l); color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(113,177,0,.4);
}

.btn-cta-2 {
  display: inline-flex; align-items: center; gap: 9px;
  background: #25d366; color: #fff;
  padding: 16px 36px; border-radius: 30px;
  font-weight: 700; font-size: .95rem;
  transition: all .25s var(--ease);
}
.btn-cta-2:hover {
  background: #20b858; color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(37,211,102,.35);
}

/* ==============================================
   BLOG + TESTIMONIALS
   ============================================== */
.bt-section { padding: 100px 5%; background: var(--white); }
.bt-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 72px; align-items: start; }

.bt-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--green); margin-bottom: 10px;
}
.bt-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 900; color: var(--text); margin-bottom: 36px;
  letter-spacing: -.02em;
}

/* Blog cards */
.blog-card {
  display: grid; grid-template-columns: 130px 1fr; gap: 18px;
  padding-bottom: 24px; margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.blog-card:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.blog-thumb {
  border-radius: var(--r); overflow: hidden; aspect-ratio: 4/3;
  transition: transform .35s var(--ease);
}
.blog-thumb:hover { transform: scale(1.04); }
.blog-meta {
  font-size: .72rem; color: var(--muted); margin-bottom: 6px;
  display: flex; gap: 8px; align-items: center;
}
.blog-meta span { color: var(--green); font-weight: 600; }
.blog-body h4 {
  font-size: .95rem; font-weight: 700; line-height: 1.4;
  margin-bottom: 8px; color: var(--text);
}
.blog-body h4 a:hover { color: var(--green); }
.blog-body p { font-size: .83rem; color: var(--muted); line-height: 1.7; margin-bottom: 10px; }
.blog-link {
  font-size: .8rem; font-weight: 700; color: var(--green);
  display: inline-flex; align-items: center; gap: 5px;
}
.blog-link:hover { gap: 9px; color: var(--green-l); }

/* Testimonials */
.testi-card {
  background: var(--off); border-radius: var(--r-lg);
  padding: 28px; margin-bottom: 18px;
  border: 1px solid var(--border); position: relative; overflow: hidden;
  transition: all .3s var(--ease);
}
.testi-card:last-child { margin-bottom: 0; }
.testi-card:hover {
  border-color: rgba(113,177,0,.3);
  box-shadow: var(--shadow); transform: translateY(-4px);
}
.testi-card::before {
  content: '"'; position: absolute; top: -10px; right: 20px;
  font-family: 'Playfair Display', serif; font-size: 7rem;
  font-weight: 700; color: rgba(113,177,0,.08); line-height: 1;
}
.testi-stars {
  color: #fbbf24; font-size: .78rem;
  display: flex; gap: 2px; margin-bottom: 12px;
}
.testi-text {
  font-size: .9rem; color: var(--text); line-height: 1.75;
  font-style: italic; margin-bottom: 18px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem; flex-shrink: 0;
}
.testi-name { font-size: .88rem; font-weight: 700; color: var(--text); }
.testi-loc { font-size: .75rem; color: var(--muted); }

/* ==============================================
   FOOTER
   ============================================== */
.footer { background: var(--navy); padding: 72px 5% 0; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 52px; padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand-name {
  font-size: 1.55rem; font-weight: 900; color: #fff; margin-bottom: 14px;
}
.footer-brand-name span { color: var(--green); }
.footer-brand-desc {
  font-size: .85rem; color: rgba(255,255,255,.45);
  line-height: 1.8; margin-bottom: 22px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-social-link {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: .85rem; transition: all .25s;
}
.footer-social-link:hover {
  background: var(--green); border-color: var(--green);
  color: #fff; transform: translateY(-3px);
}
.footer-col-title {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 18px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: .85rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-links a:hover { color: var(--green); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .85rem; color: rgba(255,255,255,.5); margin-bottom: 12px;
}
.footer-contact-item i,
.footer-contact-item svg { color: var(--green); fill: var(--green); font-size: .8rem; margin-top: 2px; flex-shrink: 0; width: 14px; height: 14px; }
.footer-bottom {
  padding: 20px 0; display: flex; justify-content: space-between;
  align-items: center; font-size: .78rem;
  color: rgba(255,255,255,.25); flex-wrap: wrap; gap: 10px;
}

/* ==============================================
   ANIMATIONS — REVEAL
   ============================================== */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ==============================================
   DARK MODE
   ============================================== */
body.dark {
  background: #0a1120; color: #e2e8f0;
  --text: #e2e8f0; --muted: #94a3b8;
  --border: #1e293b; --off: #111827; --white: #111827;
}
body.dark .pcard,
body.dark .why-item,
body.dark .testi-card {
  background: #1e293b; border-color: #2d3748;
}
body.dark .bt-section { background: #0a1120; }
body.dark .cats-section { background: #0a1120; border-color: #1e293b; }
body.dark .pcard-price small { background: #111827; }
body.dark .search-input-wrap { background: rgba(255,255,255,.08); }
body.dark .search-input-wrap input { color: #e2e8f0; }
body.dark .sec-title { color: #e2e8f0; }
body.dark .bt-title { color: #e2e8f0; }
body.dark .footer { background: #050b18; }

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .why-section { grid-template-columns: 1fr; }
  .bt-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .props-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .btn-wa-nav { display: none; }
  .hamburger { display: flex; }

  .nav-links {
    display: flex; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(6,12,26,.98);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 6px; opacity: 0; pointer-events: none;
    transition: opacity .3s; z-index: 999;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links a { font-size: 1.2rem; padding: 14px 30px; color: #fff; }
  .hamburger { z-index: 1001; }

  .hero-left { padding: 110px 6% 60px; }
  .hero-heading { font-size: 2.4rem; }
  .search-filters { grid-template-columns: 1fr 1fr; }
  .props-grid { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .blog-card { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .props-section { padding: 70px 5%; }
  .why-dark, .why-light { padding: 70px 7%; }
  .cta-banner { padding: 80px 5%; }
  .bt-section { padding: 70px 5%; }
  .footer { padding: 60px 5% 0; }
  .lang-btn span:first-child + span { display: none; }
}

@media (max-width: 480px) {
  .search-filters { grid-template-columns: 1fr; }
  .props-grid { gap: 16px; }
  .sec-header { flex-direction: column; align-items: flex-start; }
  .hero-stats { justify-content: center; }
  .cta-btns { flex-direction: column; }
  .btn-cta-1, .btn-cta-2 { justify-content: center; }
  .why-stats { grid-template-columns: 1fr; }
}

/* ==============================================
   AMENIDADES — checkboxes elegantes
   ============================================== */
.search-amenidades {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 12px;
}
.amenidad-check { display: flex; align-items: center; gap: 0; cursor: pointer; }
.amenidad-check input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.amenidad-check span {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 30px;
  border: 1.5px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.7); font-size: .82rem; font-weight: 600;
  cursor: pointer; transition: all .2s;
}
.amenidad-check input:checked + span {
  background: var(--green); border-color: var(--green); color: #fff;
}
.amenidad-check span:hover { border-color: var(--green); color: var(--green); }

/* Amenidad check en archive (fondo claro) */
.archive-filters .amenidad-check span {
  border-color: var(--border); color: var(--muted);
}
.archive-filters .amenidad-check input:checked + span {
  background: var(--green); border-color: var(--green); color: #fff;
}

/* ==============================================
   SINGLE PROPERTY — Page hero
   ============================================== */
.page-hero-single {
  position: relative; height: 55vh; min-height: 340px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,12,26,.9) 0%, rgba(6,12,26,.3) 60%, transparent 100%);
}
.page-hero-content {
  position: relative; z-index: 1;
  padding: 0 5% 40px; width: 100%;
  max-width: 1400px; margin: 0 auto;
}
.page-hero-title {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 900; color: #fff; margin: 8px 0;
  line-height: 1.2;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; color: rgba(255,255,255,.55);
  margin-bottom: 6px;
}
.breadcrumbs a { color: rgba(255,255,255,.55); }
.breadcrumbs a:hover { color: var(--green); }
.breadcrumbs .fas { font-size: .55rem; }
.breadcrumbs span { color: var(--green); }

/* Page hero interior (archive, page) */
.page-hero-inner { overflow: hidden; }
.page-hero-inner .breadcrumbs { color: rgba(255,255,255,.5); }
.page-hero-inner .breadcrumbs a { color: rgba(255,255,255,.5); }

/* Single property grid */
.single-property-wrap { padding: 48px 0 80px; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 5%; }

.single-property-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px; align-items: start;
}

.property-gallery { margin-bottom: 32px; }
.gallery-main {
  border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16/9;
  background: var(--off);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.property-main-info { margin-bottom: 28px; }
.property-op-badge {
  display: inline-flex; align-items: center;
  padding: 6px 16px; border-radius: 30px;
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; margin-bottom: 14px;
}
.op-venta { background: rgba(113,177,0,.12); color: var(--green); border: 1px solid rgba(113,177,0,.3); }
.op-renta { background: rgba(224,135,9,.12); color: var(--orange); border: 1px solid rgba(224,135,9,.3); }

.property-location-bar {
  display: flex; align-items: center; gap: 8px;
  font-size: .92rem; color: var(--muted); margin: 0 0 20px;
}
.property-location-bar i { color: var(--green); }

.property-stats-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.prop-stat {
  display: flex; align-items: center; gap: 8px;
  background: var(--off); border: 1px solid var(--border);
  padding: 10px 16px; border-radius: 10px;
  font-size: .87rem; font-weight: 600; color: var(--text);
}
.prop-stat i { color: var(--green); }
.prop-stat--amenidad { border-color: rgba(113,177,0,.3); background: var(--green-dim); }

.property-description h2,
.amenidades-section h2 {
  font-size: 1.3rem; font-weight: 800; color: var(--text);
  margin: 0 0 20px; letter-spacing: -.02em;
}
.prop-content { font-size: .95rem; line-height: 1.8; color: var(--text); }
.prop-content p { margin-bottom: 1rem; }

.amenidades-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px; list-style: none;
}
.amenidad-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; background: var(--off);
  border: 1px solid var(--border); border-radius: 8px;
  font-size: .85rem; color: var(--text); transition: all .2s;
}
.amenidad-item:hover { border-color: var(--green); background: var(--green-dim); }
.amenidad-item i { color: var(--green); }

/* Sidebar */
.property-sidebar { position: sticky; top: 88px; }
.sidebar-price-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
  box-shadow: var(--shadow); margin-bottom: 20px;
}
.sidebar-price {
  font-size: 2rem; font-weight: 900; color: var(--green);
  margin-bottom: 6px; display: flex; align-items: baseline; gap: 8px;
}
.sidebar-price small {
  font-size: .78rem; font-weight: 600; color: var(--muted);
  background: var(--off); padding: 3px 10px; border-radius: 20px;
}
.sidebar-price-label { font-size: .85rem; color: var(--muted); margin-bottom: 24px; }

.sidebar-actions { display: flex; flex-direction: column; gap: 12px; }
.btn-sidebar-wa {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #25d366; color: #fff; padding: 15px; border-radius: 12px;
  font-weight: 700; font-size: .95rem; transition: all .25s var(--ease);
}
.btn-sidebar-wa:hover { background: #20b858; color: #fff; transform: translateY(-2px); }
.btn-sidebar-contact {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--orange); color: #fff; padding: 15px; border-radius: 12px;
  font-weight: 700; font-size: .95rem; transition: all .25s var(--ease);
}
.btn-sidebar-contact:hover { background: #c97808; color: #fff; transform: translateY(-2px); }

.sidebar-info-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px; box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.sidebar-info-card h3 {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--muted); margin: 0 0 16px;
}
.info-item-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--border); font-size: .88rem;
}
.info-item-row:last-child { border-bottom: none; }
.info-item-row span:first-child { color: var(--muted); }
.info-item-row span:last-child { font-weight: 700; color: var(--text); }

/* ==============================================
   ARCHIVE FILTERS BAR
   ============================================== */
.archive-filters {
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
}
.archive-filters .sf-select,
.archive-filters input[type="text"] {
  background: var(--white); color: var(--text);
  border: 1.5px solid var(--border);
}
.archive-filters .sf-select:focus,
.archive-filters input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(113,177,0,.12);
}

.results-count { font-size: .9rem; color: var(--muted); margin-bottom: 28px; }
.results-count strong { color: var(--green); }

/* ==============================================
   WA PULSE ANIMATION
   ============================================== */
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(37,211,102,.45); }
  50% { box-shadow: 0 8px 28px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,.15); }
}
.wa-float.wa-pulse { animation: waPulse 2s ease-in-out 3; }

/* ==============================================
   DARK MODE — extras
   ============================================== */
body.dark .sidebar-price-card,
body.dark .sidebar-info-card,
body.dark .amenidad-item,
body.dark .prop-stat {
  background: #1e293b; border-color: #2d3748;
}
body.dark .page-hero-single { filter: brightness(.92); }

/* ==============================================
   RESPONSIVE — Single property
   ============================================== */
@media (max-width: 1024px) {
  .single-property-grid { grid-template-columns: 1fr; }
  .property-sidebar { position: static; }
}
@media (max-width: 768px) {
  .page-hero-single { height: 40vh; min-height: 260px; }
  .single-property-wrap { padding: 32px 0 60px; }
  .amenidades-grid { grid-template-columns: 1fr 1fr; }
  .archive-filters { flex-direction: column; align-items: stretch; }
  .archive-filters .sf-select,
  .archive-filters input { width: 100%; }
}

/* ===== FIX SINGLE PROPIEDAD ===== */

.single-property-wrap {
  background: var(--navy);
  padding: 60px 5% 90px;
}

.single-property-wrap .container {
  max-width: 1400px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

.single-property-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 360px !important;
  gap: 36px !important;
  align-items: start !important;
}

.property-main {
  min-width: 0 !important;
}

.property-sidebar {
  position: sticky !important;
  top: 100px !important;
}

/* Imagen principal */
.property-gallery {
  margin-bottom: 32px;
}

.gallery-main {
  border-radius: 20px;
  overflow: hidden;
  background: #111827;
}

.gallery-main img {
  width: 100% !important;
  height: 460px !important;
  object-fit: cover !important;
  display: block !important;
}

/* Descripción */
.property-description {
  margin-top: 36px;
}

.property-description h2 {
  color: #fff;
  margin-bottom: 20px;
}

.prop-content {
  color: rgba(255,255,255,.8);
  line-height: 1.8;
}

/* Galería dentro de la descripción */
.prop-content figure.wp-block-image {
  display: inline-block !important;
  width: calc(33.333% - 12px) !important;
  margin: 0 8px 16px 0 !important;
  vertical-align: top !important;
}

.prop-content figure.wp-block-image img,
.prop-content img {
  width: 100% !important;
  height: 220px !important;
  object-fit: cover !important;
  border-radius: 14px !important;
}

/* Sidebar */
.sidebar-price-card,
.sidebar-info-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 28px;
}

/* Responsive */
@media (max-width: 980px) {
  .single-property-grid {
    grid-template-columns: 1fr !important;
  }

  .property-sidebar {
    position: static !important;
  }

  .gallery-main img {
    height: 320px !important;
  }

  .prop-content figure.wp-block-image {
    width: calc(50% - 10px) !important;
  }
}

@media (max-width: 600px) {
  .prop-content figure.wp-block-image {
    width: 100% !important;
    margin-right: 0 !important;
  }
}

/* ===== GALERÍA SINGLE PROPIEDAD ===== */

.property-gallery {
  margin-bottom: 32px;
}

.gallery-main {
  border-radius: 22px;
  overflow: hidden;
  background: var(--off);
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow);
}

.gallery-main img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.property-thumb-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.property-thumb-btn {
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid transparent;
  background: transparent;
  padding: 0;
  aspect-ratio: 4 / 3;
}

.property-thumb-btn.active {
  border-color: var(--green);
}

.property-thumb-btn img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

@media (max-width: 768px) {
  .property-thumb-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== SINGLE PROPERTY IMAGE SLIDER ===== */

.property-slider {
  position: relative;
  margin-bottom: 32px;
}

.property-slider .gallery-main {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: var(--off);
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow);
}

.property-slider .gallery-main img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: opacity .2s ease;
}

.property-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  width: 48px;
  height: 48px;
  border-radius: 50%;

  background: rgba(255,255,255,.92);
  color: var(--text);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 2rem;
  line-height: 1;
  font-weight: 400;

  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  transition: all .2s ease;
}

.property-slider-arrow:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-50%) scale(1.06);
}

.property-slider-prev {
  left: 18px;
}

.property-slider-next {
  right: 18px;
}

.property-slider-counter {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 5;

  background: rgba(6,12,26,.78);
  color: #fff;

  border-radius: 999px;
  padding: 8px 14px;

  font-size: .85rem;
  font-weight: 700;

  backdrop-filter: blur(12px);
}

@media (max-width: 768px) {
  .property-slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }
}



/* ==============================================
   MOSAICO HERO — propiedades destacadas (imágenes)
   ============================================== */
.mosaic-item {
  display: block;
  color: #fff;
  text-decoration: none;
}
.mosaic-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.mosaic-item:hover .mosaic-img { transform: scale(1.06); }

.mosaic-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255,255,255,.35);
}

.mosaic-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top,
              rgba(6,12,26,.88) 0%,
              rgba(6,12,26,.20) 45%,
              transparent 70%);
}

.mosaic-title {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 46px;
  z-index: 2;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0,0,0,.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* En el bloque grande hay sitio para 2 líneas */
.mosaic-item.tall .mosaic-title {
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  bottom: 50px;
}

.mosaic-price,
.mosaic-tag { z-index: 2; }

/* ==============================================
   COMPARTIR PROPIEDAD — single
   ============================================== */
.share-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 22px 24px;
  margin-top: 16px;
}
body:not(.dark) .share-card {
  background: var(--off);
  border-color: var(--border);
}

.share-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.share-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: transform .2s var(--ease), filter .2s ease, box-shadow .2s ease;
}
.share-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  color: #fff;
}
.share-btn i { font-size: 1.05rem; }

/* Iconos circulares (WhatsApp y Facebook) */
.share-wa,
.share-fb {
  width: 44px;
}
.share-wa { background: #25d366; }
.share-fb { background: #1877f2; }

/* Copiar enlace — ocupa el resto de la fila */
.share-copy {
  flex: 1;
  min-width: 130px;
  background: var(--green);
  padding: 0 16px;
}
.share-copy.copied {
  background: var(--navy-2);
}

@media (max-width: 480px) {
  .share-copy-text { font-size: .85rem; }
}
