@charset "UTF-8";
:root {
  --bg-1: #0D1F2D;
  --bg-2: #122536;
  --bg-3: #1A3347;
  --bg-4: #1F3D57;
  --border-dark: rgba(255,255,255,0.08);
  --text-1: #FFFFFF;
  --text-2: rgba(255,255,255,0.75);
  --text-3: rgba(255,255,255,0.45);
  --blue-950: #040F1C;
  --blue-900: #0A2846;
  --blue-800: #0F3D6B;
  --blue-700: #145290;
  --blue-600: #1A68B5;
  --blue-500: #2080D0;
  --blue-400: #4DA3E0;
  --blue-100: #E0F2FD;
  --blue-50: #F0F8FF;
  --teal-900: #0D3330;
  --teal-800: #164F4A;
  --teal-700: #1E6B64;
  --teal-600: #27877E;
  --teal-500: #2FA398;
  --teal-400: #50BDB4;
  --teal-300: #7DD4CC;
  --teal-100: #D6F5F2;
  --teal-50: #EDFAF9;
  --earth-700: #7A4614;
  --earth-600: #9A5C1E;
  --earth-500: #BC7530;
  --earth-100: #FAF0E2;
  --earth-50: #FDFAF5;
  --neutral-950: #080C10;
  --neutral-900: #111823;
  --neutral-800: #1E2A38;
  --neutral-700: #2E3D50;
  --neutral-600: #445566;
  --neutral-500: #607080;
  --neutral-400: #8A9BAC;
  --neutral-300: #B8C6D2;
  --neutral-200: #D8E4EC;
  --neutral-100: #EDF3F7;
  --neutral-50: #F6F9FB;
  --af-cyan: #00CCEE;
  --af-cyan-dark: #0099BB;
  --af-cyan-light: #E0F9FF;
  --font-body: 'europa', sans-serif;
  --nav-width: 220px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-1);
  color: var(--text-1);
  display: flex;
  min-height: 100vh;
}

.pres-nav {
  width: var(--nav-width);
  min-height: 100vh;
  background: var(--bg-3);
  border-right: 1px solid var(--border-dark);
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 0;
  z-index: 100;
  box-shadow: 2px 0 12px rgba(10, 40, 70, 0.06);
}
.pres-nav__logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.pres-nav__logo-aguas {
  display: flex;
  justify-content: center;
  padding: 0 1.25rem 1rem;
}
.pres-nav__logo-aguas img {
  height: 30px;
  width: auto;
}
.pres-nav__logo-mmi {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem 1rem;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.pres-nav__logo-mmi img {
  height: 30px;
  width: auto;
}
.pres-nav__logo-mmi span {
  font-size: 0.62rem;
  color: var(--text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pres-nav__list {
  list-style: none;
  padding-top: 0.5rem;
}
.pres-nav__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.25rem;
  color: var(--text-3);
  text-decoration: none;
  font-size: 0.82rem;
  transition: all 150ms ease;
  border-left: 3px solid transparent;
}
.pres-nav__item i {
  font-size: 0.85rem;
  flex-shrink: 0;
}
.pres-nav__item:hover {
  color: var(--text-1);
  background: rgba(255, 255, 255, 0.05);
}
.pres-nav__item.is-active {
  color: var(--af-cyan);
  border-left-color: var(--af-cyan);
  background: rgba(0, 204, 238, 0.08);
  font-weight: 600;
}

.pres-main {
  flex: 1;
  margin-left: 15vw;
  margin-right: 5vw;
}

.pres-section {
  padding: 5rem 3rem;
  background: var(--bg-1);
}
.pres-section--alt {
  background: var(--bg-2);
}
.pres-section--dark {
  background: var(--bg-2);
}
.pres-section--cta {
  background: var(--bg-1);
}
.pres-section__eyebrow {
  color: var(--af-cyan) !important;
}
.pres-section__title {
  color: var(--text-1) !important;
}
.pres-section__desc {
  color: var(--text-2) !important;
}
.pres-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pres-section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.pres-section__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--af-cyan-dark);
  margin-bottom: 0.75rem;
}
.pres-section__eyebrow--light {
  color: var(--af-cyan);
}
.pres-section__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--blue-900);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.pres-section__title--light {
  color: #ffffff;
}
.pres-section__desc {
  font-size: 1rem;
  color: var(--neutral-600);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}
