:root {
  --bg: #fbf8fa;
  --paper: #fff;
  --ink: #121218;
  --muted: #6f6871;
  --line: #f0e3ea;
  --soft: #fbeff5;
  --accent: #e60067;
  --accent-2: #a80048;
  --accent-soft: #fff0f5;
  --radius: 16px;
  --red: #e51027;
  --neon: #ff007f;
  --max: 1180px;
  --shadow: 0 10px 30px rgba(168, 0, 72, .07);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55
}

a {
  color: inherit;
  text-decoration: none
}

button,
input,
textarea,
select {
  font: inherit
}

.skip {
  position: absolute;
  left: -9999px
}

.skip:focus {
  left: 16px;
  top: 16px;
  background: #fff;
  padding: 10px 14px;
  z-index: 9999;
  border: 1px solid #000
}

.topbar {
  background: #111;
  color: #fff;
  font-size: 12px;
  letter-spacing: .05em
}

.topbar .inner {
  max-width: var(--max);
  margin: auto;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center
}

.topbar strong {
  color: #fff
}

.topbar span {
  color: #bdbdc6
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line)
}

.head {
  max-width: var(--max);
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 24px
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 230px
}

.mark {
  width: 42px;
  height: 42px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 900;
  position: relative
}

.mark:after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 999px;
  position: absolute;
  right: -4px;
  bottom: 4px
}

.brand b {
  display: block;
  font-size: 15px
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px
}

nav {
  display: flex;
  gap: 6px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap
}

nav a {
  padding: 9px 10px;
  border-radius: 9px;
  font-size: 13px;
  color: #333
}

nav a:hover,
nav a[aria-current="page"] {
  background: var(--soft)
}

.header-cta {
  border: 1px solid var(--ink);
  padding: 9px 13px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700
}

.mobile-btn {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px
}

main {
  min-height: 70vh
}

.shell {
  max-width: var(--max);
  margin: auto;
  padding: 22px 20px 70px
}

.breadcrumbs {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin: 6px 0 18px
}

.breadcrumbs a {
  text-decoration: underline;
  text-underline-offset: 2px
}

.seo-panel {
  background: #141418;
  color: #fff;
  border-radius: 14px;
  margin: 0 0 20px;
  overflow: hidden
}

.seo-panel summary {
  cursor: pointer;
  padding: 12px 16px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px
}

.seo-panel .seo-grid {
  padding: 0 16px 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px
}

.seo-item {
  background: #222229;
  border: 1px solid #35353f;
  border-radius: 10px;
  padding: 10px 12px
}

.seo-item b {
  display: block;
  font-size: 10px;
  color: #c9c9d0;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 3px
}

.seo-item span {
  font-size: 13px
}

.chips {
  display: flex;
  gap: 7px;
  flex-wrap: wrap
}

.chip {
  border: 1px solid #484854;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 11px;
  color: #ddd
}

.wf {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden
}

.wf+.wf {
  margin-top: 18px
}

.section {
  padding: 34px
}

.section.compact {
  padding: 24px
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #17171b;
  color: #fff;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase
}

.label.pink {
  background: var(--accent)
}

.eyebrow {
  font-size: 12px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em
}

.page-title {
  font-size: clamp(36px, 6vw, 72px);
  line-height: .98;
  margin: 10px 0 16px;
  letter-spacing: -.045em;
  max-width: 900px
}

.lead {
  font-size: clamp(17px, 2vw, 22px);
  color: #4d4d55;
  max-width: 820px
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: stretch
}

.hero .copy {
  padding: 44px
}

.hero .media {
  min-height: 430px
}

.media,
.ph {
  border: 1.5px dashed #a5a5ae;
  background: repeating-linear-gradient(135deg, #fafafa, #fafafa 12px, #f2f2f4 12px, #f2f2f4 24px);
  display: grid;
  place-items: center;
  color: #777;
  text-align: center;
  padding: 20px;
  position: relative
}

.media:before,
.ph:before {
  content: "IMG";
  position: absolute;
  top: 12px;
  left: 12px;
  border: 1px solid #aaa;
  border-radius: 6px;
  padding: 3px 6px;
  font-size: 10px;
  font-weight: 900;
  background: white
}

.media small,
.ph small {
  max-width: 270px
}

.btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--ink);
  padding: 11px 14px;
  border-radius: 10px;
  font-weight: 750;
  font-size: 13px;
  background: white
}

.btn.primary {
  background: var(--ink);
  color: white
}

.btn.accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff
}

.btn.ghost {
  border-color: var(--line);
  color: #444
}

.kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px
}

.kpi {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  background: #fff
}

.kpi b {
  display: block;
  font-size: 25px
}

