:root {
  /* Tono logo LTE Corporativo */
  --navy-deep: #000b29;
  --navy: #00122e;
  --navy-mid: #0a1f4d;
  --cyan: #42b0ff;
  --cyan-bright: #33adff;
  --cyan-dim: rgba(66, 176, 255, 0.16);
  --white: #ffffff;
  --mist: #eef5fc;
  --text: #0b1c33;
  --muted: #4a5d73;
  --card: #ffffff;
  --radius: 16px;
  --shadow: 0 12px 40px rgba(0, 11, 41, 0.14);
  --font: "Nunito", "Segoe UI", system-ui, sans-serif;
  --header-h: 64px;
  --dock-h: 68px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-top: env(safe-area-inset-top, 0px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--mist);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--dock-h) + var(--safe-bottom) + 0.5rem);
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgba(66, 176, 255, 0.2);
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 1.5rem));
  margin-inline: auto;
}

@media (min-width: 768px) {
  .container {
    width: min(1120px, calc(100% - 2.5rem));
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(0, 18, 46, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(66, 176, 255, 0.22);
  padding-top: var(--safe-top);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--header-h);
  padding: 0.55rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--white);
  min-width: 0;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.brand-text {
  min-width: 0;
}

.brand-text strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-text span {
  display: none;
  font-size: 0.72rem;
  color: var(--cyan);
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.header-wa {
  display: none;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.88rem;
}

.nav-desktop a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--white);
  background: rgba(66, 176, 255, 0.18);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(66, 176, 255, 0.35);
  background: rgba(66, 176, 255, 0.1);
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(0, 11, 41, 0.55);
  backdrop-filter: blur(2px);
}

.nav-scrim[hidden] {
  display: none !important;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  width: min(320px, 88vw);
  height: 100%;
  height: 100dvh;
  background: linear-gradient(180deg, var(--navy-deep), var(--navy-mid));
  color: var(--white);
  padding: calc(0.85rem + var(--safe-top)) 1.1rem calc(1.25rem + var(--safe-bottom));
  transform: translateX(105%);
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
}

.nav-drawer.is-open {
  transform: translateX(0);
}

.nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-close {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.nav-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
  overflow-y: auto;
}

.nav-drawer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
}

.nav-drawer-links a:hover,
.nav-drawer-links a.is-active {
  background: rgba(66, 176, 255, 0.16);
  border-color: rgba(66, 176, 255, 0.28);
}

.nav-drawer-cta {
  width: 100%;
  justify-content: center;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: none;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.2s ease,
    color 0.2s ease;
  min-height: 48px;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.22) 45%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  z-index: 0;
  pointer-events: none;
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn .btn-label,
.btn .btn-ico,
.btn .ico {
  position: relative;
  z-index: 1;
}

.btn-ico {
  flex-shrink: 0;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: scale(0.98) translateY(0);
}

