/* ============================================================
  ZaaZ Perú — Landing Fibra Óptica
  ============================================================= */

@font-face {
  font-family: 'AmsiPro';
  src: url('../fonts/AmsiPro-Light.otf') format('opentype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'AmsiPro';
  src: url('../fonts/AmsiPro-Regular.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'AmsiPro';
  src: url('../fonts/AmsiPro-Italic.otf') format('opentype');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'AmsiPro';
  src: url('../fonts/AmsiPro-SemiBold.otf') format('opentype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'AmsiPro';
  src: url('../fonts/AmsiPro-Bold.otf') format('opentype');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* —— AmsiPro Cond (display) —— */
@font-face {
  font-family: 'AmsiPro Cond';
  src: url('../fonts/AmsiProCond-SemiBold.otf') format('opentype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'AmsiPro Cond';
  src: url('../fonts/AmsiProCond-Bold.otf') format('opentype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'AmsiPro Cond';
  src: url('../fonts/AmsiProCond-Black.otf') format('opentype');
  font-weight: 900; font-style: normal; font-display: swap;
}

/* ============================================================
  VARIABLES
  ============================================================= */
:root {
  --blue:        #3d388a;
  --blue-dark:   #2a2668;
  --blue-deep:   #1a1545;
  --yellow:      #ffec00;
  --yellow-warm: #ffd700;
  --pink:        #db0067;
  --white:       #ffffff;
  --off-white:   #f5f4ff;
  --text-dark:   #1a1545;
  --text-mid:    #4a4580;
  --text-light:  rgba(255,255,255,0.65);

  --grad-brand:  linear-gradient(100deg, #ffec00 0%, #db0067 52%, #3d388a 100%);
  --grad-hero:   linear-gradient(150deg, #15102f 0%, #221c52 45%, #3d388a 100%);
  --grad-blue:   linear-gradient(135deg, #3d388a 0%, #2a2668 100%);

  --font-display: 'AmsiPro Cond', 'Barlow Condensed', sans-serif;
  --font-body:    'AmsiPro', 'Barlow', system-ui, sans-serif;

  --max-w:        75rem;
  --container-px: 1.5rem;
  --section-py:   5.5rem;

  --radius-sm:  0.5rem;
  --radius-md:  1rem;
  --radius-lg:  1.5rem;
  --radius-xl:  2rem;

  --shadow-sm:  0 2px 12px rgba(61,56,138,0.08);
  --shadow-md:  0 8px 32px rgba(61,56,138,0.14);
  --shadow-lg:  0 20px 60px rgba(61,56,138,0.20);

  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --ease-fast:  cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h: 4.4rem;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
svg { flex-shrink: 0; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
::selection { background: var(--yellow); color: var(--blue); }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3, h4 { font-family: var(--font-display); }

/* ============================================================
  CONTAINER
  =========================================================== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

/* ============================================================
  TOPBAR
  =========================================================== */
.topbar {
  background: var(--blue-deep);
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem;
  font-weight: 500;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 2.25rem;
  padding-block: 0.4rem;
}
.topbar-left a {
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.6875rem;
}

/* ============================================================
  NAVBAR
  =========================================================== */
.navbar {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(61,56,138,0.08);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 28px rgba(61,56,138,0.14);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav-logo { display: inline-flex; align-items: center; }
.nav-logo img {
  height: 4rem;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}
.nav-links > li > a {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-mid);
  padding: 0.5rem 0.875rem;
  transition: color 0.2s var(--ease-fast);
  position: relative;
}
.nav-links > li > a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 0.15rem;
  left: 0.875rem;
  right: 0.875rem;
  height: 2px;
  background: var(--yellow);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-links > li > a:not(.nav-cta):hover { color: var(--blue); }
.nav-links > li > a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue);
  color: var(--white) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 2rem;
  margin-left: 0.5rem;
  box-shadow: 0 4px 16px rgba(61,56,138,0.25);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
  line-height: 1;
}
.nav-cta svg { width: 1.125rem; height: 1.125rem; flex-shrink: 0; }
.nav-cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}
.nav-cta-label {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  opacity: 0.9;
  text-transform: uppercase;
}
.nav-cta-number {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.nav-cta:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(61,56,138,0.32);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--white);
  padding: 1rem var(--container-px) 1.5rem;
  border-top: 2px solid var(--yellow);
  box-shadow: var(--shadow-lg);
  z-index: 99;
  flex-direction: column;
  gap: 0.25rem;
  animation: slideDown 0.3s var(--ease) both;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--text-mid);
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid rgba(61,56,138,0.06);
  transition: all 0.2s var(--ease-fast);
}
.nav-mobile a:hover { background: var(--off-white); color: var(--blue); }
.nav-mobile-cta {
  margin-top: 0.75rem;
  background: var(--blue) !important;
  color: var(--white) !important;
  border-radius: 2rem !important;
  border-bottom: none !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  line-height: 1;
}

/* ============================================================
  BARRA GRADIENTE
  =========================================================== */
.brand-bar { height: 3px; background: var(--grad-brand); }

/* ============================================================
  BOTONES
  =========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  padding: 0.9rem 1.6rem;
  border-radius: 2.5rem;
  border: 2px solid transparent;
  line-height: 1;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s, color 0.25s, border-color 0.25s;
}
.btn svg { width: 1.05rem; height: 1.05rem; }
.btn-yellow {
  background: var(--yellow);
  color: var(--blue);
  box-shadow: 0 6px 22px rgba(255,236,0,0.35);
}
.btn-yellow:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,236,0,0.45);
}
.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover { background: transparent; color: var(--blue); }
.btn-wa {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  box-shadow: 0 6px 20px rgba(37,211,102,0.32);
}
.btn-wa:hover {
  background: #1ab955;
  border-color: #1ab955;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.42);
}

/* ============================================================
  HERO
  =========================================================== */
.hero {
  position: relative;
  background: var(--blue-deep);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -4;
  display: block;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    radial-gradient(circle at 18% 30%, rgba(255,236,0,0.07) 0%, transparent 45%),
    radial-gradient(circle at 88% 75%, rgba(219,0,103,0.12) 0%, transparent 45%),
    url("data:image/svg+xml,%3Csvg width='56' height='56' viewBox='0 0 56 56' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='28,3 51,16 51,40 28,53 5,40 5,16' fill='none' stroke='rgba(255,255,255,0.035)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: auto, auto, 50px 50px;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-block: 6rem;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 36rem;
  animation: heroFadeUp 0.8s var(--ease) both;
}
.hero h1 {
  font-size: clamp(3.25rem, 6.5vw, 5.75rem);
  font-weight: 900;
  color: var(--white);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1.35rem;
}
.hero h1 .yellow { position: relative; color: var(--yellow); }
.hero h1 .yellow::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0.08em;
  height: 0.12em;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineGrow 0.6s 0.7s var(--ease) forwards;
}
@keyframes underlineGrow { to { transform: scaleX(1); } }

.hero-sub {
  font-size: 1.0625rem;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 30rem;
}
.hero-sub strong { color: rgba(255,255,255,0.95); font-weight: 600; }

/* ── HERO OFFER IMG ── */
.hero-offer-img{
  display:block;
  max-width:560px;
  width:100%;
}
.hero-offer-img img{
  display:block;
  width:100%;
  height:auto;
  border-radius:22px;
  padding-bottom: 20px;
}

/* ── HERO OFFER (legacy) ── */
.hero-offer{
  display:flex;
  flex-direction:column;
  max-width:560px;
  background:#3d388a;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,.28);
}

.hero-offer-top{ display:flex; align-items:stretch; }

.hero-offer-col{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:22px 18px 18px;
}
.hero-offer-col--speed{ border-right:2px solid rgba(255,255,255,.22); }

.hero-offer-plan-title{
  color:#fff;
  font-weight:800;
  font-size:.95rem;
  line-height:1.2;
  margin:0 0 8px;
}

.hero-offer-speed{ display:flex; align-items:center; justify-content:center; gap:4px; }
.hero-offer-speed-num{
  color:var(--yellow);
  font-weight:900;
  font-size:3.6rem;
  line-height:.85;
  letter-spacing:-2px;
}
.hero-offer-speed-pill{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  background:var(--yellow);
  color:#3d388a;
  border-radius:999px;
  padding:7px 13px;
  line-height:1;
}
.hero-offer-speed-mbps{ font-weight:900; font-size:1.15rem; }
.hero-offer-speed-label{ font-weight:800; font-size:.5rem; letter-spacing:.6px; text-transform:uppercase; }

.hero-offer-regular{
  color:#fff;
  font-weight:800;
  font-size:.9rem;
  letter-spacing:.5px;
  text-transform:uppercase;
  margin:0 0 6px;
}
.hero-offer-price{ display:flex; align-items:flex-start; justify-content:center; color:var(--yellow); line-height:.85; }
.hero-offer-cur{ font-weight:900; font-size:1.9rem; margin-top:.5rem; }
.hero-offer-num{ font-weight:900; font-size:4.2rem; letter-spacing:-3px; }

.hero-offer-term{ color:#fff; font-weight:700; font-size:.85rem; margin:8px 0 0; }

.hero-offer-includes{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  background:#fff;
  padding:12px 16px;
}
.hero-offer-includes-label,
.hero-offer-includes-channels{
  color:#3d388a;
  font-weight:900;
  font-size:1.25rem;
  text-transform:uppercase;
}
.hero-offer-includes-logo{ height:34px; width:auto; }
.hero-offer-price-block { flex-shrink: 0; }
.hero-offer-price { display: flex; align-items: flex-start; gap: 0.3rem; }
.hero-offer-cur {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--yellow);
  margin-top: 0.45rem;
}
.hero-offer-num {
  font-family: var(--font-display);
  font-size: 4.25rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 0.8;
  letter-spacing: -0.02em;
}
.hero-offer-per {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-top: 0.35rem;
}
.hero-offer-per-top {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue);
  background: var(--yellow);
  padding: 0.18rem 0.4rem;
  border-radius: 0.35rem;
  white-space: nowrap;
}
.hero-offer-per-bot {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}
.hero-offer-legal {
  font-size: 0.625rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.5);
  margin-top: 0.9rem;
  max-width: 13rem;
}
.hero-offer-divider {
  align-self: stretch;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(255,236,0,0.6), transparent);
}
.hero-offer-plan-block { display: flex; flex-direction: column; gap: 0.45rem; flex: 1; }
.hero-offer-plan-speed {
  display: flex;
  align-items: end;
  gap: 0.4rem;
}
.hero-offer-plan-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.01em;
}
.hero-offer-plan-unit {
  font-size: 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--yellow);
}
.hero-offer-plan-plus {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--yellow);
}
.hero-offer-dgo-logo { height: 32px; width: auto; object-fit: contain; display: block; }
.hero-offer-channels {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.hero-offer-bonus {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--yellow);
}
.hero-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