.pres-section__desc--light {
  color: rgba(255, 255, 255, 0.7);
}

.pres-section--hero {
  background: var(--bg-1);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}
.pres-section--hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 204, 238, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.pres-section--hero::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: 10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 163, 152, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.pres-hero {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.pres-hero__eyebrow {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.pres-hero__title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.pres-hero__title span {
  color: var(--af-cyan);
}
.pres-hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 3rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.pres-hero__subtitle strong {
  color: var(--af-cyan);
  font-weight: 600;
}
.pres-hero__aliados {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.pres-hero__regiones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.pres-aliado {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
}
.pres-aliado--modelo {
  background: rgba(184, 134, 11, 0.15);
  color: #F0C040;
  border: 1px solid rgba(240, 192, 64, 0.3);
}
.pres-aliado--coca {
  background: rgba(204, 0, 0, 0.15);
  color: #FF7777;
  border: 1px solid rgba(255, 119, 119, 0.3);
}
.pres-aliado--giz {
  background: rgba(0, 180, 100, 0.15);
  color: #44DD88;
  border: 1px solid rgba(68, 221, 136, 0.3);
}

.pres-region {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.pres-region--calera i {
  color: #A78BFA;
}
.pres-region--apan i {
  color: #34D399;
}
.pres-region--cdmx i {
  color: #FCD34D;
}

.pres-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.25rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 220ms ease;
}
.pres-btn--primary {
  background: var(--af-cyan);
  color: var(--blue-950);
}
.pres-btn--primary:hover {
  background: #33DDFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 204, 238, 0.35);
}

.pres-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.8rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.pres-badge--teal {
  background: rgba(0, 204, 238, 0.12);
  color: var(--af-cyan-dark);
  border: 1px solid rgba(0, 204, 238, 0.3);
}
.pres-badge--outline {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}
.pres-badge--new {
  background: var(--earth-500);
  color: #fff;
  font-size: 0.65rem;
  margin-left: 0.4rem;
}
.pres-badge--priority {
  background: #FEF3C7;
  color: #92400E;
}
.pres-badge--medium {
  background: var(--blue-100);
  color: var(--blue-800);
}
.pres-badge--opportunity {
  background: var(--teal-100);
  color: var(--teal-800);
}

.pres-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .pres-kpis {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pres-kpi {
  background: var(--bg-3);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  border-top: 4px solid transparent;
  text-align: center;
  transition: transform 200ms ease, background 200ms ease;
}
.pres-kpi:hover {
  transform: translateY(-3px);
  background: var(--bg-4);
}
.pres-kpi--blue {
  border-top-color: var(--blue-400);
}
.pres-kpi--teal {
  border-top-color: var(--af-cyan);
}
.pres-kpi--earth {
  border-top-color: var(--earth-400);
}
.pres-kpi--purple {
  border-top-color: #A78BFA;
}
.pres-kpi__icon {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  color: var(--text-3);
}
.pres-kpi__val {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-1);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.pres-kpi__label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 0.25rem;
}
.pres-kpi__sub {
  font-size: 0.72rem;
  color: var(--text-3);
}

.pres-chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.5rem;
  height: 240px;
  padding: 0 1rem;
  margin-bottom: 1.25rem;
}

.pres-bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  max-width: 80px;
  height: 100%;
  justify-content: flex-end;
}

.pres-bar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
  flex: 1;
  justify-content: flex-end;
}

.pres-bar__val {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-1);
}