.btn-primary {
  background: linear-gradient(145deg, #001a45 0%, var(--navy-mid) 55%, #0d2f6b 100%);
  color: var(--white);
  box-shadow:
    0 10px 28px rgba(0, 11, 41, 0.35),
    0 0 0 1px rgba(66, 176, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(66, 176, 255, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(145deg, #00245c 0%, #0a2a66 55%, #143f86 100%);
  box-shadow:
    0 14px 34px rgba(0, 11, 41, 0.42),
    0 0 22px rgba(66, 176, 255, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.btn-dark {
  background: linear-gradient(160deg, var(--navy-deep) 0%, #071833 100%);
  color: var(--white);
  border: 1px solid rgba(66, 176, 255, 0.45);
  box-shadow: 0 8px 22px rgba(0, 11, 41, 0.28);
}

.btn-dark:hover {
  border-color: var(--cyan);
  box-shadow: 0 12px 28px rgba(0, 11, 41, 0.35), 0 0 18px rgba(66, 176, 255, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1.5px solid rgba(66, 176, 255, 0.75);
  backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  background: rgba(66, 176, 255, 0.16);
  border-color: var(--cyan-bright);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  min-height: 40px;
}

.btn-glow {
  animation: btn-breathe 3.2s ease-in-out infinite;
}

.btn-glow:hover {
  animation: none;
}

@keyframes btn-breathe {
  0%,
  100% {
    box-shadow:
      0 10px 28px rgba(0, 11, 41, 0.32),
      0 0 0 1px rgba(66, 176, 255, 0.32);
  }
  50% {
    box-shadow:
      0 12px 30px rgba(0, 11, 41, 0.38),
      0 0 18px rgba(66, 176, 255, 0.35),
      0 0 0 1px rgba(66, 176, 255, 0.5);
  }
}

.btn-ico-pulse {
  animation: ico-pulse 1.8s ease-in-out infinite;
}

.btn-ico-arrow {
  transition: transform 0.25s ease;
}

.btn:hover .btn-ico-arrow {
  transform: translateX(3px);
}

.btn-ico-chevron {
  transition: transform 0.28s ease;
}

.btn[aria-expanded="true"] .btn-ico-chevron {
  transform: rotate(180deg);
}

.btn-ico-spin {
  animation: ico-spin-soft 6s linear infinite;
}

.btn:hover .btn-ico-spin {
  animation-duration: 1.4s;
}

@keyframes ico-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.12);
    opacity: 0.85;
  }
}

@keyframes ico-spin-soft {
  to {
    transform: rotate(360deg);
  }
}

.ico {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
  color: inherit;
}

.ico-sm {
  width: 1.05rem;
  height: 1.05rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--cyan-dim);
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(66, 176, 255, 0.2), transparent),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 2.25rem 0 2.75rem;
}

.jump-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.1rem;
}

.jump-pills a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(66, 176, 255, 0.28);
}

.jump-pills a:hover {
  background: rgba(66, 176, 255, 0.2);
}


.hero-vectors {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(66, 176, 255, 0.22);
  border-radius: 50%;
  animation: spin 28s linear infinite;
}

.orbit-a {
  width: 280px;
  height: 280px;
  right: -40px;
  top: 10%;
}

.orbit-b {
  width: 420px;
  height: 420px;
  right: -90px;
  top: -5%;
  animation-duration: 42s;
  animation-direction: reverse;
  opacity: 0.7;
}

.orbit-c {
  width: 160px;
  height: 160px;
  right: 80px;
  top: 28%;
  animation-duration: 18s;
  border-color: rgba(66, 176, 255, 0.35);
}

.hero-signal {
  position: absolute;
  right: 12%;
  top: 38%;
  width: 72px;
  height: 72px;
  color: var(--cyan);
  opacity: 0.55;
  animation: pulse-soft 3.2s ease-in-out infinite;
}

.hero-float {
  position: absolute;
  color: var(--cyan);
  opacity: 0.4;
  filter: drop-shadow(0 0 12px rgba(66, 176, 255, 0.35));
}

.hero-float-a {
  width: 36px;
  height: 36px;
  right: 28%;
  top: 18%;
  animation: float-drift 7s ease-in-out infinite;
}

.hero-float-b {
  width: 28px;
  height: 28px;
  right: 8%;
  top: 62%;
  animation: float-drift 5.5s ease-in-out infinite reverse;
  animation-delay: 0.6s;
}

.hero-float-c {
  width: 32px;
  height: 32px;
  right: 36%;
  bottom: 16%;
  animation: float-drift 6.5s ease-in-out infinite;
  animation-delay: 1.1s;
}

.hero-blob {
  position: absolute;
  border-radius: 40% 60% 55% 45%;
  background: radial-gradient(circle at 30% 30%, rgba(66, 176, 255, 0.28), transparent 70%);
  filter: blur(2px);
  animation: blob-morph 10s ease-in-out infinite;
}

.hero-blob-a {
  width: 180px;
  height: 180px;
  right: 5%;
  top: 20%;
}

.hero-blob-b {
  width: 120px;
  height: 120px;
  right: 22%;
  bottom: 12%;
  animation-duration: 13s;
  animation-direction: reverse;
  opacity: 0.7;
}

@keyframes float-drift {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-10px, -14px) rotate(8deg);
  }
}

