:root {
  --ink: #07152d;
  --paper: #fbf8f3;
  --white: #ffffff;
  --muted: #657086;
  --line: #dfe5ed;
  --yellow: #ffea00;
  --cyan: #37ddff;
  --wine: #7b315d;
  --shadow: 0 18px 55px rgba(7, 21, 45, 0.12);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    'Segoe UI',
    sans-serif;
  line-height: 1.55;
}
a {
  color: inherit;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}
.shell {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}
.skip {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--white);
  border-radius: 10px;
}
.skip:focus {
  left: 8px;
}
.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.top {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251, 248, 243, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(7, 21, 45, 0.08);
}
.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--white);
  font-weight: 950;
}
.brand b {
  display: grid;
  font-size: 14px;
  line-height: 1.1;
}
.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}
.nav nav {
  display: flex;
  align-items: center;
  gap: 21px;
}
.nav nav a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}
.pill {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
}
.menu {
  display: none;
  border: 0;
  background: var(--ink);
  color: var(--white);
  border-radius: 12px;
  min-width: 44px;
  min-height: 44px;
  font-size: 20px;
}
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #07152d 0%, #171d38 50%, #703055 100%);
  color: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  right: -230px;
  top: -250px;
  border-radius: 50%;
  background: rgba(72, 219, 255, 0.25);
}
.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 720px;
  padding-block: 64px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(440px, 1.14fr);
  gap: 28px;
  align-items: center;
}
.ey {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.ey.dark {
  color: #3155a4;
}
.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(52px, 6.6vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.065em;
  text-wrap: balance;
}
.hero-copy {
  position: relative;
  z-index: 3;
}
.hero-color {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 0;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f8edf3;
  font-size: 14px;
}
.color-dot {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(7, 21, 45, 0.18);
}
.color-dot.black { background: #17191e; }
.color-dot.silver { background: linear-gradient(145deg, #ffffff, #bfc3c8); }
.color-dot.glacier { background: #c7dcf3; }
.color-dot.burgundy { background: #6d263e; }
.color-dot.star-white { background: linear-gradient(145deg, #ffffff, #e5e3dc); }
.color-dot.night-sky { background: #172333; }
.lead {
  max-width: 700px;
  margin: 25px 0 0;
  color: #e9edf5;
  font-size: 21px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform 0.18s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.primary {
  background: var(--yellow);
  color: #111827;
}
.ghost {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}
.dark-btn {
  background: var(--ink);
  color: var(--white);
}
.outline {
  border-color: #9aa7b7;
  background: var(--white);
}
.big {
  padding-inline: 26px;
  min-height: 56px;
}
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  color: #d9e0ec;
  font-size: 13px;
  font-weight: 760;
}
.trust li::before {
  content: '✓';
  margin-right: 7px;
  color: var(--yellow);
}
.value-proposition {
  max-width: 760px;
  margin: 18px 0 0;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #f5f7fb;
  font-size: 14px;
  font-weight: 700;
}
.value-proposition::before {
  content: 'Ventaja EXPERTO TELCEL';
  display: block;
  margin-bottom: 5px;
  color: var(--yellow);
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.hero-visual {
  position: relative;
  min-height: 590px;
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 42%, rgba(123, 49, 93, 0.42), transparent 48%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.26));
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.34);
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: auto 12% 6% 12%;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.48);
  filter: blur(26px);
}
.visual-kicker {
  position: absolute;
  z-index: 3;
  top: 22px;
  left: 22px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(7, 21, 45, 0.68);
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.product-image {
  display: block;
  max-width: 100%;
}
.hero-product {
  position: relative;
  z-index: 2;
  width: min(112%, 690px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 35px rgba(0, 0, 0, 0.45));
}
.hero-visual figcaption {
  position: absolute;
  z-index: 4;
  right: 22px;
  bottom: 20px;
  display: grid;
  gap: 1px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(7, 21, 45, 0.76);
  backdrop-filter: blur(12px);
  color: #ffffff;
  text-align: right;
}
.hero-visual figcaption span {
  color: #d9c5d0;
  font-size: 12px;
}
.evidence {
  background: #eefaff;
  border-bottom: 1px solid #d9e9ef;
}
.evidence .shell {
  padding-block: 18px;
  color: #25435f;
}
.product-showcase {
  padding-block: 72px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}
.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: 42px;
  align-items: center;
}
.showcase-copy h2 {
  margin: 0 0 18px;
  color: #14358b;
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1;
  letter-spacing: -0.055em;
  text-wrap: balance;
}
.showcase-copy > p:not(.ey):not(.image-source) {
  color: var(--muted);
  font-size: 18px;
}
.color-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}
.color-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fafc;
  font-weight: 850;
}
.color-grid .color-dot {
  border-color: #ffffff;
}
.image-source {
  margin-top: 18px;
  color: #6f7888;
  font-size: 12px;
}
.showcase-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: #050505;
  box-shadow: var(--shadow);
}
.showcase-figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.showcase-figure figcaption {
  padding: 11px 16px 14px;
  color: #cfd5df;
  font-size: 12px;
  text-align: center;
}
.color-explorers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}
.color-explorer {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #f8fafc;
  box-shadow: var(--shadow);
}
.gallery-copy {
  padding: 25px 25px 20px;
}
.gallery-copy h3 {
  margin: 0 0 10px;
  color: #14358b;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.03;
  letter-spacing: -0.045em;
}
.gallery-copy > p:not(.ey) {
  margin: 0;
  color: var(--muted);
}
.color-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.color-choice {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid #cfd7e3;
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}
.color-choice .color-dot {
  width: 15px;
  height: 15px;
  flex-basis: 15px;
  border-color: #ffffff;
}
.color-choice[aria-selected='true'] {
  border-color: var(--ink);
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 0 0 3px rgba(55, 221, 255, 0.25);
}
.color-stage {
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  background: #ffffff;
  border-top: 1px solid var(--line);
}
.pro-stage {
  min-height: 520px;
}
.duo-stage {
  min-height: 390px;
}
.gallery-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  background: #ffffff;
  transition: opacity 0.2s ease;
}
.gallery-image:not(.is-ready) {
  opacity: 0.25;
}
.color-stage figcaption {
  padding: 12px 16px 14px;
  border-top: 1px solid var(--line);
  color: #667085;
  font-size: 12px;
  font-weight: 750;
  text-align: center;
}
.section {
  padding-block: 74px;
}
.section h2,
.compare h2,
.cta h2 {
  margin: 0 0 15px;
  color: #14358b;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-wrap: balance;
}
.intro {
  max-width: 810px;
  color: var(--muted);
  font-size: 18px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  margin-top: 30px;
}
.cards.four {
  grid-template-columns: repeat(4, 1fr);
}
.card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(7, 21, 45, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card-media {
  position: relative;
  height: 215px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.card-media.media-dark { background: #050505; }
.card-media.media-light { background: #f5f5f7; }
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.25s ease;
}
.card:hover .card-media img {
  transform: scale(1.035);
}
.media-max img {
  object-position: 66% center;
}
.media-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(7, 21, 45, 0.74);
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dark-label {
  border-color: rgba(7, 21, 45, 0.16);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
}
.card-body {
  display: flex;
  min-height: 250px;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 23px;
}
.card-body p {
  flex: 1;
}
.tag {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  background: #edf5ff;
  color: #173c92;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.card h3 {
  margin: 17px 0 8px;
  font-size: 27px;
}
.card p {
  color: var(--muted);
}
.card a {
  color: #153e9b;
  font-weight: 900;
}
.compare {
  padding-block: 78px;
  background: var(--ink);
  color: var(--white);
}
.compare h2 {
  color: var(--white);
}
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 18px;
}
.tabs button {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}
.tabs button.active {
  background: var(--yellow);
  color: #111827;
  border-color: var(--yellow);
}
.recommend {
  display: grid;
  gap: 4px;
  margin-bottom: 24px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}
.recommend small {
  color: #b9c3d2;
  font-weight: 800;
  text-transform: uppercase;
}
.recommend b {
  font-size: 24px;
}
.recommend p {
  margin: 0;
  color: #dce3ef;
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
}
table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}
th,
td {
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}
thead th {
  background: rgba(255, 255, 255, 0.06);
}
.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 38px;
  align-items: center;
}
.split p {
  color: var(--muted);
}
.intent {
  padding: 28px;
  border: 1px solid #d6e5ec;
  border-radius: 24px;
  background: linear-gradient(145deg, #fff, #eafaff);
  text-align: center;
  box-shadow: var(--shadow);
}
.intent small {
  font-weight: 950;
  letter-spacing: 0.12em;
  color: #3155a4;
}
.intent code {
  display: block;
  margin: 15px 0;
  padding: 14px;
  border-radius: 13px;
  background: var(--ink);
  color: var(--white);
}
.intent span {
  display: block;
  font-size: 22px;
}
.intent b {
  font-size: 20px;
}
.plan {
  background: var(--white);
}
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
}
.process article,
.money article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #f8fafc;
}
.process span,
.money article > b {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: var(--ink);
  color: var(--white);
}
.process p,
.money p {
  color: var(--muted);
}
.vip {
  margin-top: 20px;
  padding: 23px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--ink), #47223e);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.vip small {
  color: var(--yellow);
  font-weight: 950;
}
.vip h3 {
  margin: 5px 0;
  font-size: 28px;
}
.vip p {
  margin: 0;
  color: #dce3ef;
}
.money {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.cta {
  padding-block: 70px;
  background: linear-gradient(135deg, #562541, #09162f);
  color: var(--white);
}
.cta h2 {
  color: var(--white);
}
.cta p {
  color: #e6dfeb;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 35px;
  align-items: center;
}
details {
  max-width: 900px;
  margin-top: 11px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
}
summary {
  cursor: pointer;
  font-weight: 900;
}
details p {
  color: var(--muted);
}
footer {
  padding: 50px 0 85px;
  background: #061126;
  color: var(--white);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.footer-grid > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
}
.footer-grid p,
.legal {
  color: #aeb9ca;
}
.legal {
  margin-top: 26px;
  font-size: 12px;
}
.mobile-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 50;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--yellow);
  color: #111827;
  text-decoration: none;
  font-weight: 950;
  box-shadow: 0 16px 40px rgba(7, 21, 45, 0.35);
}

