/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #020b18;
  --bg2:       #040f20;
  --bg3:       #071428;
  --card:      rgba(255,255,255,0.04);
  --card-border: rgba(0,170,255,0.15);
  --blue:      #00aaff;
  --blue-dim:  #0077cc;
  --cyan:      #00d4ff;
  --pink:      #ff3cac;
  --green:     #25d366;
  --text:      #e8f0fe;
  --text-dim:  #8ba0b8;
  --star:      #f5c518;
  --font:      'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  padding-bottom: 64px;
}

@media (min-width: 769px) { body { padding-bottom: 0; } }

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* CANVAS PARTICLES */
#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* CONTAINER */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 0 18px rgba(0,170,255,0.45);
}
.btn-primary:hover {
  background: var(--cyan);
  box-shadow: 0 0 28px rgba(0,212,255,0.6);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(2,11,24,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,170,255,0.1);
  transition: background 0.3s;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-size: 15px; font-weight: 900; color: #fff; letter-spacing: 1px; }
.logo-sub  { font-size: 9px; font-weight: 600; color: var(--blue); letter-spacing: 2px; }

.nav-desktop {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-dim);
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link.active { color: var(--blue); }

.header-cta { font-size: 12px; flex-shrink: 0; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
  margin-left: auto;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  background: rgba(2,11,24,0.98);
  border-top: 1px solid rgba(0,170,255,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-nav-link {
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dim);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-nav-link:hover { color: var(--blue); }

/* ===== HERO ===== */
.hero {
  padding: 60px 0 40px;
  position: relative;
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: start;
  width: 100%;
}

/* Hero Left */
.hero-left { display: flex; flex-direction: column; gap: 20px; }
.badge {
  display: inline-block;
  border: 1px solid rgba(0,170,255,0.4);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 4px;
  width: fit-content;
}
.hero-title {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}
.hero-title .highlight { color: var(--blue); }
.hero-sub {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 420px;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 8px;
  padding: 16px;
  background: rgba(0,170,255,0.04);
  border: 1px solid rgba(0,170,255,0.1);
  border-radius: 10px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.4;
}
.stat-icon { color: var(--blue); font-size: 18px; }

/* Hero Center - ORB */
.hero-center { display: flex; justify-content: center; align-items: flex-start; padding-top: 20px; }
.orb-wrapper {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(0,170,255,0.5);
  animation: orbRotate 12s linear infinite;
}
.orb-ring-outer { width: 320px; height: 320px; border-color: rgba(0,170,255,0.2); animation-duration: 20s; }
.orb-ring-mid   { width: 280px; height: 280px; border-color: rgba(0,170,255,0.4); animation-duration: 14s; animation-direction: reverse; }
.orb-ring-inner { width: 240px; height: 240px; border-color: rgba(0,212,255,0.7); box-shadow: 0 0 18px rgba(0,170,255,0.3), inset 0 0 18px rgba(0,170,255,0.1); }

.orb-ring-outer::before, .orb-ring-mid::before, .orb-ring-inner::before {
  content: '';
  position: absolute;
  top: -5px; left: 50%;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  transform: translateX(-50%);
}

.orb-glow {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,170,255,0.2) 0%, transparent 70%);
  animation: orbPulse 3s ease-in-out infinite;
}
@keyframes orbPulse {
  0%,100% { transform: scale(1); opacity: 0.7; }
  50%      { transform: scale(1.1); opacity: 1; }
}
@keyframes orbRotate { to { transform: rotate(360deg); } }

.orb-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.orb-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.orb-logo svg, .orb-logo-img { filter: drop-shadow(0 0 10px rgba(0,170,255,0.7));border-radius: 100%; }
.logo-icon img { filter: drop-shadow(0 0 6px rgba(0,170,255,0.5)); }
.orb-brand { text-align: center; line-height: 1.1; }
.orb-brand-name { display: block; font-size: 13px; font-weight: 900; color: #fff; letter-spacing: 1px; }
.orb-brand-sub  { display: block; font-size: 8px; font-weight: 600; color: var(--blue); letter-spacing: 2px; }

.orb-features { display: flex; flex-direction: column; gap: 6px; }
.orb-feat {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 10px;
  color: var(--text);
  background: rgba(0,170,255,0.06);
  border: 1px solid rgba(0,170,255,0.12);
  border-radius: 6px;
  padding: 6px 10px;
}
.orb-feat i { color: var(--blue); font-size: 12px; margin-top: 1px; flex-shrink: 0; }
.orb-feat small { display: block; color: var(--blue); font-weight: 700; font-size: 9px; letter-spacing: 0.3px; }

/* Hero Right */
.hero-right { display: flex; flex-direction: column; gap: 16px; padding-top: 20px; }
.hero-card {
  border-radius: 12px;
  border: 1px solid var(--card-border);
  background: rgba(4,15,32,0.9);
  backdrop-filter: blur(12px);
  padding: 20px;
}
.card-days {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-top: 2px solid var(--blue);
}
.card-icon-wrap {
  background: rgba(0,170,255,0.1);
  border-radius: 10px;
  padding: 12px;
  flex-shrink: 0;
}
.card-icon-rocket {
  font-size: 28px;
  color: var(--blue);
  filter: drop-shadow(0 0 8px var(--blue));
  animation: rocketFloat 2.5s ease-in-out infinite;
}
@keyframes rocketFloat {
  0%,100% { transform: translateY(0) rotate(-10deg); }
  50%      { transform: translateY(-6px) rotate(-10deg); }
}
.card-text { display: flex; flex-direction: column; gap: 2px; }
.card-label { font-size: 10px; font-weight: 600; color: var(--text-dim); letter-spacing: 0.5px; }
.card-days-num { font-size: 20px; font-weight: 900; color: var(--blue); line-height: 1.1; }
.card-tagline { font-size: 9px; color: var(--text-dim); letter-spacing: 0.5px; margin-top: 4px; }

.card-payment { display: flex; flex-direction: column; gap: 12px; }
.card-payment-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.5px;
}
.card-payment-header i { color: var(--blue); font-size: 16px; }
.payment-row { display: flex; align-items: flex-start; gap: 12px; }
.payment-badge {
  width: 44px; height: 44px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900;
  flex-shrink: 0;
}
.badge-blue  { background: rgba(0,170,255,0.15); color: var(--blue); border: 1px solid rgba(0,170,255,0.3); }
.badge-pink  { background: rgba(255,60,172,0.15); color: var(--pink); border: 1px solid rgba(255,60,172,0.3); }
.payment-info { display: flex; flex-direction: column; gap: 2px; }
.payment-info strong { font-size: 11px; font-weight: 800; color: #fff; }
.payment-info span   { font-size: 10px; color: var(--text-dim); line-height: 1.4; }
.payment-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: var(--text-dim);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 10px;
}
.payment-footer i { color: var(--blue); }

/* ===== TECHNOLOGIES ===== */
.technologies {
  padding: 36px 0 40px;
  border-top: 1px solid rgba(0,170,255,0.08);
  position: relative;
  z-index: 1;
}
.section-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-dim);
  margin-bottom: 24px;
}
.tech-grid {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: default;
  transition: transform 0.25s ease;
}
.tech-item:hover { transform: translateY(-4px); }
.tech-item img, .tech-item svg { width: 44px; height: 44px; object-fit: contain; }
.tech-item span { font-size: 9px; font-weight: 700; letter-spacing: 0.5px; color: var(--text-dim); }
.tech-item-svg svg, .tech-item-meta svg, .tech-item-seo svg { width: 44px; height: 44px; }

