:root {
  --bg: #f5f6f8;
  --surface: #ffffff;
  --surface-2: #eef1f5;
  --text: #121722;
  --muted: #667085;
  --line: #e1e6ee;
  --dark: #0d1525;
  --dark-2: #151f32;
  --accent: #3a66f7;
  --accent-2: #6b8cff;
  --success: #0d8b5f;
  --radius: 26px;
  --shadow: 0 20px 55px rgba(20, 29, 47, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 246, 248, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(225, 230, 238, 0.7);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: white;
  background: var(--dark);
  font-family: "Manrope", sans-serif;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  color: #4b5565;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a:hover {
  color: var(--text);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-small {
  min-height: 40px;
  padding-inline: 16px;
}

.button-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 12px 26px rgba(58, 102, 247, 0.2);
}

.button-primary:hover {
  background: #2857ee;
}

.button-dark {
  color: #fff;
  background: var(--dark);
}

.button-light,
.button-ghost {
  background: #fff;
  border-color: var(--line);
}

.button-light:hover,
.button-ghost:hover {
  background: #f8fafc;
}

.text-link {
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 730px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(107,140,255,.14), transparent 36%),
    linear-gradient(180deg, #f9fafc 0%, #f5f6f8 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(35px);
  opacity: .28;
  pointer-events: none;
}

.hero-glow-one {
  width: 360px;
  height: 360px;
  right: 10%;
  top: 12%;
  background: #9ab2ff;
}

.hero-glow-two {
  width: 260px;
  height: 260px;
  left: -4%;
  bottom: 8%;
  background: #dde5ff;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 72px;
  align-items: center;
  padding: 100px 0 76px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.eyebrow.light {
  color: #9fb4ff;
}

.hero h1,
.section-heading h2,
.recommendation-section h2,
.checklist-section h2,
.final-cta h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(54px, 6vw, 82px);
  line-height: .98;
}

.hero h1 span {
  display: block;
  color: var(--accent);
}

.hero-lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: #596274;
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}

.hero-metrics {
  display: flex;
  gap: 36px;
  margin-top: 52px;
}

.metric {
  display: flex;
  flex-direction: column;
}

.metric strong {
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  line-height: 1;
}

.metric span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
}

