:root {
  --bg: #06070D;
  --bg2: #0A0C18;
  --bg3: #0E1022;
  --blue: #4D6BFF;
  --cyan: #00D4FF;
  --green: #00FFB2;
  --white: #EEF0FF;
  
  /* MEJORA DE CONTRASTE: Grises premium con excelente legibilidad en pantallas AMOLED/OLED */
  --gray: #ced4f0;   /* Párrafos, subtítulos y descripciones principales */
  --gray2: #bbbec7;  /* Enlaces del navbar sin hover, labels secundarios y textos pequeños */
  
  --border: rgba(77,107,255,0.16);
  --border-c: rgba(0,212,255,0.22);
}


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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%; /* Evita bugs de escala de fuente en iOS */
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* NAVBAR */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 18px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(6, 7, 13, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  width: 80%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-sym {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.ld {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.ld-t {
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.ld-r {
  display: flex;
  gap: 4px;
}

.ld-b {
  background: rgba(238, 240, 255, 0.85);
}

.logo-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
}

.logo-name span {
  color: var(--cyan);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray2);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--cyan);
}

.nav-cta {
  background: transparent;
  border: 1.5px solid var(--cyan);
  color: var(--cyan) !important;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  transition: background 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  background: rgba(0, 212, 255, 0.08) !important;
  box-shadow: 0 0 22px rgba(0, 212, 255, 0.2);
}

/* HERO */
.hero {
  padding: 140px 64px 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(77, 107, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(77, 107, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-g {
  position: absolute;
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(77, 107, 255, 0.08) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 24px;
  justify-content: center;
}

.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--cyan);
}

.hero-title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
  position: relative;
}

.hero-title span {
  color: var(--cyan);
}

.hero-sub {
  font-size: 17px;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 48px;
  position: relative;
}

.hero-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.badge.active, .badge:hover {
  border-color: var(--border-c);
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.04);
}

/* SECCIONES DE SERVICIOS */
.services-container {
  padding: 0 64px 80px;
}

.svc-section {
  margin-bottom: 0;
  border-bottom: 1px solid var(--border);
}

.svc-section:last-child {
  border-bottom: none;
}

.svc-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 72px 0;
  position: relative;
}

.svc-header.reverse {
  direction: rtl;
}

.svc-header.reverse > * {
  direction: ltr;
}

/* Contenedores Visuales Generales */
.svc-visual {
  border-radius: 20px;
  overflow: hidden;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid var(--border);
}

.svc-visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.visual-flex-col {
  flex-direction: column;
}

.visual-large-icon {
  font-size: 56px;
  user-select: none;
}

.svc-visual-bg-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(238, 240, 255, 0.12);
  user-select: none;
}