/* ===== TRABAJOS ===== */
.trabajos {
  padding: 48px 0;
  position: relative;
  z-index: 1;
}
.section-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.section-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
}
.section-title.centered { text-align: center; margin-bottom: 32px; }
.ver-todos {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.ver-todos:hover { gap: 10px; }

/* Carousel */
.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.carousel-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(0,170,255,0.1);
  border: 1px solid rgba(0,170,255,0.25);
  color: var(--blue);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
  z-index: 2;
}
.carousel-btn:hover {
  background: rgba(0,170,255,0.25);
  box-shadow: 0 0 12px rgba(0,170,255,0.3);
}
.carousel-track-outer { overflow: hidden; flex: 1; }
.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Project Cards */
.project-card {
  min-width: calc(20% - 13px);
  background: rgba(4,15,32,0.95);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.25s, box-shadow 0.25s;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,170,255,0.15);
}
.project-images { height: 180px; overflow: hidden; }
.project-images img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.project-card:hover .project-images img { transform: scale(1.05); }
.project-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 12px 4px;
  gap: 8px;
}
.project-info h3 { font-size: 11px; font-weight: 800; color: #fff; margin-bottom: 2px; }
.project-type    { font-size: 9px; color: var(--text-dim); }
.project-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 15px;
  font-weight: 900;
  color: var(--blue);
  white-space: nowrap;
  flex-shrink: 0;
}
.project-stat small { font-size: 8px; color: var(--text-dim); font-weight: 400; }
.btn-ver-proyecto {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 6px auto 10px;
  width: fit-content;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--blue);
  padding: 7px 18px;
  border: 1px solid rgba(0,170,255,0.25);
  border-radius: 6px;
  background: rgba(0,170,255,0.05);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-align: center;
}
.btn-ver-proyecto:hover { background: rgba(0,170,255,0.15); border-color: var(--blue); }