.pres-bar {
  width: 100%;
  background: linear-gradient(to top, var(--af-cyan-dark), var(--af-cyan));
  border-radius: 6px 6px 0 0;
  min-height: 4px;
  box-shadow: 0 4px 12px rgba(0, 204, 238, 0.25);
}

.pres-bar__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
}

.pres-chart-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-3);
}
.pres-chart-note i {
  margin-right: 0.3rem;
}

.pres-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .pres-two-col {
    grid-template-columns: 1fr;
  }
}

.pres-card {
  background: var(--bg-3);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 1.75rem;
}
.pres-card__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-2);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pres-card__title i {
  color: var(--af-cyan);
}

.pres-donut-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pres-donut-item {
  display: grid;
  grid-template-columns: 160px 1fr 36px;
  align-items: center;
  gap: 0.75rem;
}
.pres-donut-item__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-2);
}
.pres-donut-item__bar {
  height: 9px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  overflow: hidden;
}
.pres-donut-item__fill {
  height: 100%;
  border-radius: 100px;
}
.pres-donut-item__val {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-1);
  text-align: right;
}

.pres-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pres-medios-grid {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.pres-medio-item {
  display: grid;
  grid-template-columns: 28px 220px 1fr 40px;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: var(--bg-3);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  transition: background 150ms ease;
}
.pres-medio-item:hover {
  background: var(--bg-4);
}
.pres-medio-item__rank {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-3);
  text-align: center;
}
.pres-medio-item__nombre {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-1);
}
.pres-medio-item__tipo {
  font-size: 0.72rem;
  color: var(--text-3);
  text-transform: capitalize;
}
.pres-medio-item__bar {
  height: 7px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  overflow: hidden;
}
.pres-medio-item__fill {
  height: 100%;
  background: linear-gradient(to right, var(--af-cyan-dark), var(--af-cyan));
  border-radius: 100px;
}
.pres-medio-item__val {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--af-cyan-dark);
  text-align: right;
}

.pres-tono-wrap {
  background: var(--bg-3);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 1.75rem;
}

.pres-tonos {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.pres-tono {
  flex: 1;
  text-align: center;
  padding: 1.5rem;
  border-radius: 10px;
}
.pres-tono--positivo {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
}
.pres-tono--neutro {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
}
.pres-tono--negativo {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
}
.pres-tono__val {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-1);
}
.pres-tono__label {
  font-size: 0.8rem;
  color: var(--text-3);
  margin-top: 0.25rem;
}

.pres-redes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.pres-red-card {
  background: var(--bg-3);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 1.5rem;
}
.pres-red-card__header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 204, 238, 0.25);
}
.pres-red-card__icon {
  font-size: 1.3rem;
  color: var(--af-cyan);
}
.pres-red-card__nombre {
  font-weight: 700;
  color: var(--text-1);
  font-size: 0.92rem;
}
.pres-red-card__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.pres-red-metric {
  text-align: center;
}
.pres-red-metric__val {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-1);
}
.pres-red-metric__label {
  font-size: 0.65rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pres-red-metric--engagement {
  grid-column: span 3;
  background: linear-gradient(135deg, var(--af-cyan-light), #f0fdff);
  border-radius: 8px;
  padding: 0.6rem;
  border: 1px solid rgba(0, 204, 238, 0.2);
}
.pres-red-metric--engagement .pres-red-metric__val {
  color: var(--af-cyan-dark);
  font-size: 1.4rem;
}
.pres-red-metric--engagement .pres-red-metric__label {
  color: var(--af-cyan-dark);
}

.pres-empty {
  text-align: center;
  padding: 3rem;
  color: var(--neutral-400);
}
.pres-empty i {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.pres-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 900px) {
  .pres-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pres-feature {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1.75rem;
  transition: background 200ms ease, border-color 200ms ease;
}
.pres-feature:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 204, 238, 0.3);
}
.pres-feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
}
.pres-feature__icon--blue {
  background: rgba(32, 128, 208, 0.2);
  color: var(--blue-300);
}
.pres-feature__icon--teal {
  background: rgba(0, 204, 238, 0.15);
  color: var(--af-cyan);
}
.pres-feature__icon--earth {
  background: rgba(188, 117, 48, 0.2);
  color: var(--earth-300);
}
.pres-feature__icon--purple {
  background: rgba(139, 92, 246, 0.2);
  color: #C4B5FD;
}
.pres-feature__title {
  font-size: 0.97rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}