.kpi span {
  font-size: 12px;
  color: var(--muted)
}

h2 {
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.06;
  letter-spacing: -.03em;
  margin: 8px 0 12px
}

h3 {
  font-size: 18px;
  line-height: 1.2;
  margin: 0 0 7px
}

p {
  margin: 0 0 12px
}

.muted {
  color: var(--muted)
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 22px
}

.section-head>div:first-child {
  max-width: 760px
}

.grid {
  display: grid;
  gap: 14px
}

.g2 {
  grid-template-columns: repeat(2, minmax(0, 1fr))
}

.g3 {
  grid-template-columns: repeat(3, minmax(0, 1fr))
}

.g4 {
  grid-template-columns: repeat(4, minmax(0, 1fr))
}

.card {
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 150px
}

.card .mini {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em
}

.card .card-link {
  margin-top: auto;
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px
}

.icon {
  width: 36px;
  height: 36px;
  border: 1px solid #888;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900
}

.icon.accent {
  border-color: var(--accent);
  color: var(--accent)
}

.feature {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 18px
}

.feature .ph {
  min-height: 300px;
  border-radius: 12px
}

.stack {
  display: grid;
  gap: 12px
}

.lineitem {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 11px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 14px
}

.lineitem:first-child {
  border-top: 0;
  padding-top: 0
}

.num {
  width: 30px;
  height: 30px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900
}

.map {
  min-height: 390px;
  border: 1.5px dashed #8d8d96;
  background: #f8f8fa;
  border-radius: 14px;
  position: relative;
  overflow: hidden
}

.map:before {
  content: "MAPA INTERACTIVO DE RUMIÑAHUI";
  position: absolute;
  inset: 14px auto auto 14px;
  background: #fff;
  border: 1px solid #aaa;
  padding: 5px 8px;
  font-size: 10px;
  font-weight: 900;
  border-radius: 6px
}

.map .pin {
  position: absolute;
  border: 1px solid #222;
  background: #fff;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .08)
}

.pin:nth-child(1) {
  left: 25%;
  top: 26%
}

.pin:nth-child(2) {
  left: 52%;
  top: 20%
}

.pin:nth-child(3) {
  left: 61%;
  top: 46%
}

.pin:nth-child(4) {
  left: 34%;
  top: 57%
}

.pin:nth-child(5) {
  left: 68%;
  top: 69%
}

.pin:nth-child(6) {
  left: 16%;
  top: 72%
}

.timeline {
  position: relative;
  padding-left: 28px
}

.timeline:before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  border-left: 1px solid #aaa
}

.titem {
  position: relative;
  padding: 0 0 22px
}

.titem:before {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--accent);
  left: -25px;
  top: 5px
}

.titem b {
  font-size: 13px
}

.titem p {
  color: var(--muted);
  font-size: 13px
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px
}

.table th,
.table td {
  border: 1px solid var(--line);
  padding: 11px;
  text-align: left;
  vertical-align: top
}

.table th {
  background: #f0f0f3
}

.table td:first-child {
  font-weight: 800
}

.notice {
  border-left: 4px solid var(--accent);
  padding: 14px 16px;
  background: var(--accent-soft);
  font-size: 13px
}

.source {
  font-size: 11px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 10px
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 15px 0
}

.faq summary {
  cursor: pointer;
  font-weight: 800
}

.faq p {
  color: var(--muted);
  padding-top: 8px
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px
}

.aside {
  position: sticky;
  top: 95px;
  align-self: start
}

.quote {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  font-size: 20px;
  font-weight: 750
}

.transcript {
  background: #f5f5f7;
  border-radius: 12px;
  padding: 18px;
  max-height: 310px;
  overflow: auto;
  font-size: 13px
}

.form {
  display: grid;
  gap: 12px
}

.field {
  display: grid;
  gap: 5px
}

.field label {
  font-size: 12px;
  font-weight: 800
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #b9b9c2;
  border-radius: 9px;
  padding: 11px;
  background: #fff
}

.field textarea {
  min-height: 110px;
  resize: vertical
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--muted)
}

.related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px
}

.footer {
  background: #17171b;
  color: #fff
}

.footer .inner {
  max-width: var(--max);
  margin: auto;
  padding: 44px 20px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 24px
}

.footer h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #c3c3cb;
  margin: 0 0 10px
}

.footer a {
  display: block;
  color: #eee;
  font-size: 13px;
  padding: 4px 0
}

.footer p {
  color: #aaa;
  font-size: 12px
}

.copyright {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 14px;
  font-size: 11px;
  color: #999;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap
}