@media (max-width: 1050px) {
  .cards.four {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 980px) {
  .nav nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .nav nav.open {
    display: flex;
  }
  .menu {
    display: block;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 56px;
  }
  .hero-visual {
    min-height: 520px;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  .color-explorers {
    grid-template-columns: 1fr;
  }
  .process {
    grid-template-columns: 1fr;
  }
  .money {
    grid-template-columns: repeat(2, 1fr);
  }
  .split,
  .cta-grid {
    grid-template-columns: 1fr;
  }
  .vip {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-grid {
    flex-direction: column;
  }
}
@media (max-width: 620px) {
  .shell {
    width: min(100% - 24px, 1180px);
  }
  .hero-grid {
    padding-block: 38px;
  }
  .hero h1 {
    font-size: clamp(46px, 14vw, 62px);
  }
  .hero-color {
    margin-top: 16px;
  }
  .hero-visual {
    min-height: 355px;
    border-radius: 25px;
  }
  .hero-product {
    width: 112%;
  }
  .visual-kicker {
    top: 14px;
    left: 14px;
  }
  .hero-visual figcaption {
    right: 12px;
    bottom: 12px;
    font-size: 12px;
  }
  .product-showcase {
    padding-block: 54px;
  }
  .color-explorers {
    width: min(100% - 24px, 1180px);
    gap: 16px;
    margin-top: 24px;
  }
  .gallery-copy {
    padding: 20px 18px 17px;
  }
  .color-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .color-choice {
    justify-content: center;
    padding-inline: 8px;
  }
  .pro-stage {
    min-height: 430px;
  }
  .duo-stage {
    min-height: 260px;
  }
  .showcase-copy h2 {
    font-size: clamp(38px, 12vw, 52px);
  }
  .color-grid {
    grid-template-columns: 1fr 1fr;
  }
  .card-media {
    height: 245px;
  }
  .lead {
    font-size: 17px;
  }
  .actions {
    display: grid;
  }
  .button {
    width: 100%;
  }
  .trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .cards.four,
  .money {
    grid-template-columns: 1fr;
  }
  .section {
    padding-block: 55px;
  }
  .section h2,
  .compare h2,
  .cta h2 {
    font-size: clamp(34px, 11vw, 48px);
  }
  .footer-grid > div:last-child {
    flex-direction: column;
  }
  .mobile-cta {
    display: flex;
  }
  footer {
    padding-bottom: 110px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
}