.hero-panel {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 30px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.route {
  margin-top: 28px;
}

.route-stop {
  display: flex;
  align-items: center;
  gap: 15px;
}

.route-stop .dot {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  border: 4px solid #cdd6e8;
  border-radius: 50%;
  background: #fff;
}

.route-stop.active .dot {
  border-color: var(--accent);
}

.route-stop div {
  display: flex;
  flex-direction: column;
}

.route-stop strong {
  font-size: 15px;
}

.route-stop small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.route-line {
  width: 2px;
  height: 46px;
  margin: 6px 0 6px 6px;
  background: #dce2eb;
}

.panel-note {
  margin-top: 30px;
  padding: 18px;
  border-radius: 18px;
  background: #f3f6fb;
}

.panel-note span,
.panel-note strong {
  display: block;
}

.panel-note span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.panel-note strong {
  margin-top: 5px;
  font-size: 14px;
}

.section {
  padding: 90px 0;
}

.intro-section {
  padding-bottom: 24px;
}

.section-heading {
  max-width: 760px;
}

.section-heading.compact {
  max-width: none;
  margin-bottom: 34px;
}

.section-heading h2,
.recommendation-section h2,
.checklist-section h2,
.final-cta h2 {
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.05;
}

.section-heading p,
.checklist-section p,
.final-cta p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.cards-section {
  padding-top: 32px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.office-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(18,23,34,.04);
}

.office-card.featured {
  border-color: rgba(58, 102, 247, .28);
  box-shadow: 0 20px 50px rgba(58, 102, 247, .11);
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.badge {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: #516078;
  background: #eef2f7;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.badge-best,
.badge-value {
  color: #2157df;
  background: #e9efff;
}

.badge-premium {
  color: #6f4b0d;
  background: #fff3d4;
}

.badge-boutique {
  color: #7c3e65;
  background: #f9eaf4;
}

.office-card h3 {
  margin: 16px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -.03em;
}

.office-subtitle {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.rank {
  color: #cfd5df;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.price {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  padding: 22px;
  border-radius: 20px;
  background: #f6f8fb;
}

.price span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.price strong {
  margin-top: 3px;
  font-family: "Manrope", sans-serif;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -.04em;
}

.price small {
  margin-top: 8px;
  color: var(--muted);
}

.mini-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.mini-prices span {
  padding: 10px;
  border-radius: 12px;
  background: #f8fafc;
  color: var(--muted);
  font-size: 10px;
}

.mini-prices b {
  display: block;
  margin-top: 2px;
  color: var(--text);
  font-size: 12px;
}

.description {
  margin: 24px 0 0;
  color: #555f70;
  font-size: 14px;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: #3e4858;
  font-size: 13px;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 900;
}

.location-block {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.location-icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--accent);
  background: #edf2ff;
}

.location-block div {
  display: flex;
  flex-direction: column;
}

.location-block strong {
  font-size: 13px;
}

.location-block span:not(.location-icon) {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.comparison-section {
  background: #edf1f6;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(17, 26, 44, .04);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 850px;
}

th,
td {
  padding: 19px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

th {
  color: #6c7686;
  background: #f8fafc;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

td {
  color: #485263;
  font-size: 13px;
}

tr:last-child td {
  border-bottom: 0;
}

.yes {
  color: var(--success);
  font-weight: 800;
}

.recommendation-section {
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(80, 112, 230, .30), transparent 25%),
    var(--dark);
}

.recommendation-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
}

.recommendation-section p {
  color: #aeb9ca;
  font-size: 17px;
}

.recommendation-list {
  display: grid;
  gap: 12px;
}

.recommendation-list > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 2px 16px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
}

.recommendation-list span {
  grid-row: 1 / span 2;
  color: #7188d2;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.recommendation-list strong {
  font-size: 14px;
}

.recommendation-list small {
  color: #9fabc0;
}

.checklist-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
}

.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.checklist label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: #475266;
  font-size: 13px;
  cursor: pointer;
}

.checklist input {
  margin-top: 3px;
  accent-color: var(--accent);
}

.final-cta {
  padding-top: 20px;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  padding: 38px;
  border: 1px solid #dfe4ec;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.cta-box > div {
  max-width: 760px;
}

.cta-box h2 {
  font-size: clamp(30px, 3vw, 44px);
}

footer {
  padding: 52px 0;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 42px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.footer-inner strong {
  font-family: "Manrope", sans-serif;
}

.footer-inner p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-note {
  max-width: 580px;
  text-align: right;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero-grid,
  .recommendation-grid,
  .checklist-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 82px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .header-inner {
    min-height: 68px;
  }

  .site-header .button-small {
    display: none;
  }

  .hero-grid {
    padding: 64px 0 52px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 64px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions,
  .hero-metrics {
    flex-direction: column;
  }

  .hero-metrics {
    gap: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-panel,
  .office-card {
    padding: 22px;
  }

  .section {
    padding: 66px 0;
  }

  .section-heading h2,
  .recommendation-section h2,
  .checklist-section h2 {
    font-size: 36px;
  }

  .mini-prices,
  .checklist {
    grid-template-columns: 1fr;
  }

  .card-actions {
    align-items: stretch;
  }

  .card-actions .button {
    width: 100%;
  }

  .cta-box,
  .footer-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-box .button {
    width: 100%;
  }

  .footer-note {
    text-align: left;
  }
}


/* =========================
   MAPA COMPLETO DE SEDES
   ========================= */

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.map-section {
  padding-top: 56px;
}

.map-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 28px;
}

.map-heading > div:first-child {
  max-width: 770px;
}

.map-heading h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.map-heading p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.map-summary {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}

.map-summary > div {
  min-width: 122px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.map-summary strong,
.map-summary span {
  display: block;
}

.map-summary strong {
  font-family: "Manrope", sans-serif;
  font-size: 25px;
  line-height: 1;
}

.map-summary span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 700;
}

.map-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.map-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brand-filter {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #566173;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: .18s ease;
}

.brand-filter:hover,
.brand-filter.active {
  color: var(--text);
  border-color: #bac3d2;
  background: #f5f7fa;
}

.brand-filter.active {
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, .04);
}

.brand-filter-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand-color);
}