.devnote {
  font-size: 11px;
  color: #666;
  background: #fff8db;
  border: 1px dashed #c5a64b;
  border-radius: 8px;
  padding: 9px 11px
}

.route-list {
  columns: 2;
  column-gap: 24px
}

.route-list a {
  display: block;
  padding: 5px 0;
  font-size: 12px;
  text-decoration: underline
}

@media(max-width:980px) {
  nav {
    display: none
  }

  .mobile-btn {
    display: block;
    margin-left: auto
  }

  .header-cta {
    display: none
  }

  .hero,
  .feature,
  .article-layout {
    grid-template-columns: 1fr
  }

  .hero .media {
    min-height: 320px
  }

  .g4 {
    grid-template-columns: repeat(2, 1fr)
  }

  .g3 {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .aside {
    position: static
  }

  .seo-panel .seo-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:640px) {
  .topbar .inner span:last-child {
    display: none
  }

  .head {
    padding: 10px 14px
  }

  .brand {
    min-width: 0
  }

  .brand small {
    display: none
  }

  .shell {
    padding: 14px 12px 45px
  }

  .hero .copy,
  .section {
    padding: 24px 20px
  }

  .page-title {
    font-size: 42px
  }

  .g2,
  .g3,
  .g4,
  .related,
  .kpis {
    grid-template-columns: 1fr
  }

  .section-head {
    display: block
  }

  .section-head .btn {
    margin-top: 12px
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .footer-grid>div:first-child {
    grid-column: 1/-1
  }

  .route-list {
    columns: 1
  }

  .map {
    min-height: 350px
  }

  .pin {
    transform: scale(.92)
  }
}

@media print {

  header,
  .topbar,
  .footer,
  .seo-panel {
    display: none
  }

  .shell {
    max-width: none
  }

  .wf {
    box-shadow: none;
    break-inside: avoid
  }
}


:root {
  --bg: #fbf8fa;
  --paper: #ffffff;
  --ink: #121218;
  --muted: #6f6871;
  --line: #f0e3ea;
  --soft: #fbeff5;
  --accent: #e60067;
  --accent-2: #a80048;
  --accent-soft: #fff0f5;
  --red: #e51027;
  --neon: #ff007f;
  --blue: #a80048;
  --orange: #e51027;
  --radius: 24px;
  --max: 1240px;
  --shadow: 0 24px 70px rgba(168, 0, 72, .09);
  --shadow-hover: 0 26px 70px rgba(230, 0, 103, .18);
}

* {
  box-sizing: border-box
}

body {
  background: radial-gradient(circle at 8% 3%, rgba(230, 0, 103, .06), transparent 24%), linear-gradient(180deg, #fff 0, #fdfafc 30%, #fbf8fa 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  letter-spacing: -.005em
}

body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image: linear-gradient(rgba(18, 18, 24, .018) 1px, transparent 1px), linear-gradient(90deg, rgba(18, 18, 24, .018) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, #000, transparent 48%);
  z-index: -1
}

.topbar {
  background: linear-gradient(90deg, #a80048 0%, #c8005a 30%, #e60067 70%, #e51027 100%);
  border: 0;
  letter-spacing: .08em
}

.topbar .inner {
  padding: 8px 28px
}

.topbar span {
  color: rgba(255, 255, 255, .8)
}

header {
  top: 0;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(230, 0, 103, .15);
  box-shadow: 0 8px 30px rgba(168, 0, 72, .05)
}

.head {
  padding: 14px 28px;
  max-width: var(--max)
}

.brand {
  min-width: 250px
}

.mark {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(145deg, #e60067, #a80048);
  box-shadow: 0 10px 25px rgba(230, 0, 103, .28);
  font-size: 15px
}

.mark:after {
  width: 9px;
  height: 9px;
  background: #e51027;
  border: 2px solid #fff;
  right: -3px;
  bottom: 3px
}

.brand b {
  font-size: 16px;
  letter-spacing: -.02em
}

.brand small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #8b7f88;
  margin-top: 2px
}

nav {
  gap: 2px
}

nav a {
  padding: 10px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #544c52;
  transition: .2s ease
}

nav a:hover,
nav a[aria-current="page"] {
  background: #fff0f5;
  color: var(--accent)
}

.header-cta {
  background: linear-gradient(135deg, #e51027, #e60067);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(230, 0, 103, .3);
  transition: .2s
}

.header-cta:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #ff007f, #e51027);
  box-shadow: 0 10px 28px rgba(255, 0, 127, .4)
}

.mobile-btn {
  border-color: #eadde6;
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 750
}

.shell {
  max-width: var(--max);
  padding: 30px 28px 90px
}

.breadcrumbs {
  margin: 2px 0 18px;
  font-size: 11px;
  font-weight: 650;
  color: #8a8087
}

.breadcrumbs a {
  text-decoration: none
}

.breadcrumbs a:hover {
  color: var(--accent)
}

.seo-panel {
  background: linear-gradient(145deg, #17151a, #252129);
  border: 1px solid #302b32;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(18, 18, 24, .07)
}

.seo-panel summary {
  padding: 13px 17px;
  color: #f7eaf1
}

.seo-item {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .08)
}

.chip {
  border-color: rgba(230, 0, 103, .2);
  background: rgba(230, 0, 103, .1);
  color: #ffd4e9
}

.wf {
  border: 1px solid rgba(168, 0, 72, .08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, .96)
}

.wf+.wf {
  margin-top: 24px
}

.section {
  padding: 48px
}

.section.compact {
  padding: 30px
}

.hero {
  grid-template-columns: 1.05fr .95fr;
  gap: 0;
  min-height: 575px;
  background: #fff
}

.hero .copy {
  padding: 70px 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2
}

.hero .copy:before {
  content: "";
  position: absolute;
  width: 86px;
  height: 6px;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--accent) 0 72%, var(--red) 72% 90%, var(--neon) 90%);
  top: 42px;
  left: 54px
}

.hero .media {
  min-height: 575px;
  border: 0;
  overflow: hidden;
  background: linear-gradient(145deg, #1b1520 0%, #5e1740 36%, #a80048 75%, #e60067 100%);
  position: relative
}

.hero .media:before {
  content: "FOTO PRINCIPAL";
  top: 24px;
  left: 24px;
  background: rgba(255, 255, 255, .9);
  border: 0;
  color: #a80048;
  border-radius: 999px;
  padding: 6px 10px;
  letter-spacing: .08em
}

.hero .media:after {
  content: "SM";
  position: absolute;
  right: -4%;
  bottom: -12%;
  font-size: clamp(180px, 25vw, 360px);
  font-weight: 950;
  line-height: .72;
  color: rgba(255, 255, 255, .085);
  letter-spacing: -.08em
}

.hero .media>div {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 320px;
  text-align: left;
  align-self: end;
  justify-self: start;
  margin: 0 0 42px 38px;
  padding: 14px 18px;
  border-left: 3px solid var(--red);
  background: rgba(15, 8, 13, .28);
  backdrop-filter: blur(10px);
  border-radius: 0 14px 14px 0
}

.hero .media small {
  color: rgba(255, 255, 255, .72)
}

.label {
  background: #19161a;
  border-radius: 999px;
  padding: 5px 10px
}

.label.pink {
  background: linear-gradient(90deg, #a80048, #e60067)
}

.eyebrow {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: .12em
}

.page-title {
  font-size: clamp(46px, 6.1vw, 84px);
  line-height: .92;
  letter-spacing: -.06em;
  margin: 16px 0 22px;
  font-weight: 850
}

.lead {
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
  color: #5f565d;
  max-width: 760px
}

h2 {
  font-size: clamp(31px, 4.2vw, 50px);
  font-weight: 820;
  letter-spacing: -.045em;
  line-height: 1.02
}

h3 {
  font-size: 19px;
  letter-spacing: -.025em
}

p {
  line-height: 1.7
}

.btns {
  margin-top: 30px;
  gap: 12px
}

.btn {
  border-radius: 999px;
  padding: 12px 17px;
  border: 1px solid #e6dce3;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
  transition: .2s ease
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(41, 20, 33, .08)
}

.btn.primary {
  background: #171419;
  border-color: #171419
}

.btn.accent {
  background: linear-gradient(90deg, #a80048, #e60067);
  border: 0;
  box-shadow: 0 10px 24px rgba(230, 0, 103, .25)
}

.btn.ghost {
  background: #fff;
  color: #5c5058
}

.section-head {
  margin-bottom: 28px
}

.section-head .muted {
  font-size: 15px;
  max-width: 700px
}

.grid {
  gap: 18px
}

.card {
  border: 1px solid #eee5eb;
  border-radius: 18px;
  padding: 24px;
  min-height: 185px;
  background: linear-gradient(180deg, #fff, #fefcfd);
  box-shadow: 0 9px 28px rgba(35, 16, 28, .035);
  position: relative;
  overflow: hidden;
  transition: .25s ease
}

.card:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--accent) 60%, var(--neon) 100%);
  opacity: .2
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: #f1c6de
}

.card:hover:before {
  opacity: 1
}

.card .mini {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  color: #a80048
}

.card h3 {
  font-size: 21px
}

.card .card-link {
  text-decoration: none;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: .04em
}

.card .card-link:after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-left: 8px
}

.icon {
  border: 0;
  background: #fff0f7;
  color: var(--accent);
  border-radius: 12px
}

.icon.accent {
  border: 0;
  background: #fff0f7
}

.kpis {
  gap: 16px
}

.kpi {
  border: 1px solid #eee5eb;
  border-radius: 18px;
  padding: 20px
}

.kpi b {
  font-size: 30px;
  color: var(--accent)
}

.feature {
  gap: 28px
}

.feature .ph {
  min-height: 365px;
  border-radius: 20px
}

.ph {
  min-height: 280px;
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  place-items: stretch;
  background: linear-gradient(145deg, #2a2028, #6c1b49 55%, #ca1a75);
  position: relative;
  color: #fff
}

.ph:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 73% 28%, rgba(255, 255, 255, .18), transparent 23%), linear-gradient(120deg, transparent 55%, rgba(255, 255, 255, .06) 55% 56%, transparent 56%);
  border: 0;
  padding: 0
}

.ph:after {
  content: "SM";
  position: absolute;
  right: -12px;
  bottom: -35px;
  font-size: 150px;
  line-height: 1;
  font-weight: 950;
  color: rgba(255, 255, 255, .07);
  letter-spacing: -.08em
}

.ph .visual-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: #712049;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
  z-index: 2
}