.pres-feature__desc {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.pres-tech-stack {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.pres-tech {
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  transition: all 150ms ease;
}
.pres-tech:hover {
  background: rgba(0, 204, 238, 0.12);
  border-color: rgba(0, 204, 238, 0.4);
  color: var(--af-cyan);
}

.pres-carriles-top {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 1024px) {
  .pres-carriles-top {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  .pres-carriles-top {
    grid-template-columns: repeat(2, 1fr);
  }
}
.pres-carriles-top .pres-carril {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
}
.pres-carriles-top .pres-carril__num {
  margin-bottom: 0.25rem;
}
.pres-carriles-top .pres-carril strong {
  font-size: 0.8rem;
  color: var(--text-1);
}
.pres-carriles-top .pres-carril p {
  font-size: 0.74rem;
  color: var(--text-2);
}

.pres-feature--wide {
  grid-column: span 3;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.25rem;
}
.pres-feature--wide .pres-feature__icon {
  flex-shrink: 0;
}
.pres-feature--wide .pres-feature__desc {
  max-width: none;
}

.pres-feature--wide {
  grid-column: span 3;
}
.pres-feature--wide .pres-feature__wide-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

.pres-feature__potencial {
  padding: 0.75rem 1rem;
  background: rgba(0, 204, 238, 0.06);
  border: 1px solid rgba(0, 204, 238, 0.2);
  border-radius: 8px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pres-feature__potencial-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--af-cyan);
  margin-bottom: 0.5rem;
}
.pres-feature__potencial-header i {
  font-size: 0.85rem;
}
.pres-feature__potencial p {
  font-size: 0.78rem;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
}

.pres-metodologia {
  display: block;
}
.pres-metodologia__svg {
  background: var(--bg-3);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 1.5rem;
}

.pres-carril {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  border-left: 3px solid transparent;
  transition: transform 150ms ease;
}
.pres-carril:hover {
  transform: translateX(3px);
}
.pres-carril--blue {
  background: rgba(32, 128, 208, 0.1);
  border-left-color: var(--blue-400);
}
.pres-carril--teal {
  background: rgba(0, 204, 238, 0.08);
  border-left-color: var(--af-cyan);
}
.pres-carril--purple {
  background: rgba(139, 92, 246, 0.1);
  border-left-color: #A78BFA;
}
.pres-carril--earth {
  background: rgba(188, 117, 48, 0.1);
  border-left-color: var(--earth-400);
}
.pres-carril--yellow {
  background: rgba(245, 158, 11, 0.1);
  border-left-color: #FCD34D;
}
.pres-carril__num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-1);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pres-carril strong {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.87rem;
  color: var(--neutral-800);
  margin-bottom: 0.25rem;
}
.pres-carril p {
  font-size: 0.78rem;
  color: var(--neutral-600);
  line-height: 1.55;
}

.pres-roadmap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .pres-roadmap {
    grid-template-columns: 1fr;
  }
}

.pres-roadmap--5 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .pres-roadmap--5 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .pres-roadmap--5 {
    grid-template-columns: 1fr;
  }
}