.brand-filter-count {
  color: #98a2b3;
  font-size: 10px;
}

.map-search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: min(100%, 370px);
}

.map-search {
  width: 100%;
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: 0;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 13px;
}

.map-search:focus {
  border-color: #9eafe8;
  box-shadow: 0 0 0 4px rgba(58, 102, 247, .08);
}

.map-reset {
  min-height: 44px;
  white-space: nowrap;
}

.map-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(18, 23, 34, .08);
}

.map-canvas-wrap {
  position: relative;
  min-width: 0;
}

.cowork-map {
  width: 100%;
  height: 660px;
  background: #e9edf3;
}

.map-loading {
  position: absolute;
  z-index: 500;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: calc(100% - 32px);
  padding: 10px 13px;
  border: 1px solid rgba(220, 226, 235, .9);
  border-radius: 12px;
  background: rgba(255,255,255,.92);
  color: #596477;
  box-shadow: 0 8px 24px rgba(23,31,46,.09);
  backdrop-filter: blur(12px);
  font-size: 11px;
  pointer-events: none;
}

.map-loading.done {
  opacity: .78;
}

.map-loading-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #3a66f7;
  animation: mapPulse 1.3s ease-in-out infinite;
}

.map-loading.done .map-loading-dot {
  animation: none;
  background: #0d8b5f;
}

@keyframes mapPulse {
  0%, 100% { opacity: .35; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.05); }
}

.map-side {
  min-width: 0;
  border-left: 1px solid var(--line);
  background: #fbfcfd;
}

.map-side-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.map-side-head span,
.map-side-head strong {
  display: block;
}

.map-side-head span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.map-side-head strong {
  margin-top: 3px;
  font-size: 14px;
}

.map-fit {
  min-height: 36px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  color: #4c5768;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.location-list {
  height: 604px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.location-list::-webkit-scrollbar {
  width: 8px;
}

.location-list::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: #cfd6e0;
  background-clip: padding-box;
}

.map-location {
  width: 100%;
  display: grid;
  grid-template-columns: 11px minmax(0, 1fr);
  gap: 11px;
  padding: 14px 16px;
  border: 0;
  border-bottom: 1px solid #edf0f4;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.map-location:hover,
.map-location:focus-visible {
  background: #f3f6fa;
  outline: 0;
}

.map-location-dot {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--brand-color);
}

.map-location-copy {
  min-width: 0;
}

.map-location-copy strong,
.map-location-copy span {
  display: block;
}

.map-location-copy strong {
  overflow: hidden;
  color: #202938;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.map-location-copy span {
  margin-top: 3px;
  color: #7a8494;
  font-size: 10px;
  line-height: 1.35;
}

.map-footnote {
  margin-top: 12px;
  color: #7b8595;
  font-size: 10px;
}

.map-pin-wrap {
  background: transparent;
  border: 0;
}

.map-pin {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 16%;
  color: #fff;
  background: var(--brand-color);
  box-shadow: 0 6px 15px rgba(19, 28, 44, .22);
  transform: rotate(-45deg);
}

.map-pin span {
  transform: rotate(45deg);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.leaflet-popup-content-wrapper {
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(23, 31, 46, .18);
}

.leaflet-popup-content {
  margin: 16px 16px 14px;
  min-width: 220px;
}

.cowork-popup .popup-brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #697386;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cowork-popup .popup-brand::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-color);
}

.cowork-popup h4 {
  margin: 8px 0 0;
  color: #172033;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.18;
}

.cowork-popup p {
  margin: 7px 0 0;
  color: #6d7787;
  font-size: 11px;
  line-height: 1.45;
}

.cowork-popup .popup-status {
  margin-top: 8px;
  font-size: 9px;
  font-weight: 700;
}

.cowork-popup .popup-status.resolved {
  color: #0d8b5f;
}