/* ============================================================
  BASE DE SECCIÓN
============================================================ */
.section { padding-block: var(--section-py); }
.section-header {
  text-align: center;
  margin-bottom: 1rem;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.02;
}
.section-title--white { color: var(--white); }
.section-title em { font-style: normal; color: var(--pink); }
.section-desc {
  font-size: 1rem;
  color: var(--text-mid);
  margin: 0.875rem auto 0;
  line-height: 1.7;
}

/* ============================================================
  PLANES
  =========================================================== */
#planes { background: var(--off-white); }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.plan-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1.5px solid rgba(61,56,138,0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan-card.featured { background: var(--blue); border-color: var(--blue); }
.plan-popular {
  position: absolute;
  top: 0; right: 0;
  background: var(--pink);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.375rem 0.875rem;
  border-radius: 0 var(--radius-xl) 0 var(--radius-md);
  z-index: 1;
}
.plan-band { height: 4px; background: var(--grad-brand); }
.plan-card.featured .plan-band { background: var(--yellow); }
.plan-header { padding: 1.5rem 1.5rem 0; }
.plan-name {
  line-height: 1;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--text-mid);
}
.plan-card.featured .plan-name { color: rgba(255,255,255,0.6); }
.plan-speed-row {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.plan-speed-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.plan-speed-unit {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-mid);
}
.plan-card.featured .plan-speed-num { color: var(--yellow); }
.plan-card.featured .plan-speed-unit { color: rgba(255,255,255,0.65); }
.plan-speed-sub {
  font-family: var(--font-display);
  color: var(--text-mid);
  opacity: 0.7;
}
.plan-card.featured .plan-speed-sub { color: rgba(255,255,255,0.5); }
.plan-divider {
  height: 1px;
  margin: 1rem 0;
  border: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(61,56,138,0.16) 15%,
    rgba(61,56,138,0.16) 85%,
    transparent 100%
  );
}
.plan-card.featured .plan-divider {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.32) 15%,
    rgba(255,255,255,0.32) 85%,
    transparent 100%
  );
}