.ph .visual-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  background: rgba(14, 7, 12, .28);
  border-left: 3px solid var(--orange);
  backdrop-filter: blur(8px);
  padding: 13px 15px;
  border-radius: 0 12px 12px 0
}

.ph .visual-copy b {
  display: block;
  font-size: 13px
}

.ph .visual-copy small {
  display: block;
  color: rgba(255, 255, 255, .72);
  margin-top: 2px
}

.media,
.ph {
  border: 0
}

.media:before,
.ph:before {
  border: 0
}

.lineitem {
  border-top-color: #eee6eb;
  padding-top: 18px
}

.num {
  border: 0;
  background: #fff0f7;
  color: var(--accent)
}

.map {
  min-height: 440px;
  border: 1px solid #eee2e9;
  background: radial-gradient(circle at 22% 28%, rgba(216, 27, 125, .12), transparent 24%), radial-gradient(circle at 72% 68%, rgba(36, 66, 143, .09), transparent 22%), #fbf8fa;
  border-radius: 22px
}

.map:after {
  content: "";
  position: absolute;
  inset: 54px 12% 12%;
  border-radius: 50% 43% 58% 38%;
  border: 22px solid rgba(216, 27, 125, .045);
  transform: rotate(-10deg)
}

.map:before {
  background: #19161a;
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 7px 11px;
  letter-spacing: .08em
}