@keyframes blob-morph {
  0%,
  100% {
    border-radius: 40% 60% 55% 45%;
    transform: scale(1) rotate(0deg);
  }
  50% {
    border-radius: 55% 45% 40% 60%;
    transform: scale(1.08) rotate(12deg);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse-soft {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(1);
  }
  50% {
    opacity: 0.75;
    transform: scale(1.06);
  }
}

.hero-panel-icons {
  display: flex;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.chip-ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(66, 176, 255, 0.12);
  color: var(--cyan);
  border: 1px solid rgba(66, 176, 255, 0.28);
  animation: float-y 4s ease-in-out infinite;
  box-shadow: 0 0 16px rgba(66, 176, 255, 0.12);
}

.chip-ico:nth-child(2) {
  animation-delay: 0.4s;
}

.chip-ico:nth-child(3) {
  animation-delay: 0.8s;
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.22s;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% 40%;
  height: 70%;
  background: radial-gradient(circle, rgba(0, 200, 255, 0.15), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 34rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 200, 255, 0.3);
  border-radius: var(--radius);
  padding: 1.25rem;
  backdrop-filter: blur(6px);
}

.hero-panel h2 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--cyan);
}

.hero-panel ul {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-panel li + li {
  margin-top: 0.35rem;
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section-head {
  margin-bottom: 1.75rem;
}

.section-head h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  color: var(--navy-deep);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 36rem;
}

/* Campaign */
.campaign {
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
}

.campaign-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 2px solid var(--cyan);
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.campaign-badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
  background: var(--navy-deep);
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.campaign-card h2 {
  margin: 0;
  font-size: 1.35rem;
  color: var(--navy-deep);
}

.campaign-card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.campaign-meta {
  font-size: 0.85rem;
  color: var(--muted);
}

.campaign-hidden {
  display: none !important;
}

/* Catalog cards */
.cards {
  display: grid;
  gap: 1rem;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 55, 123, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  animation: rise 0.5s ease both;
}

.card:nth-child(2) {
  animation-delay: 0.08s;
}

.card:nth-child(3) {
  animation-delay: 0.16s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--cyan-dim);
  color: var(--navy-deep);
  display: grid;
  place-items: center;
}

.card-icon .ico {
  width: 1.55rem;
  height: 1.55rem;
}

.plan-icon,
.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cyan-dim);
  color: var(--navy-deep);
  display: grid;
  place-items: center;
  margin-bottom: 0.15rem;
}

.plan-icon .ico,
.benefit-icon .ico {
  width: 1.45rem;
  height: 1.45rem;
}

.card:hover .card-icon,
.plan-card:hover .plan-icon,
.benefit-card:hover .benefit-icon {
  background: var(--navy-deep);
  color: var(--cyan);
  transition: background 0.2s ease, color 0.2s ease;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cyan);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.trust-item {
  background: var(--card);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  box-shadow: var(--shadow);
  font-weight: 700;
  color: var(--navy-deep);
  border-left: 4px solid var(--cyan);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.trust-item .ico {
  color: var(--navy-deep);
  flex-shrink: 0;
}

.card h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--navy-deep);
}

.card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  flex: 1;
}

.card .price-hint {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}

/* Steps */
.steps {
  display: grid;
  gap: 1rem;
}

.step {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.step h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Maxi / contacto */
.maxi {
  background: linear-gradient(145deg, var(--navy-deep), var(--navy));
  color: var(--white);
}

.maxi .section-head h2,
.maxi .section-head p {
  color: var(--white);
}

.maxi .section-head p {
  opacity: 0.85;
}

.maxi-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 200, 255, 0.35);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.maxi-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

/* Trust */
.trust-strip {
  display: grid;
  gap: 0.75rem;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.5rem 0 2rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  gap: 1.25rem;
}

.site-footer a {
  color: var(--cyan);
  text-decoration: none;
}

.legal {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

/* App dock (PWA-like) */
.app-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 55;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.15rem;
  padding: 0.4rem 0.45rem calc(0.4rem + var(--safe-bottom));
  background: rgba(0, 18, 46, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(66, 176, 255, 0.28);
}

.dock-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  min-height: 52px;
  padding: 0.35rem 0.2rem;
  border-radius: 12px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  font-weight: 700;
}

.dock-item .ico {
  color: inherit;
}

.dock-item.is-active,
.dock-item:hover {
  color: var(--white);
  background: rgba(66, 176, 255, 0.16);
}

.dock-wa {
  color: var(--cyan);
}

.section {
  scroll-margin-top: calc(var(--header-h) + var(--safe-top) + 0.75rem);
}

#inicio {
  scroll-margin-top: 0;
}