.plan-body { padding: 0 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }

.plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.plan-currency {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--blue);
}
.plan-card.featured .plan-currency { color: var(--white); }
.plan-price-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.plan-card.featured .plan-price-num { color: var(--white); }
.plan-period {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-mid);
  opacity: 0.8;
}
.plan-card.featured .plan-period { color: rgba(255,255,255,0.6); }
.plan-old-price {
  font-size: 0.9375rem;
  color: var(--text-mid);
  text-decoration: line-through;
  opacity: 0.5;
  margin-top: 0.35rem;
}
.plan-card.featured .plan-old-price { color: rgba(255,255,255,0.45); }

.plan-includes-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mid);
  opacity: 0.6;
  margin-bottom: 0.5rem;
}
.plan-card.featured .plan-includes-label { color: rgba(255,255,255,0.5); }

.plan-services {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-wrap: wrap;
}
.plan-services--row2 { margin-top: 0.5rem; margin-bottom: 20px; }

.plan-logo {
  height: 45px;
  width: auto;
  object-fit: contain;
  display: block;
}

.plan-channels {
  font-family: var(--font-display);
  color: var(--blue);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.plan-card.featured .plan-channels { color: rgba(255,255,255,0.55); }

.plan-mesh {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(61,56,138,0.06);
  border: 1px solid rgba(61,56,138,0.12);
  border-radius: 0.625rem;
  padding: 0.5rem 0.75rem;
}
.plan-mesh svg { width: 0.875rem; height: 0.875rem; color: var(--blue); }
.plan-mesh span { font-size: 0.75rem; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.06em; }
.plan-card.featured .plan-mesh { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.18); }
.plan-card.featured .plan-mesh span { color: #fff; }
.plan-card.featured .plan-mesh svg { color: var(--yellow); }

.plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.875rem;
  border-radius: var(--radius-md);
  margin-top: auto;
  border: 2px solid var(--blue);
  transition: all 0.25s var(--ease);
}
.plan-cta svg { width: 1.125rem; height: 1.125rem; }
.plan-cta:hover { background: transparent; color: var(--blue); }
.plan-card.featured .plan-cta { background: var(--yellow); color: var(--blue); border-color: var(--yellow); }
.plan-card.featured .plan-cta:hover { background: var(--white); border-color: var(--white); }