.map .pin {
  border: 0;
  background: #fff;
  padding: 9px 12px;
  color: #4f3444;
  box-shadow: 0 10px 24px rgba(53, 28, 44, .11);
  z-index: 2
}

.map .pin:hover {
  background: var(--accent);
  color: #fff
}

.timeline:before {
  border-color: #f0e3ea
}

.titem:before {
  background: var(--accent);
  border: 3px solid #ffe5f0;
  box-shadow: 0 0 0 3px var(--accent)
}

.table {
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid #eee3e9;
  border-radius: 16px
}

.table th,
.table td {
  border: 0;
  border-bottom: 1px solid #eee6eb;
  padding: 15px
}

.table th {
  background: #fbf5f8;
  color: #a80048;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em
}

.table tr:last-child td {
  border-bottom: 0
}

.notice {
  border: 0;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(230, 0, 103, .08), #fff8fb);
  box-shadow: inset 4px 0 0 var(--accent)
}

.source {
  border-top-color: #eee4ea
}

.quote {
  border: 0;
  border-radius: 18px;
  background: #fff2f8;
  color: #a80048;
  padding: 28px
}

.transcript {
  background: #faf6f8
}

.field input,
.field textarea,
.field select {
  border-color: #e6dae2;
  border-radius: 13px;
  padding: 13px 14px
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 3px solid rgba(230, 0, 103, .12);
  border-color: var(--accent)
}

.related {
  gap: 18px
}

.footer {
  background: radial-gradient(circle at 10% 0%, rgba(229, 16, 39, .22) 0%, transparent 45%), radial-gradient(circle at 90% 100%, rgba(168, 0, 72, .28) 0%, transparent 50%), #11090d !important;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(230, 0, 103, .18) !important
}

.footer:before {
  content: "SM";
  position: absolute;
  right: -5%;
  bottom: -20%;
  font-size: 330px;
  line-height: .8;
  font-weight: 950;
  color: rgba(255, 255, 255, .03);
  letter-spacing: -.08em
}