.cowork-popup .popup-status.approx {
  color: #9a6a16;
}

.cowork-popup .popup-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.cowork-popup a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  border-radius: 10px;
  color: #fff;
  background: #3a66f7;
  font-size: 10px;
  font-weight: 800;
}

.marker-cluster-small,
.marker-cluster-medium,
.marker-cluster-large {
  background: rgba(14, 21, 37, .16);
}

.marker-cluster-small div,
.marker-cluster-medium div,
.marker-cluster-large div {
  color: #fff;
  background: #121a2a;
  font-family: "Inter", sans-serif;
  font-weight: 800;
}

@media (max-width: 1050px) {
  .map-heading,
  .map-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .map-summary {
    align-self: flex-start;
  }

  .map-search-wrap {
    width: 100%;
    min-width: 0;
  }

  .map-shell {
    grid-template-columns: 1fr;
  }

  .map-side {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .cowork-map {
    height: 570px;
  }

  .location-list {
    height: 280px;
  }
}

@media (max-width: 680px) {
  .map-summary {
    width: 100%;
  }

  .map-summary > div {
    flex: 1 1 0;
    min-width: 0;
  }

  .map-toolbar {
    gap: 14px;
  }

  .map-search-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .map-search,
  .map-reset {
    width: 100%;
  }

  .cowork-map {
    height: 500px;
  }

  .map-loading {
    right: 12px;
    left: 12px;
    max-width: none;
  }
}


.map-locate {
  min-height: 44px;
  white-space: nowrap;
}

.map-locate.is-loading {
  opacity: .8;
  pointer-events: none;
}

.user-location-wrap {
  background: transparent;
  border: 0;
}

.user-location-pin {
  position: relative;
  width: 22px;
  height: 22px;
}

.user-location-pin::before,
.user-location-pin::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.user-location-pin::before {
  background: rgba(58, 102, 247, .20);
  transform: scale(1.9);
  animation: userPing 1.8s ease-out infinite;
}

.user-location-pin::after {
  background: #3a66f7;
  border: 3px solid #fff;
  box-shadow: 0 6px 15px rgba(19, 28, 44, .20);
}

@keyframes userPing {
  0% {
    opacity: .9;
    transform: scale(.9);
  }
  70% {
    opacity: 0;
    transform: scale(2.2);
  }
  100% {
    opacity: 0;
    transform: scale(2.2);
  }
}


.map-location-status {
  margin-top: 6px !important;
  font-size: 9px !important;
  font-weight: 800;
  letter-spacing: .02em;
}

.map-location-status.resolved {
  color: #0d8b5f !important;
}

.map-location-status.pending {
  color: #6f7b8c !important;
}

.map-location-status.failed {
  color: #a56513 !important;
}


/* =========================
   PLANES Y MEMBRESÍAS
   ========================= */

.memberships-section {
  background: #fff;
}

.memberships-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 30px;
}

.price-date {
  min-width: 210px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f8fafc;
}

.price-date span,
.price-date strong,
.price-date small {
  display: block;
}

.price-date span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.price-date strong {
  margin-top: 4px;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
}

.price-date small {
  margin-top: 5px;
  color: #7b8493;
  font-size: 9px;
}

.brand-jump {
  position: sticky;
  top: 86px;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 18px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
}

.brand-jump a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border-radius: 11px;
  color: #586274;
  font-size: 11px;
  font-weight: 800;
}

.brand-jump a:hover {
  background: #f2f5f8;
  color: var(--text);
}

.brand-dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  flex: 0 0 auto;
  border-radius: 50%;
}