/* Estilos de Fondo Específicos */
.visual-web { background: linear-gradient(135deg, #06080F, #0D1130, #141A4A); }
.visual-market { background: linear-gradient(135deg, #0A0614, #180A2E, #220C40); }
.visual-gmb { background: linear-gradient(135deg, #040C08, #0A2014, #0F3020); }
.visual-wa { background: linear-gradient(135deg, #030D08, #071A10, #0A2818); }
.visual-ia { background: linear-gradient(135deg, #040510, #080A1E, #0C0F2C); }
.visual-mobile { background: linear-gradient(135deg, #050A08, #0A1812, #0F2418); }

/* MAQUETAS (MOCKS) INTERNAS */
.svc-mock {
  width: 100%;
  max-width: 280px;
  background: rgba(9, 9, 26, 0.95);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.sm-bar {
  background: #11122A;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.smd {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.smd-red { background: #FF5F57; }
.smd-yellow { background: #FEBC2E; }
.smd-green { background: #28C840; }

.sm-url {
  flex: 1;
  height: 14px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 3px;
  margin-left: 5px;
  font-size: 7px;
  color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  padding: 0 66px;
  font-family: monospace;
}

.sm-body {
  padding: 12px;
}

.sm-hero-bar {
  height: 52px;
  border-radius: 7px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  padding: 0 12px;
}

.bar-web {
  background: linear-gradient(90deg, #1A1F6E, #4D6BFF);
  box-shadow: 0 0 20px rgba(77, 107, 255, 0.2);
}

.bar-market {
  background: linear-gradient(90deg, #220C40, #7B2FBE);
  box-shadow: 0 0 20px rgba(123, 47, 190, 0.2);
}

.sm-htxt {
  font-size: 8px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

.sm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 6px;
}

.sm-card {
  height: 36px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* Modificadores de tarjetas de mockups */
.card-web-1 { background: rgba(77, 107, 255, 0.1); border-color: rgba(77, 107, 255, 0.15); }
.card-web-2 { background: rgba(0, 212, 255, 0.06); border-color: rgba(0, 212, 255, 0.1); }
.card-web-3 { background: rgba(77, 107, 255, 0.08); border-color: rgba(77, 107, 255, 0.12); }
.card-market-1 { background: rgba(123, 47, 190, 0.12); border-color: rgba(123, 47, 190, 0.2); }
.card-market-2 { background: rgba(168, 85, 247, 0.08); border-color: rgba(168, 85, 247, 0.15); }
.card-market-3 { background: rgba(123, 47, 190, 0.1); border-color: rgba(123, 47, 190, 0.18); }
.card-market-4 { background: rgba(168, 85, 247, 0.06); border-color: rgba(168, 85, 247, 0.12); }
.card-market-5 { background: rgba(0, 255, 178, 0.06); border-color: rgba(0, 255, 178, 0.12); }

.sm-rows {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sm-row {
  height: 22px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  padding: 0 8px;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.sm-ri {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ri-cyan { background: #00D4FF; box-shadow: 0 0 4px #00D4FF; }
.ri-blue { background: #4D6BFF; }
.ri-green { background: #00FFB2; box-shadow: 0 0 4px #00FFB2; }

.sm-rb {
  flex: 1;
  height: 3px;
  border-radius: 2px;
}

.rb-cyan { background: rgba(0, 212, 255, 0.12); width: 100%; }
.rb-blue { background: rgba(77, 107, 255, 0.1); width: 70%; }
.rb-green { background: rgba(0, 255, 178, 0.1); width: 55%; }

/* Mockup Google My Business (GMB) */
.visual-gmb .visual-large-icon {
  filter: drop-shadow(0 0 16px rgba(0, 255, 178, 0.3));
}

.gmb-box {
  background: rgba(10, 20, 15, 0.9);
  border: 1px solid rgba(0, 255, 178, 0.2);
  border-radius: 12px;
  padding: 14px 20px;
  text-align: center;
  max-width: 240px;
  width: 100%;
}

.gmb-box-eyebrow {
  font-size: 10px;
  font-weight: 700;
  color: rgba(0, 255, 178, 0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.gmb-box-stars {
  font-size: 14px;
  margin-bottom: 4px;
}

.gmb-box-stats {
  font-size: 11px;
  color: var(--gray);
}

.gmb-actions {
  display: flex;
  gap: 8px;
}

.gmb-btn {
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 700;
}

.btn-gmb-call {
  background: rgba(0, 255, 178, 0.08);
  border: 1px solid rgba(0, 255, 178, 0.2);
  color: #00FFB2;
}

.btn-gmb-nav {
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: #00D4FF;
}

/* Mockup WhatsApp Business */
.wa-gap { gap: 12px; }

.wa-glow {
  filter: drop-shadow(0 0 16px rgba(37, 211, 102, 0.4));
}

.wa-box {
  background: rgba(5, 15, 10, 0.95);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: 12px;
  padding: 14px;
  max-width: 240px;
  width: 100%;
}

.wa-box-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(37, 211, 102, 0.1);
}

.wa-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.wa-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
}

.wa-status {
  font-size: 10px;
  color: rgba(37, 211, 102, 0.7);
}

.wa-msg {
  background: rgba(37, 211, 102, 0.08);
  border-radius: 8px 8px 8px 0;
  padding: 8px 10px;
  font-size: 11px;
  color: var(--gray);
  line-height: 1.4;
  margin-bottom: 8px;
}

.wa-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.wa-chip {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: 14px;
  padding: 4px 10px;
  font-size: 10px;
  color: #25D366;
  font-weight: 600;
}

/* Mockup Agentes de Inteligencia Artificial */
.ia-gap { gap: 14px; }

.ia-glow {
  filter: drop-shadow(0 0 16px rgba(77, 107, 255, 0.5));
}

.ia-box {
  background: rgba(8, 10, 30, 0.95);
  border: 1px solid rgba(77, 107, 255, 0.25);
  border-radius: 12px;
  padding: 14px;
  max-width: 240px;
  width: 100%;
}

.ia-box-title {
  font-size: 10px;
  font-weight: 700;
  color: rgba(77, 107, 255, 0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ia-box-rows {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ia-row {
  height: 22px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  gap: 6px;
}

.row-blue { background: rgba(77, 107, 255, 0.08); border: 1px solid rgba(77, 107, 255, 0.12); }
.row-cyan { background: rgba(0, 212, 255, 0.05); border: 1px solid rgba(0, 212, 255, 0.1); }
.row-green { background: rgba(0, 255, 178, 0.05); border: 1px solid rgba(0, 255, 178, 0.1); }

.ia-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.dot-blue { background: #4D6BFF; box-shadow: 0 0 5px #4D6BFF; }
.dot-cyan { background: #00D4FF; box-shadow: 0 0 5px #00D4FF; }
.dot-green { background: #00FFB2; box-shadow: 0 0 5px #00FFB2; }

.ia-bar {
  flex: 1;
  height: 3px;
  border-radius: 2px;
}

.bar-fill-blue { background: rgba(77, 107, 255, 0.15); width: 100%; }
.bar-fill-cyan { background: rgba(0, 212, 255, 0.1); width: 70%; }
.bar-fill-green { background: rgba(0, 255, 178, 0.1); width: 85%; }

.ia-box-footer {
  margin-top: 8px;
  font-size: 10px;
  color: rgba(238, 240, 255, 0.3);
  text-align: center;
}

/* Mockup Aplicaciones Móviles */
.mobile-gap { gap: 14px; }

.mobile-glow {
  filter: drop-shadow(0 0 16px rgba(0, 255, 178, 0.3));
}

.mobile-mock {
  background: rgba(8, 18, 12, 0.95);
  border: 1px solid rgba(0, 255, 178, 0.2);
  border-radius: 16px;
  padding: 14px;
  max-width: 180px;
  width: 100%;
}

.mm-hero {
  height: 100px;
  background: linear-gradient(135deg, #0A3324, #1D9E75);
  border-radius: 10px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mm-hero-inner {
  text-align: center;
}

.mm-logo {
  font-size: 22px;
}

.mm-tag {
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  margin-top: 4px;
  letter-spacing: 0.06em;
}

.mm-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mm-line {
  height: 18px;
  border-radius: 4px;
}

.l-full { background: rgba(0, 255, 178, 0.08); border: 1px solid rgba(0, 255, 178, 0.12); width: 100%; }
.l-mid  { background: rgba(0, 255, 178, 0.05); border: 1px solid rgba(0, 255, 178, 0.08); width: 75%; }
.l-high { background: rgba(0, 255, 178, 0.08); border: 1px solid rgba(0, 255, 178, 0.12); width: 90%; }

.mm-btn {
  margin-top: 8px;
  height: 28px;
  background: linear-gradient(90deg, #1D9E75, #00FFB2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #0A2818;
}

/* INFORMACIÓN DE TEXTO DE SERVICIOS */
.svc-info {
  display: flex;
  flex-direction: column;
}

.svc-tag-pill {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  background: rgba(0, 212, 255, 0.07);
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}

.svc-title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 14px;
}

.svc-tagline {
  font-size: 16px;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 16px;
  line-height: 1.4;
}

/* Bloques de Información Estructurada */
.info-block {
  margin-bottom: 16px;
  padding: 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.info-block-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.info-block-text {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
}

/* Lista de Características Grid */
.items-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}

.item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(238, 240, 255, 0.7);
  line-height: 1.5;
  padding: 10px 12px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.item:hover {
  border-color: var(--border-c);
}

.item-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 5px var(--cyan);
  flex-shrink: 0;
  margin-top: 6px;
}

/* FILA DE BOTONES DE ACCIÓN (CTAs) */
.svc-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 9px;
  text-decoration: none;
  box-shadow: 0 0 28px rgba(77, 107, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-p:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 44px rgba(77, 107, 255, 0.5);
}

.btn-g {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 9px;
  border: 1.5px solid var(--cyan);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-g:hover {
  transform: translateY(-2px);
  background: rgba(0, 212, 255, 0.07);
}

/* SECCIÓN DEL LLAMADO A LA ACCIÓN FINAL */
.cta-sec {
  padding: 100px 64px;
  text-align: center;
  position: relative;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.cta-glow {
  position: absolute;
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(77, 107, 255, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(26px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
}

.cta-title span {
  color: var(--cyan);
}

.cta-sub {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
  position: relative;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 24px;
}

.cta-alts {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.calt {
  font-size: 13px;
  color: var(--gray);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.calt:hover {
  color: var(--cyan);
}

.calt strong {
  color: var(--white);
  font-weight: 700;
}

/* FOOTER */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 32px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.fbrand {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
}

.fbrand span {
  color: var(--cyan);
}

.fcopy {
  font-size: 12px;
  color: rgba(238, 240, 255, 0.2);
}

.fback {
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.fback:hover {
  gap: 10px;
}

/* BOTÓN FLOTANTE DE WHATSAPP */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 300;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-float:hover {
  transform: scale(1.1);
}

.gdiv {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.18), transparent);
  margin: 0;
}

/* ANIMACIONES (REVEAL) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  will-change: transform, opacity; /* Optimización de hardware gráfico */
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- ADAPTABILIDAD MÓVIL (RESPONSIVE) --- */
@media (max-width: 1024px) {
  nav {
    padding: 16px 24px;
  }
  .hero {
    padding: 120px 24px 60px;
  }
  .services-container {
    padding: 0 24px 60px;
  }
  .svc-header {
    gap: 40px;
    padding: 56px 0;
  }
  .svc-visual {
    height: 320px;
  }
  footer {
    padding: 28px 24px;
  }
}
/* Botón Hamburguesa Oculto por Defecto en Desktop */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 250;
}
.ld-t{
      background: var(--cyan);
    box-shadow: 0 0 12px var(--cyan);
}
.nav-toggle .bar {
  width: 22px;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              background-color 0.3s ease;
}

/* Estado Activo del Botón (Transformación a X) */
.nav-toggle.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: var(--cyan);
}

.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background-color: var(--cyan);
}
@media (max-width: 768px) {

  .nav-links.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%; /* Oculto completamente a la derecha */
    width: 100%;
    height: 100vh;
    background: rgba(6, 7, 13, 0.98); /* Fondo AMOLED opaco premium */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px; /* Espaciado cómodo al tacto */
    padding: 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 240;
  }

  /* Despliegue Suave del Menú */
  .nav-links.mobile-menu.active {
    right: 0;
  }

  /* Ajustes estéticos de los enlaces en móviles */
  .nav-links.mobile-menu a {
    font-size: 16px; /* Letra más grande y legible en pantallas táctiles */
    letter-spacing: 0.12em;
    width: 100%;
    text-align: center;
    padding: 8px 0;
  }

  /* El botón CTA se adapta al ancho móvil sin perder la estética */
  .nav-links.mobile-menu .nav-cta {
    margin-top: 12px;
    width: auto;
    padding: 12px 32px;
    font-size: 14px;
  }

  .nav-toggle {
    display: flex; /* Se muestra el botón en móviles */
  }
  .svc-header, .svc-header.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    padding: 48px 0;
  }
  .svc-header.reverse > * {
    direction: ltr;
  }
  .svc-visual {
    height: 260px;
    order: -1; /* Mantiene la consistencia visual: primero el mockup, luego el texto en móviles */
  }
  .items-list {
    grid-template-columns: 1fr; /* Lista de 1 sola columna en dispositivos compactos */
  }
  .cta-sec {
    padding: 80px 20px;
  }
  .cta-alts {
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }
  footer {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}