.footer .inner {
  padding: 58px 28px;
  position: relative;
  z-index: 2
}

.footer-grid {
  gap: 30px
}

.footer h4 {
  color: #ff80b5 !important
}

.footer a {
  color: #e8dbe2 !important
}

.footer a:hover {
  color: #ff007f !important
}

.footer .mark {
  background: linear-gradient(145deg, #e60067, #a80048) !important;
  border: 0 !important;
  box-shadow: 0 10px 25px rgba(230, 0, 103, .35) !important
}

.copyright {
  border-top-color: rgba(230, 0, 103, .15) !important;
  color: #bcaab4 !important
}

.route-list a {
  border-color: #eadfe6 !important;
  border-radius: 12px !important;
  background: #fff !important
}

.route-list a:hover {
  border-color: rgba(230, 0, 103, .3) !important;
  background: #fff4f9 !important
}

@media (max-width:980px) {
  .head {
    padding: 12px 18px
  }

  .shell {
    padding: 24px 18px 70px
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto
  }

  .hero .copy {
    padding: 64px 34px
  }

  .hero .copy:before {
    left: 34px;
    top: 38px
  }

  .hero .media {
    min-height: 440px
  }

  .g4 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .footer-grid {
    grid-template-columns: 1.5fr repeat(2, 1fr)
  }
}

@media (max-width:760px) {
  .topbar .inner span:last-child {
    display: none
  }

  .section {
    padding: 32px 22px
  }

  .hero .copy {
    padding: 58px 24px 42px
  }

  .hero .copy:before {
    left: 24px
  }

  .hero .media {
    min-height: 360px
  }

  .page-title {
    font-size: clamp(44px, 13vw, 64px)
  }

  .g2,
  .g3,
  .g4,
  .feature,
  .article-layout,
  .seo-panel .seo-grid {
    grid-template-columns: 1fr
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column
  }

  .kpis {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .footer-grid>div:first-child {
    grid-column: 1/-1
  }

  .related {
    grid-template-columns: 1fr
  }

  .brand {
    min-width: 0
  }

  .head nav,
  .header-cta {
    display: none
  }

  .mobile-btn {
    display: block;
    margin-left: auto
  }
}

@media (max-width:480px) {
  .shell {
    padding: 18px 12px 60px
  }

  .section {
    padding: 28px 18px
  }

  .hero .copy {
    padding: 55px 18px 36px
  }

  .hero .copy:before {
    left: 18px
  }

  .hero .media {
    min-height: 320px
  }

  .topbar .inner {
    padding: 7px 14px
  }

  .topbar .inner span {
    display: none
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer .inner {
    padding: 46px 20px
  }

  .kpis {
    grid-template-columns: 1fr 1fr
  }

  .page-title {
    font-size: 44px
  }
}


/* Correcciones del PDF. Se conservan la arquitectura y los tokens del frame. */
[hidden] {
  display: none !important
}

.seo-panel,
.devnote {
  display: none
}

.head {
  gap: 18px
}

.head nav {
  min-width: 0
}

.head .brand {
  min-width: 228px
}

.header-cta {
  white-space: nowrap
}

.home-page .page-title {
  font-size: clamp(44px, 5.7vw, 76px);
  line-height: .98
}

.home-page .hero .lead {
  font-size: 18px;
  line-height: 1.75
}

.home-page .hero .copy {
  padding: 68px 44px 48px
}

.home-page .hero .copy:before {
  left: 44px
}

.home-page .section-head .muted {
  font-size: 16px;
  line-height: 1.75
}

.home-page .section-head:has(.btn)>div:first-child {
  max-width: 76%
}

.home-page .section-head>.btn {
  flex-shrink: 0
}

.home-page .card {
  gap: 16px
}

.home-page .card p {
  font-size: 15px;
  line-height: 1.8;
  margin: 0
}

.home-page .card-link {
  font-size: 12px;
  line-height: 1.55;
  color: var(--accent-2)
}

.home-page .card-link:after {
  display: none
}

.home-page .bio-card .card-link,
.home-page .issue-card .card-link,
.home-page .news-card .card-link {
  padding-top: 8px
}

.home-page .section-head .eyebrow:empty {
  display: none
}

.pdf-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background: var(--accent-soft);
  color: var(--accent-2);
  flex-shrink: 0
}

.pdf-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round
}

.bio-card:nth-child(2) .pdf-icon {
  background: #fff4e7;
  color: #995000
}

.home-page .hero .media {
  isolation: isolate
}

.portrait-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none
}

.portrait-placeholder svg {
  width: 72%;
  height: auto;
  color: rgba(255, 255, 255, .15)
}