/* ===== TESTIMONIOS ===== */
.testimonios {
  padding: 52px 0;
  position: relative;
  z-index: 1;
}
.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.testimonial-card {
  background: rgba(4,15,32,0.9);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 18px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,170,255,0.12);
}
.testimonial-header { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; }
.testimonial-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0,170,255,0.3);
  flex-shrink: 0;
}
.testimonial-header strong { display: block; font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.testimonial-header span  { font-size: 11px; color: var(--text-dim); display: block; margin-bottom: 4px; }
.stars i { color: var(--star); font-size: 10px; }
.testimonial-card p { font-size: 12px; color: var(--text-dim); line-height: 1.6; font-style: italic; }
.quote-icon {
  position: absolute;
  bottom: 14px; right: 14px;
  font-size: 22px;
  color: rgba(0,170,255,0.15);
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active {
  background: var(--blue);
  box-shadow: 0 0 6px var(--blue);
  width: 20px;
  border-radius: 4px;
}

/* ===== PROCESO + CTA ===== */
.proceso-cta {
  padding: 52px 0;
  position: relative;
  z-index: 1;
}
.proceso-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.proceso-block {
  background: rgba(4,15,32,0.7);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 28px;
}
.proceso-steps { display: flex; flex-direction: column; gap: 0; margin-top: 20px; }
.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 8px 0;
}
.step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(0,170,255,0.4);
}
.step-content strong { display: block; font-size: 12px; font-weight: 800; color: #fff; margin-bottom: 3px; }
.step-content p { font-size: 11px; color: var(--text-dim); line-height: 1.5; }
.step-connector {
  width: 1px;
  height: 16px;
  background: linear-gradient(to bottom, rgba(0,170,255,0.5), rgba(0,170,255,0.1));
  margin-left: 15px;
}

/* CTA Block */
.cta-block {
  background: rgba(4,15,32,0.7);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,170,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-rocket-wrap {
  position: absolute;
  top: 16px; right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-rocket-glow {
  position: absolute;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,170,255,0.3) 0%, transparent 70%);
  animation: orbPulse 2s ease-in-out infinite;
}
.cta-rocket-icon {
  font-size: 36px;
  color: var(--blue);
  filter: drop-shadow(0 0 12px var(--blue));
  animation: rocketFloat 2.5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
.cta-title {
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  max-width: 280px;
}
.cta-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.cta-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.cta-list li i { color: var(--blue); font-size: 12px; }
.sin-compromiso {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-dim);
  align-self: flex-start;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg2);
  border-top: 1px solid rgba(0,170,255,0.1);
  position: relative;
  z-index: 1;
  padding-top: 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 2fr 1.5fr;
  gap: 36px;
  padding-bottom: 36px;
}
.footer-brand p {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 240px;
}
.footer-nav h4, .footer-contact h4, .footer-social h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--blue);
  margin-bottom: 14px;
}
.footer-nav-cols { display: flex; gap: 28px; }
.footer-nav-cols div { display: flex; flex-direction: column; gap: 8px; }
.footer-nav-cols a {
  font-size: 12px;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-nav-cols a:hover { color: var(--blue); }
.footer-contact { display: flex; flex-direction: column; gap: 0; }
.footer-contact a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--text-dim);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s;
  line-height: 1.5;
}
.footer-contact a:hover { color: var(--blue); }
.footer-contact a i { color: var(--blue); font-size: 12px; margin-top: 2px; flex-shrink: 0; }
.social-icons { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(0,170,255,0.08);
  border: 1px solid rgba(0,170,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-dim);
  transition: all 0.2s;
}
.social-icon:hover {
  background: rgba(0,170,255,0.2);
  color: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 10px rgba(0,170,255,0.3);
}
.payment-methods { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.payment-method {
  height: 32px;
  min-width: 52px;
  border-radius: 5px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  font-size: 12px;
}
.visa { color: #fff; font-weight: 900; font-style: italic; font-size: 14px; letter-spacing: -1px; }
.mastercard { gap: 0; }
.mc-circle {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: inline-block;
}
.mc-red    { background: #eb001b; }
.mc-orange { background: #f79e1b; margin-left: -8px; opacity: 0.9; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  color: var(--text-dim);
  max-width: 1240px;
  margin: 0 auto;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  left: 20px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 90;
  transition: transform 0.25s, box-shadow 0.25s;
  animation: waPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.7);
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50%      { box-shadow: 0 4px 30px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ===== MOBILE BOTTOM NAV ===== */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  background: rgba(4,15,32,0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0,170,255,0.15);
  z-index: 95;
  justify-content: space-around;
  align-items: center;
  padding: 0 8px;
}
.mob-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--text-dim);
  padding: 4px 8px;
  transition: color 0.2s;
}
.mob-nav-item i { font-size: 16px; }
.mob-nav-item.active, .mob-nav-item:hover { color: var(--blue); }
.mob-nav-wa { color: var(--text-dim); margin-top: -18px; }
.mob-wa-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.5);
  border: 3px solid var(--bg);
}
.mob-nav-wa span { color: var(--green); }