.pres-roadmap-item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 1.75rem;
  transition: border-color 200ms ease, background 200ms ease;
}
.pres-roadmap-item:hover {
  border-color: rgba(0, 204, 238, 0.4);
  background: rgba(255, 255, 255, 0.1);
}
.pres-roadmap-item--priority {
  border-color: rgba(0, 204, 238, 0.5);
  background: rgba(0, 204, 238, 0.09);
}
.pres-roadmap-item--cron {
  border-color: rgba(139, 92, 246, 0.4);
  background: rgba(139, 92, 246, 0.07);
}
.pres-roadmap-item--cron .pres-roadmap-item__icon {
  background: rgba(139, 92, 246, 0.2);
  color: #C4B5FD;
}
.pres-roadmap-item__header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}
.pres-roadmap-item__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0, 204, 238, 0.15);
  color: var(--af-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.pres-roadmap-item__title {
  font-size: 0.97rem;
  font-weight: 700;
  color: #fff;
  flex: 1;
}
.pres-roadmap-item__desc {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.pres-roadmap-item__cost {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  font-style: italic;
}

.pres-cta-block {
  text-align: center;
  padding: 2.5rem;
  background: rgba(0, 204, 238, 0.06);
  border-radius: 14px;
  border: 1px solid rgba(0, 204, 238, 0.2);
}
.pres-cta-block__text {
  font-size: 1.05rem;
  color: var(--text-2);
}
.pres-cta-block__text strong {
  color: var(--af-cyan);
}
.pres-cta-block__sub {
  font-size: 0.83rem;
  color: var(--text-3);
  margin-top: 0.3rem;
}

.metod-diagrama {
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.metod-partida {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
}
.metod-partida__box {
  background: var(--bg-4);
  border: 1px solid rgba(0, 204, 238, 0.3);
  border-radius: 8px;
  padding: 0.75rem 2rem;
  text-align: center;
  width: 50%;
}
.metod-partida__box strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--af-cyan);
  margin-bottom: 0.25rem;
}
.metod-partida__box span {
  font-size: 0.82rem;
  color: var(--text-2);
}
.metod-partida__arrow {
  width: 2px;
  height: 20px;
  background: var(--border-dark);
  margin: 0 auto;
}

.metod-carriles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-dark);
  margin-bottom: 0.5rem;
}

.metod-carril {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 8px;
  border-left: 3px solid transparent;
  background: var(--bg-3);
  border: 1px solid var(--border-dark);
}
.metod-carril--blue {
  border-left-color: var(--blue-400);
}
.metod-carril--teal {
  border-left-color: var(--teal-400);
}
.metod-carril--paused {
  border-left-color: rgba(255, 255, 255, 0.15);
  opacity: 0.45;
}
.metod-carril--earth {
  border-left-color: var(--earth-500);
}
.metod-carril--yellow {
  border-left-color: var(--af-cyan);
}
.metod-carril__arrow {
  display: flex;
  justify-content: center;
}
.metod-carril__arrow::before {
  content: "↓";
  color: var(--text-3);
  font-size: 1rem;
}
.metod-carril__arrow--paused::before {
  color: rgba(255, 255, 255, 0.2);
}
.metod-carril__pausa-badge {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-3);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 0.15rem 0.5rem;
  text-align: center;
  align-self: center;
}
.metod-carril__roadmap {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--af-cyan);
  opacity: 0.6;
  text-align: center;
}

.metod-paso {
  background: var(--bg-4);
  border-radius: 6px;
  padding: 0.6rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.metod-paso--paused {
  background: rgba(255, 255, 255, 0.02);
}
.metod-paso__titulo {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.3;
}
.metod-paso--paused .metod-paso__titulo {
  color: var(--text-3);
}
.metod-paso__sub {
  font-size: 0.74rem;
  color: var(--text-2);
  line-height: 1.3;
}
.metod-paso--paused .metod-paso__sub {
  color: rgba(255, 255, 255, 0.2);
}

.metod-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  border-radius: 20px;
  padding: 0.15rem 0.5rem;
  margin-top: 0.25rem;
  align-self: flex-start;
}
.metod-badge--serp {
  background: rgba(245, 158, 11, 0.15);
  color: #FCD34D;
  border: 1px solid rgba(245, 158, 11, 0.3);
}
.metod-badge--json {
  background: rgba(139, 92, 246, 0.15);
  color: #C4B5FD;
  border: 1px solid rgba(139, 92, 246, 0.3);
}
.metod-badge--bd {
  background: rgba(0, 204, 238, 0.12);
  color: var(--af-cyan);
  border: 1px solid rgba(0, 204, 238, 0.3);
}
.metod-badge--zen {
  background: rgba(234, 88, 12, 0.15);
  color: #FDBA74;
  border: 1px solid rgba(234, 88, 12, 0.3);
}