.home-page .hero .media>div.portrait-placeholder {
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  max-width: none;
  align-self: stretch;
  justify-self: stretch;
  backdrop-filter: none
}

.home-page .hero .media>div.portrait-caption {
  z-index: 3;
  margin: 0 20px 32px;
  padding: 14px 18px
}

.proposal-card {
  padding: 0 !important;
  gap: 0 !important
}

.proposal-card .proposal-copy {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1
}

.proposal-card .proposal-copy .card-link {
  margin-top: auto;
  padding-top: 8px
}

.proposal-visual {
  height: 174px;
  position: relative;
  background: linear-gradient(130deg, #fff0f5, #fbeff5);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line)
}

.proposal-visual:before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(230, 0, 103, .12);
  border-radius: 50%
}

.proposal-visual .art-number {
  position: absolute;
  right: 16px;
  bottom: 6px;
  font-size: 66px;
  line-height: 1;
  font-weight: 900;
  color: rgba(230, 0, 103, .08);
  letter-spacing: -.06em
}

.proposal-visual svg {
  width: 136px;
  height: 116px;
  position: relative;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round
}

.proposal-visual .blue {
  stroke: var(--accent-2)
}

.proposal-visual .orange {
  stroke: var(--red)
}

.proposal-card:nth-child(3n+2) .proposal-visual {
  background: linear-gradient(130deg, #fff5f8, #fdf0f4)
}

.proposal-card:nth-child(3n) .proposal-visual {
  background: linear-gradient(130deg, #fff0f5, #fae6ee)
}

.territory-map {
  position: relative;
  min-height: 560px;
  border: 1px solid #eee2e9;
  border-radius: 22px;
  overflow: hidden;
  background: #faf5f9;
  isolation: isolate
}

.map-heading {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  right: 64px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
  background: #19161a;
  padding: 9px 13px;
  border-radius: 20px;
  width: fit-content;
  max-width: calc(100% - 84px)
}

.map-stage {
  position: absolute;
  inset: 0 0 136px;
  overflow: hidden
}

.map-drawing {
  position: absolute;
  inset: 0;
  transform: scale(var(--zoom, 1));
  transition: transform .2s;
  transform-origin: center
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#e7dbe444 1px, transparent 1px), linear-gradient(90deg, #e7dbe444 1px, transparent 1px);
  background-size: 28px 28px
}

.map-lines {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  opacity: .65
}

.territory-pin {
  position: absolute;
  z-index: 2;
  transform: translate(-50%, -50%);
  font: inherit;
  font-size: 11px;
  line-height: 1.2;
  max-width: 150px;
  background: #fff;
  border: 1px solid #e6ccdc;
  color: #543248;
  box-shadow: 0 6px 20px #48243910;
  padding: 10px 12px;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px
}

.territory-pin:before {
  content: "";
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  background: var(--accent);
  border: 3px solid #ffe5f0;
  border-radius: 50%;
  box-sizing: content-box
}

.territory-pin[aria-pressed="true"] {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  box-shadow: 0 7px 22px rgba(230, 0, 103, .35)
}

.map-controls {
  position: absolute;
  right: 12px;
  top: 14px;
  z-index: 4;
  display: grid;
  gap: 7px
}

.map-controls button {
  width: 36px;
  height: 36px;
  background: white;
  border: 1px solid #e7d8e1;
  border-radius: 11px;
  color: var(--ink);
  font-size: 19px;
  cursor: pointer
}

.map-controls button:disabled {
  opacity: .4;
  cursor: default
}

.map-info {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  border: 1px solid #ebd8e4;
  border-radius: 15px;
  background: rgba(255, 255, 255, .96);
  padding: 16px;
  box-shadow: 0 7px 22px #48243908
}

.map-info strong {
  font-size: 17px;
  display: block;
  margin-bottom: 6px
}

.map-info p {
  font-size: 12px;
  line-height: 1.5;
  margin: 0 0 8px;
  color: var(--muted)
}

.map-info a {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-2)
}

.map-legend {
  position: absolute;
  left: 18px;
  bottom: 151px;
  font-size: 10px;
  color: #756070;
  z-index: 3;
  background: #faf5f9e8;
  padding: 4px 7px;
  border-radius: 5px
}

.territory-list .lineitem {
  grid-template-columns: 30px 1fr
}

.territory-list h3 {
  font-size: 19px
}

.territory-list p {
  font-size: 13px;
  margin-bottom: 5px
}

.territory-list .card-link {
  font-size: 12px;
  color: var(--accent-2);
  font-weight: 750
}

.carousel-controls {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 18px;
  align-items: center
}

.carousel-controls button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid #eadce5;
  color: var(--accent-2);
  cursor: pointer;
  font-size: 21px
}