.plan-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.plan-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(10, 31, 77, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.plan-card.is-featured {
  border-color: var(--cyan);
  box-shadow: 0 14px 36px rgba(66, 176, 255, 0.22);
}

.plan-ribbon {
  background: #2b3544;
  color: var(--white);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.45rem;
  text-transform: uppercase;
}

.plan-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.plan-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.plan-name {
  margin: 0;
  color: var(--navy-deep);
  font-size: 1.35rem;
  font-weight: 800;
}

.plan-price {
  margin: 0;
  color: var(--cyan-bright);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.1;
}

.plan-price small,
.plan-price .price-lista {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.2rem;
}

.plan-price .price-lista {
  text-decoration: none;
}

.plan-price-lista-only {
  color: var(--navy-deep);
}

.planes-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 0.5rem;
}

.planes-completos[hidden] {
  display: none !important;
}

.planes-completos:not([hidden]) {
  animation: expand-in 0.35s ease;
}

.onlysim-panel[hidden] {
  display: none !important;
}

.onlysim-panel:not([hidden]) {
  animation: expand-in 0.35s ease;
}

.onlysim-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.onlysim-head > div {
  flex: 1;
  min-width: min(100%, 16rem);
}

.onlysim-head h2 {
  margin: 0 0 0.35rem;
}

.onlysim-head p {
  margin: 0;
}

.planes-completos-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.planes-completos-head h2 {
  margin: 0;
}

@keyframes expand-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Selector internet HFC / GPON / Fibra */
.inet-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.65rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 18, 46, 0.08);
  border: 1px solid rgba(66, 176, 255, 0.35);
  color: var(--navy-deep);
  font-size: 0.8rem;
  font-weight: 800;
}

.inet-badge[hidden] {
  display: none !important;
}

.inet-condiciones {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 1rem 1.15rem;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 18, 46, 0.08);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.45rem;
}

.inet-condiciones[hidden] {
  display: none !important;
}

.inet-condiciones li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.inet-condiciones li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--navy-mid);
  font-weight: 800;
}

.inet-chooser {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.35rem 1.5rem;
  border: 1px solid rgba(0, 18, 46, 0.08);
}

.inet-step {
  margin-bottom: 1.15rem;
}

.inet-step-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.55rem;
}

.inet-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.inet-chip {
  appearance: none;
  border: 1.5px solid rgba(0, 18, 46, 0.14);
  background: linear-gradient(180deg, #fff 0%, var(--mist) 100%);
  color: var(--navy-deep);
  font: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 11, 41, 0.06);
}

.inet-chip:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(66, 176, 255, 0.18);
}

.inet-chip.is-active {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: var(--cyan);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(0, 11, 41, 0.28), 0 0 16px rgba(66, 176, 255, 0.22);
}

.inet-chip small {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.75;
  margin-top: 0.1rem;
}

.inet-chip.is-active small {
  opacity: 0.85;
}

.inet-speeds {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.inet-speed {
  appearance: none;
  border: 1.5px solid rgba(0, 18, 46, 0.12);
  background: #fff;
  color: var(--text);
  font: inherit;
  font-weight: 800;
  padding: 0.85rem 0.5rem;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.inet-speed:hover {
  border-color: var(--cyan);
}

.inet-speed.is-active {
  border-color: var(--navy);
  background: var(--cyan-dim);
  box-shadow: inset 0 0 0 1px var(--navy-mid);
}

.inet-speed .inet-speed-vel {
  display: block;
  font-size: 0.95rem;
  color: var(--navy-deep);
}

.inet-speed .inet-speed-price {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}

.inet-result {
  margin-top: 0.35rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(0, 18, 46, 0.08);
  animation: expand-in 0.3s ease;
}

.inet-result-main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.inet-result-pkg {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
}

.inet-result-vel {
  margin: 0.15rem 0 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-deep);
}

.inet-tech {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.inet-result-price {
  text-align: right;
}

.inet-result-price .inet-from,
.inet-result-price .inet-month {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
}

.inet-result-price strong {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--navy-deep);
  line-height: 1.1;
}

.inet-result .btn {
  width: 100%;
  justify-content: center;
}

.inet-note {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

@media (max-width: 640px) {
  .inet-speeds {
    grid-template-columns: 1fr;
  }

  .inet-chip {
    flex: 1 1 calc(50% - 0.5rem);
    text-align: left;
  }

  .inet-result-price {
    text-align: left;
  }
}

.section-alt {
  background: #e4eef8;
}

@media (min-width: 900px) {
  .plan-grid-full {
    grid-template-columns: repeat(3, 1fr);
  }
}

.plan-body ul {
  margin: 0.25rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
  flex: 1;
}

.plan-body li + li {
  margin-top: 0.3rem;
}

.benefits-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.benefit-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--cyan);
}