.brand-dot.iza { background: #3458d4; }
.brand-dot.ofirent { background: #0f8f72; }
.brand-dot.ios { background: #7b4dc7; }
.brand-dot.wework { background: #111827; }
.brand-dot.nework { background: #b66a1e; }
.brand-dot.colony { background: #bf4f78; }

.brand-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.brand-overview article {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfcfd;
}

.brand-overview b,
.brand-overview small {
  display: block;
}

.brand-overview b {
  font-size: 12px;
}

.brand-overview small {
  color: var(--muted);
  font-size: 9px;
}

.brand-overview strong {
  color: #313b4c;
  font-size: 11px;
  text-align: right;
}

.brand-plans {
  display: grid;
  gap: 22px;
}

.brand-plan-card {
  scroll-margin-top: 150px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
}

.brand-plan-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 30px 24px;
  background: linear-gradient(180deg, #fbfcfd, #fff);
}

.brand-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #667085;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand-plan-head h3 {
  margin: 10px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.brand-plan-head p {
  max-width: 700px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.brand-best {
  flex: 0 0 auto;
  min-width: 180px;
  padding: 14px 16px;
  border: 1px solid #dfe5ed;
  border-radius: 15px;
  background: #fff;
  text-align: right;
}

.brand-best span,
.brand-best strong,
.brand-best small {
  display: block;
}

.brand-best span {
  color: #8a94a4;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.brand-best strong {
  margin-top: 3px;
  font-size: 13px;
}

.brand-best small {
  margin-top: 2px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
}

.plans-table-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.plans-table {
  min-width: 920px;
}

.plans-table th {
  padding: 13px 16px;
  font-size: 9px;
}

.plans-table td {
  padding: 14px 16px;
  font-size: 11px;
  line-height: 1.4;
}

.plans-table td:first-child {
  min-width: 180px;
}

.plans-table td:nth-child(3),
.plans-table td:nth-child(4) {
  white-space: nowrap;
}

.recommended-row {
  background: #f6f8ff;
}

.row-badge {
  display: inline-flex;
  margin-left: 7px;
  padding: 4px 7px;
  border-radius: 999px;
  color: #3159c9;
  background: #e9efff;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  vertical-align: middle;
}

.quote {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  color: #74633b;
  background: #f7f2e7;
  font-size: 9px;
  font-weight: 800;
}

.brand-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  padding: 15px 30px;
  color: #707a89;
  background: #fbfcfd;
  font-size: 9px;
}

.brand-notes a {
  margin-left: auto;
  color: var(--accent);
  font-weight: 800;
}

.price-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 30px 0;
}

.price-locations span {
  padding: 8px 10px;
  border-radius: 10px;
  color: #667085;
  background: #f3f5f8;
  font-size: 9px;
}

.price-locations b {
  color: var(--text);
}

.budget-strip {
  margin-top: 28px;
  padding: 30px;
  border-radius: 26px;
  color: #fff;
  background:
    radial-gradient(circle at 95% 5%, rgba(87, 118, 228, .28), transparent 30%),
    var(--dark);
}

.budget-strip-head h3 {
  margin: 3px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -.03em;
}

.budget-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.budget-grid > div {
  min-width: 0;
  padding: 17px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.04);
}

.budget-label,
.budget-grid strong,
.budget-grid b,
.budget-grid small {
  display: block;
}

.budget-label {
  color: #93a6e1;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.budget-grid strong {
  margin-top: 6px;
  font-size: 13px;
}

.budget-grid b {
  margin-top: 5px;
  color: #dce4ff;
  font-size: 12px;
}

.budget-grid small {
  margin-top: 6px;
  color: #9eabc0;
  font-size: 9px;
}

.data-disclaimer {
  margin: 14px 0 0;
  color: #8b94a2;
  font-size: 9px;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .memberships-header,
  .brand-plan-head {
    flex-direction: column;
    align-items: stretch;
  }

  .price-date,
  .brand-best {
    min-width: 0;
    text-align: left;
  }

  .brand-overview {
    grid-template-columns: repeat(2, 1fr);
  }

  .budget-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-notes a {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 680px) {
  .brand-jump {
    top: 76px;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .brand-jump a {
    flex: 0 0 auto;
  }

  .brand-overview,
  .budget-grid {
    grid-template-columns: 1fr;
  }

  .brand-plan-head,
  .budget-strip {
    padding: 22px;
  }

  .brand-plan-head h3 {
    font-size: 24px;
  }

  .brand-notes,
  .price-locations {
    padding-left: 20px;
    padding-right: 20px;
  }
}