/* ===== SCROLL ANIMATIONS ===== */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos="fade-right"] { transform: translateX(-24px); }
[data-aos="fade-left"]  { transform: translateX(24px); }
[data-aos="fade-up"]    { transform: translateY(24px); }
[data-aos].aos-animate  { opacity: 1; transform: translate(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr auto; }
  .hero-right { display: none; }
  .orb-wrapper { width: 280px; height: 280px; }
  .orb-ring-outer { width: 280px; height: 280px; }
  .orb-ring-mid   { width: 244px; height: 244px; }
  .orb-ring-inner { width: 210px; height: 210px; }
  .testimonios-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .project-card { min-width: calc(33.33% - 11px); }
}

@media (max-width: 900px) {
  .proceso-cta-grid { grid-template-columns: 1fr; }
  .hero-stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .header-cta  { display: none; }
  .hamburger   { display: flex; }
  .hero-grid   { grid-template-columns: 1fr; justify-items: center; }
  .hero-left   { text-align: center; align-items: center; }
  .hero-left .hero-buttons { justify-content: center; }
  .hero-left .hero-stats-row { justify-content: center; }
  .hero-center { display: flex; justify-content: center; align-items: center; padding-top: 10px; order: -1; }
  .orb-wrapper { width: 260px; height: 260px; }
  .orb-ring-outer { width: 260px; height: 260px; }
  .orb-ring-mid   { width: 226px; height: 226px; }
  .orb-ring-inner { width: 192px; height: 192px; }
  .orb-glow { width: 170px; height: 170px; }
  .project-stat { display:none; }
 .badge{ padding: 4px 4px;margin: 20px; }
   
  .testimonios-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand, .footer-nav, .footer-contact, .footer-social { text-align: center; align-items: center; }
  .footer-nav-cols { justify-content: center; }
  .footer-contact a { justify-content: center; }
  .social-icons { justify-content: center; }
  .payment-methods { justify-content: center; }
  .mobile-bottom-nav { display: flex;padding: 3px; }
  .whatsapp-float { bottom: 76px; }
  .project-card { min-width: calc(80vw - 32px); }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer { padding-bottom: 90px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-stats-row { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { gap: 20px; }
  .section-header-row { flex-direction: column; align-items: flex-start; }
  .orb-wrapper { width: 220px; height: 220px; }
  .orb-ring-outer { width: 220px; height: 220px; }
  .orb-ring-mid   { width: 192px; height: 192px; }
  .orb-ring-inner { width: 164px; height: 164px; }
  .orb-glow { width: 140px; height: 140px; }
  .orb-logo img { width: 48px; height: 48px; }
  .orb-brand-name { font-size: 12px; }
  .orb-brand-sub  { font-size: 7px; }
  .orb-feat { font-size: 8px; }
  .orb-feat small { font-size: 7px; }
} 
@media (max-width: 320px) {
  .hero-buttons { flex-direction: column; }
  .hero-stats-row { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { gap: 20px; }
  .section-header-row { flex-direction: column; align-items: flex-start; }
  .orb-wrapper { width: 220px; height: 220px; }
  .orb-ring-outer { width: 220px; height: 220px; }
  .orb-ring-mid   { width: 192px; height: 192px; }
  .orb-ring-inner { width: 164px; height: 164px; }
  .orb-glow { width: 140px; height: 140px; }
  .orb-logo img { width: 48px; height: 48px; }
  .orb-brand-name { font-size: 12px; }
  .orb-brand-sub  { font-size: 7px; }
  .orb-feat { font-size: 8px; }
  .orb-feat small { font-size: 2px; }
  .btn-ver-proyecto{ justify-content: center;
    align-items: center;
    margin: 6px 10px 10px;
    text-align: center;}
}
.project-stat {display:none;}
.project-image{height: 100px; overflow: hidden;}