/* ============================================================
  DIFERENCIADORES
  ============================================================= */
#diferenciadores {
  background: var(--blue-deep);
  background-image:
    radial-gradient(ellipse at 10% 50%, rgba(219,0,103,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 30%, rgba(255,236,0,0.06) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='70' height='70' viewBox='0 0 70 70' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='35,3 64,19 64,51 35,67 6,51 6,19' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: auto, auto, 60px 60px;
}
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.diff-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.75rem;
  text-align: center;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.diff-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-brand);
  opacity: 0;
  transition: opacity 0.3s;
}
.diff-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.15); transform: translateY(-4px); }
.diff-card:hover::before { opacity: 1; }
.diff-icon-wrap {
  width: 4rem; height: 4rem;
  background: var(--yellow);
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.diff-icon-wrap svg { width: 1.75rem; height: 1.75rem; }
.diff-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  margin-top: 0.75rem;
}
.diff-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}

.diff-card-img-wrap img {
  border-radius: 20px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
  DGO
   ============================================================ */
#dgo { background: var(--white); }
.dgo-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.dgo-left {
  background: linear-gradient(145deg, #0d001f 0%, #2d0060 50%, #5a0080 100%);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  min-height: 26rem;
}
.dgo-left::before {
  content: 'DGO';
  position: absolute;
  bottom: -2rem; left: -1rem;
  font-family: var(--font-display);
  font-size: 10rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none; user-select: none;
}
.dgo-left::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%; height: 100%;
  background: radial-gradient(ellipse at right, rgba(90,0,128,0.5) 0%, transparent 70%);
  pointer-events: none;
}
.dgo-left h2 {
  font-size: clamp(2.25rem, 3.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.75rem;
  position: relative; z-index: 1;
}
.dgo-left p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  position: relative; z-index: 1;
  margin-bottom: 1.5rem;
}

.dgo-pill {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.5rem;
  width: fit-content;
  position: relative; z-index: 1;
}
.dgo-pill-img {
  height: 3rem;
  width: auto;
  display: block;
}

.dgo-right {
  background: var(--white);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dgo-right h3 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 0.875rem;
}
.dgo-right > p {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.dgo-perks { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.dgo-perk { display: flex; align-items: center; gap: 0.875rem; }
.dgo-perk-icon {
  width: 2.25rem; height: 2.25rem;
  background: var(--yellow);
  border-radius: 0.625rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dgo-perk-icon svg { width: 1rem; height: 1rem; }
.dgo-perk-text { display: flex; flex-direction: column; gap: 0.15rem; }
.dgo-perk strong { font-size: 0.875rem; font-weight: 700; color: var(--blue); line-height: 1.25; }
.dgo-perk span { font-size: 0.8125rem; color: var(--text-mid); line-height: 1.4; }

/* ============================================================
  MESH
  =========================================================== */
#mesh { background: var(--off-white); }
.mesh-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.mesh-visual-box {
  background: var(--grad-blue);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mesh-visual-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='44' height='44' viewBox='0 0 44 44' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='22' cy='22' r='16' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3C/svg%3E") repeat;
  background-size: 40px 40px;
  pointer-events: none;
}
.mesh-router {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 2.5rem; height: 2.5rem;
  background: var(--yellow);
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.mesh-router svg { width: 1.25rem; height: 1.25rem; }
.mesh-visual-box h3 { position: relative; z-index: 2; font-size: 1.5rem; font-weight: 900; color: #fff; text-transform: uppercase; margin-bottom: 0.375rem; }
.mesh-visual-box p { position: relative; z-index: 2; font-size: 0.875rem; color: rgba(255,255,255,0.55); }
.mesh-info h2 { font-size: clamp(2rem, 3vw, 2.75rem); font-weight: 900; color: var(--blue); text-transform: uppercase; line-height: 1.05; margin-bottom: 1rem; }
.mesh-info h2 mark { background: var(--yellow); color: var(--blue); padding: 0 0.375rem; border-radius: 0.25rem; }
.mesh-info > p { font-size: 0.9375rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.75rem; }
.mesh-specs { display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 2rem; }
.mesh-spec { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; font-weight: 600; color: var(--text-dark); }
.mesh-spec::before { content: ''; width: 0.5rem; height: 0.5rem; background: var(--yellow); border-radius: 50%; flex-shrink: 0; }

/* ============================================================
   PAGOS
   ============================================================ */
#pagos {
  background: var(--blue-deep);
  background-image:
    radial-gradient(ellipse at 80% 50%, rgba(61,56,138,0.5) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='70' height='70' viewBox='0 0 70 70' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='35,3 64,19 64,51 35,67 6,51 6,19' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: auto, 60px 60px;
}
.pagos-sub { font-size: 0.9375rem; color: rgba(255,255,255,0.55); text-align: center; margin-bottom: 2.5rem; }
.pagos-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 2.5rem; }
.pago-badge {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.875rem 1.25rem;
  border-radius: 0.875rem;
  min-width: 8rem;
  justify-content: center;
  transition: all 0.2s var(--ease-fast);
}
.pago-badge svg { width: 1.375rem; height: 1.375rem; opacity: 0.85; }
.pago-badge:hover { background: rgba(255,236,0,0.1); border-color: rgba(255,236,0,0.3); color: var(--yellow); }
.pagos-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FAQ
   ============================================================ */
#faq { background: var(--white); }
.faq-list { display: flex; flex-direction: column; gap: 0.625rem; max-width: 50rem; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1.5px solid rgba(61,56,138,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.25s var(--ease), border-color 0.25s;
}
.faq-item:hover, .faq-item.open { box-shadow: var(--shadow-md); border-color: rgba(61,56,138,0.18); }
.faq-item.open { border-color: var(--blue); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--blue);
  text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--pink); }
.faq-chevron { width: 1.25rem; height: 1.25rem; flex-shrink: 0; transition: transform 0.35s var(--ease); color: var(--blue); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
  padding: 0 1.5rem;
}
.faq-a.open { max-height: 22rem; padding: 0 1.5rem 1.5rem; }
.faq-a a { color: var(--blue); font-weight: 700; }
.faq-a a:hover { text-decoration: underline; }

/* ============================================================
  CTA CONTACTO
  ============================================================= */
.cta-section { padding-block: 4.5rem; background: var(--off-white); }
.cta-section-title {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--blue);
  text-align: center;
  margin-bottom: 2.25rem;
  letter-spacing: -0.01em;
}
.cta-banner {
  background: var(--yellow);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  position: relative;
}
.cta-cards { display: flex; gap: 1.25rem; padding: 2.5rem; flex-wrap: wrap; }
.cta-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  min-width: 13rem;
  flex: 1;
  box-shadow: 0 4px 24px rgba(61,56,138,0.12);
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.cta-card-sub { line-height: normal; font-size: 0.75rem; font-weight: 600; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.06em; }
.cta-card-number {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 900;
  color: var(--blue);
  margin: 0.5rem 0 0.75rem;
}
.cta-card-number svg { width: 1.75rem; height: 1.75rem; }
.cta-photo {
  width: 19rem;
  background: linear-gradient(135deg, rgba(61,56,138,0.1) 0%, rgba(61,56,138,0.2) 100%);
  display: flex; align-items: center; justify-content: center;
}
.cta-photo-placeholder { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; text-align: center; }
.cta-photo-placeholder svg { width: 3rem; height: 3rem; opacity: 0.3; color: var(--blue); }
.cta-photo-placeholder span { font-size: 0.6875rem; font-weight: 600; color: rgba(61,56,138,0.4); text-transform: uppercase; letter-spacing: 0.08em; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--blue-deep); color: var(--white); padding: 3.5rem 0 1.75rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand .footer-logo { display: inline-flex; align-items: center; margin-bottom: 1rem; }
.footer-brand .footer-logo img { height: 3rem; width: auto; }
.footer-brand p { font-size: 0.8125rem; color: rgba(255,255,255,0.4); max-width: 17rem; }
.footer-col h4 { font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--yellow); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; }
.footer-col ul li a { font-size: 0.8125rem; color: rgba(255,255,255,0.45); align-items: center; transition: color 0.2s; }
.footer-col ul li a::before { content: ''; width: 4px; height: 4px; background: var(--yellow); border-radius: 50%; flex-shrink: 0; opacity: 0; transition: opacity 0.2s; }
.footer-col ul li a:hover { color: var(--yellow); }
.footer-col ul li a:hover::before { opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--yellow); }

/* ============================================================
  WHATSAPP FLOTANTE
  =========================================================== */
.wa-float {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  width: 3.5rem; height: 3.5rem;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 200;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  animation: waPop 0.5s 1s var(--ease) both;
}
.wa-float svg { width: 1.875rem; height: 1.875rem; }
.wa-float:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
.wa-float-tooltip {
  position: absolute;
  right: calc(100% + 0.75rem);
  background: var(--white);
  color: var(--blue);
  font-size: 0.75rem; font-weight: 700;
  padding: 0.375rem 0.75rem;
  border-radius: 2rem;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(0.5rem);
  transition: all 0.25s var(--ease);
  pointer-events: none;
}
.wa-float:hover .wa-float-tooltip { opacity: 1; transform: translateX(0); }

/* ============================================================
  ANIMACIONES
  =========================================================== */
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(2rem); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideDown  { from { opacity: 0; transform: translateY(-1rem); } to { opacity: 1; transform: translateY(0); } }
@keyframes waPop       { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } }
.reveal { opacity: 0; transform: translateY(1.5rem); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
  RESPONSIVE
  =========================================================== */
@media (max-width: 1100px) {
  .plans-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner  { grid-template-columns: 1fr; }
  .cta-photo   { display: none; }
}
@media (max-width: 900px) {
  :root { --section-py: 4rem; }
  .hero .container { grid-template-columns: 1fr; gap: 2.5rem; padding-block: 3.5rem; }
  .hero-content { max-width: 38rem; }
  .hero-visual { max-width: 26rem; }
  .diff-grid   { grid-template-columns: 1fr; max-width: 28rem; margin-inline: auto; }
  .dgo-wrap    { grid-template-columns: 1fr; }
  .mesh-wrap   { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 760px) {
  .nav-links   { display: none; }
  .nav-hamburger { display: flex; }
  .plans-grid  { grid-template-columns: 1fr; max-width: 22rem; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-cards   { flex-direction: column; padding: 1.75rem; }
}
@media (max-width: 560px) {
  :root { --container-px: 1.15rem; --section-py: 3.25rem; }
  .hero h1 { font-size: clamp(2.75rem, 12vw, 3.5rem); }
  .hero-actions { margin-bottom: 18rem; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-card-price .num { font-size: 3.25rem; }
  .pago-badge { flex: 1; min-width: 6.5rem; }
}

/* ============================================================
  ACCESIBILIDAD
  =========================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}