.benefit-card h3 {
  margin: 0 0 0.35rem;
  color: var(--navy-deep);
  font-size: 1.05rem;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.fineprint {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  .orbit,
  .hero-signal,
  .hero-float,
  .hero-blob,
  .chip-ico,
  .btn-glow,
  .btn-ico-pulse,
  .btn-ico-spin,
  .reveal,
  .nav-drawer {
    animation: none !important;
    transition: none !important;
  }

  .btn::before {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Tablet */
@media (min-width: 768px) {
  .brand-text span {
    display: block;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .header-wa {
    display: inline-flex;
  }

  .hero {
    padding: 3rem 0 3.5rem;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }

  .cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .plan-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .campaign-card {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .campaign-actions {
    justify-self: end;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .inet-speeds {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Laptop / desktop */
/* Burbuja flotante → WhatsApp */
.wa-bubble {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: calc(var(--dock-h) + var(--safe-bottom) + 0.85rem);
  z-index: 58;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.55rem;
  opacity: 0;
  transform: translateY(12px) scale(0.92);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.wa-bubble.is-ready {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.wa-bubble-tip {
  max-width: min(240px, 72vw);
  background: var(--white);
  color: var(--text);
  border-radius: 14px;
  padding: 0.75rem 2rem 0.75rem 0.9rem;
  box-shadow: 0 12px 32px rgba(0, 11, 41, 0.22);
  border: 1px solid rgba(66, 176, 255, 0.28);
  position: relative;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.wa-bubble-tip.is-visible {
  opacity: 1;
  transform: none;
}

.wa-bubble-tip[hidden] {
  display: none !important;
}

.wa-bubble-tip p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy-deep);
}

.wa-bubble-tip-close {
  position: absolute;
  top: 0.2rem;
  right: 0.35rem;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 8px;
}

.wa-bubble-tip-close:hover {
  background: var(--mist);
  color: var(--navy-deep);
}

.wa-bubble-btn {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: var(--white);
  background: linear-gradient(145deg, #001a45 0%, var(--navy-mid) 55%, #0d2f6b 100%);
  border: 1.5px solid rgba(66, 176, 255, 0.55);
  box-shadow:
    0 12px 28px rgba(0, 11, 41, 0.4),
    0 0 0 0 rgba(66, 176, 255, 0.35);
  animation: wa-pulse 2.4s ease-out infinite;
}

.wa-bubble-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 16px 34px rgba(0, 11, 41, 0.45),
    0 0 22px rgba(66, 176, 255, 0.35);
}

.wa-bubble-btn:active {
  transform: scale(0.96);
}

.wa-bubble-ico {
  width: 1.55rem;
  height: 1.55rem;
  position: relative;
  z-index: 1;
}

.wa-bubble-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(66, 176, 255, 0.45);
  animation: wa-ring 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes wa-pulse {
  0%,
  100% {
    box-shadow:
      0 12px 28px rgba(0, 11, 41, 0.4),
      0 0 0 0 rgba(66, 176, 255, 0.35);
  }
  70% {
    box-shadow:
      0 12px 28px rgba(0, 11, 41, 0.4),
      0 0 0 14px rgba(66, 176, 255, 0);
  }
}

@keyframes wa-ring {
  0% {
    transform: scale(0.92);
    opacity: 0.85;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@media (min-width: 1024px) {
  .wa-bubble {
    bottom: max(1.5rem, env(safe-area-inset-bottom));
    right: max(1.5rem, env(safe-area-inset-right));
  }

  .wa-bubble-btn {
    width: 64px;
    height: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wa-bubble-btn,
  .wa-bubble-ring {
    animation: none !important;
  }
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .app-dock {
    display: none;
  }

  body {
    padding-bottom: 0;
  }

  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .plan-grid-full {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Large desktop */
@media (min-width: 1280px) {
  .container {
    width: min(1180px, calc(100% - 3rem));
  }

  .hero h1 {
    font-size: clamp(2rem, 3vw, 2.75rem);
  }
}