.carousel-controls button:disabled {
  opacity: .35;
  cursor: default
}

.carousel-controls .carousel-status {
  margin-right: auto;
  font-size: 12px;
  color: var(--muted)
}

.conversation-card {
  scroll-snap-align: start;
  position: relative;
  min-height: 315px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, #24101b, #541031 55%, #a80048);
  margin: 0
}

.conversation-card:nth-child(2n) {
  background: linear-gradient(145deg, #200d18, #4a0c29 55%, #c8005a)
}

.conversation-card:after {
  content: "SM";
  position: absolute;
  right: -8px;
  bottom: 35px;
  color: #ffffff09;
  font-size: 130px;
  font-weight: 950;
  letter-spacing: -.08em;
  line-height: 1
}

.conversation-card .camera-outline {
  position: absolute;
  top: 60px;
  left: calc(50% - 35px);
  width: 70px;
  height: 70px;
  color: #ffffff35;
  fill: none;
  stroke: currentColor;
  stroke-width: 1
}

.asset-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #ffffffed;
  color: #a80048;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
  z-index: 2
}

.conversation-card figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 22px;
  z-index: 2;
  border-left: 3px solid var(--red);
  background: #14050d77;
  padding: 13px 15px;
  color: white;
  border-radius: 0 12px 12px 0
}

.conversation-card figcaption b {
  font-size: 15px;
  display: block
}

.conversation-card figcaption span {
  font-size: 12px;
  color: #fffbeccc
}

.home-page .faq p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 950px
}

.home-page .faq summary {
  font-size: 17px;
  line-height: 1.55;
  padding-right: 12px
}

.home-page .faq details {
  padding: 20px 0
}

.home-page .last-cta .muted:empty {
  display: none
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px
}

.skip {
  scroll-margin-top: 100px
}

.skip:focus {
  position: fixed;
  border-radius: 10px
}

.home-page section[id] {
  scroll-margin-top: 110px
}

@media(min-width:981px) and (max-width:1150px) {
  .head {
    gap: 10px
  }

  .head .brand {
    min-width: 200px
  }

  .head nav a {
    padding: 9px 7px
  }

  .header-cta {
    padding: 11px 12px
  }
}

@media(max-width:980px) {
  .home-page .hero .copy {
    padding: 65px 34px 42px
  }

  .home-page .hero .copy:before {
    left: 34px
  }

  .home-page .hero .media {
    min-height: 420px
  }

  .home-page .section-head:has(.btn)>div:first-child {
    max-width: 100%
  }

  .territory-map {
    min-height: 490px
  }

  .territory-carousel {
    grid-auto-columns: calc((100% - 18px)/2)
  }

  .home-page .section-head {
    align-items: flex-start;
    flex-wrap: wrap
  }

  .home-page .hero .page-title {
    max-width: 750px
  }
}

@media(max-width:760px) {
  .home-page .hero .copy {
    padding: 60px 24px 36px
  }

  .home-page .hero .copy:before {
    left: 24px
  }

  .home-page .hero .lead {
    font-size: 16px
  }

  .home-page .hero .media {
    min-height: 370px
  }

  .home-page .section-head .muted {
    font-size: 15px
  }

  .territory-carousel {
    grid-auto-columns: 84%
  }

  .territory-map {
    min-height: 480px
  }

  .territory-pin {
    font-size: 10px;
    padding: 9px 7px;
    gap: 3px;
    max-width: 124px
  }

  .home-page .section-head>.btn {
    align-self: flex-start
  }

  .home-page .faq p {
    font-size: 15px
  }

  .home-page .page-title {
    font-size: clamp(42px, 10.5vw, 64px)
  }

  .home-page .hero .media>div.portrait-caption {
    margin-left: 14px;
    margin-bottom: 20px
  }

  .home-page .card p {
    font-size: 15px
  }

  .home-page .section-head {
    display: flex
  }
}

@media(max-width:400px) {
  .home-page .hero .copy {
    padding-left: 18px;
    padding-right: 18px
  }

  .home-page .page-title {
    font-size: 40px
  }

  .home-page .hero .copy:before {
    left: 18px
  }

  .home-page .hero .btns {
    gap: 9px
  }

  .home-page .hero .btn {
    font-size: 11px;
    padding: 12px 13px
  }

  .head .brand {
    min-width: 0
  }

  .map-heading {
    font-size: 9px;
    left: 12px;
    max-width: calc(100% - 65px)
  }

  .territory-pin {
    font-size: 9px;
    max-width: 110px
  }

  .home-page .section {
    padding-left: 18px;
    padding-right: 18px
  }
}

@media(prefers-reduced-motion:reduce) {

  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important
  }
}