.metod-convergencia {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.25rem 0;
}
.metod-convergencia__linea {
  width: 80%;
  height: 1px;
  background: var(--border-dark);
}
.metod-convergencia__arrow {
  width: 2px;
  height: 16px;
  background: var(--border-dark);
  margin: 0 auto;
}

.metod-fixture {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0.25rem 0;
}
.metod-fixture__box {
  background: var(--bg-4);
  border: 1.5px solid rgba(0, 204, 238, 0.25);
  border-radius: 8px;
  padding: 0.6rem 2rem;
  text-align: center;
  width: 55%;
}
.metod-fixture__box strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 0.2rem;
}
.metod-fixture__box span {
  font-size: 0.78rem;
  color: var(--text-2);
}
.metod-fixture__arrow {
  width: 2px;
  height: 16px;
  background: var(--border-dark);
  margin: 0 auto;
}

.metod-bd {
  background: rgba(0, 204, 238, 0.07);
  border: 2px solid rgba(0, 204, 238, 0.35);
  border-radius: 8px;
  padding: 0.75rem 2rem;
  text-align: center;
  width: 70%;
  margin: 0 auto 0.25rem;
}
.metod-bd strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--af-cyan);
  margin-bottom: 0.2rem;
}
.metod-bd span {
  font-size: 0.8rem;
  color: var(--text-2);
}

.metod-admin {
  background: var(--bg-3);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 0.6rem 2rem;
  text-align: center;
  width: 50%;
  margin: 0 auto 1.25rem;
}
.metod-admin strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 0.15rem;
}
.metod-admin span {
  font-size: 0.76rem;
  color: var(--text-2);
}

.metod-protocolo {
  margin-bottom: 1rem;
}
.metod-protocolo__titulo {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-1);
  text-align: center;
  margin-bottom: 0.75rem;
}
.metod-protocolo__semanas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}

.metod-semana {
  background: var(--bg-3);
  border: 1px solid var(--border-dark);
  padding: 0.75rem;
  border-radius: 6px;
  border-left: 3px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.metod-semana--blue {
  border-left-color: var(--blue-400);
}
.metod-semana--teal {
  border-left-color: var(--teal-400);
}
.metod-semana--earth {
  border-left-color: var(--earth-500);
}
.metod-semana strong {
  font-size: 0.82rem;
  color: var(--text-1);
}
.metod-semana span {
  font-size: 0.76rem;
  color: var(--text-2);
}
.metod-semana__cmd {
  font-size: 0.68rem !important;
  color: var(--text-3) !important;
  font-family: monospace;
}

.metod-leyenda {
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
}
.metod-leyenda__titulo {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-3);
  text-align: center;
  margin-bottom: 0.6rem;
}
.metod-leyenda__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: center;
}
.metod-leyenda__item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-2);
}
.metod-leyenda__dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
}

.metod-cron {
  border: 1px dashed var(--border-dark);
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  text-align: center;
}
.metod-cron strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-3);
  margin-bottom: 0.25rem;
}
.metod-cron span {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.2);
}

.upper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.87rem;
}
.upper .logo-dhadevs {
  height: 20px;
  width: auto;
}
.upper .logo-mmi {
  height: 30px;
  width: auto;
}/*# sourceMappingURL=presentacion.css.map */