/* ══════════════════════════════════════════
   NETDESIGN PRO — style.css
   Paleta: #0A2342 · #7EC8F5 · #CCECFE · #F6BAA2 · #FFF
   Glass Liquid · SVG Icons · Full Responsive
   ══════════════════════════════════════════ */
 
/* ── VARIABLES ── */
:root {
  --navy:       #0A2342;
  --navy-mid:   #112d56;
  --navy-light: #1a3d70;
  --sky:        #7EC8F5;
  --sky-dim:    rgba(126,200,245,0.18);
  --baby:       #CCECFE;
  --coral:      #F6BAA2;
  --coral-sat:  #e8845a;
  --white:      #ffffff;
  --glass-bg:   rgba(255,255,255,0.06);
  --glass-border: rgba(126,200,245,0.2);
  --glass-shine:  rgba(255,255,255,0.1);
  --text-muted: rgba(255,255,255,0.55);
  --text-light: #3d5a80;
  --nav-h:      66px;
  --radius-card: 22px;
  --radius-btn:  100px;
}
 
/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; }
 
/* ── CUSTOM CURSOR (desktop only) ── */
@media (pointer: fine) {
  body { cursor: none; }
  #cursor-glow {
    position: fixed; width: 280px; height: 280px; border-radius: 50%;
    background: radial-gradient(circle, rgba(126,200,245,0.07) 0%, transparent 70%);
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s; will-change: transform;
  }
  #cursor-dot {
    position: fixed; width: 8px; height: 8px; border-radius: 50%;
    background: var(--coral); pointer-events: none; z-index: 10000;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 12px rgba(246,186,162,0.8);
    transition: transform 0.1s;
  }
}
@media (pointer: coarse) {
  #cursor-glow, #cursor-dot { display: none; }
}
 
/* ── TYPOGRAPHY ── */
.font-display {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.font-display-md {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.12;
}
h1,h2,h3,h4 { font-family: 'Space Grotesk', sans-serif; }
 
/* ── UTILITY ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 48px; position: relative; z-index: 1; }
.section-dark > *:not(canvas),
.page-hero > *:not(canvas),
.home-hero > *:not(canvas) { position: relative; z-index: 1; }
.section-pad { padding: 96px 0; }
.section-light { background: var(--baby); }
.section-white { background: var(--white); color: var(--navy); }
.section-dark  { background: var(--navy); position: relative; overflow: hidden; }
 
/* ── EYEBROW ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.eyebrow-line { width: 22px; height: 1.5px; flex-shrink: 0; }
.eyebrow-line.coral { background: var(--coral-sat); }
.eyebrow-line.sky   { background: var(--sky); }
.eyebrow-text { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.eyebrow-text.coral { color: var(--coral-sat); }
.eyebrow-text.sky   { color: #4a9bc4; }
.eyebrow-text.navy  { color: var(--navy); }
 
/* ── SECTION TITLES ── */
.s-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 16px;
}
.s-title em { font-style: normal; color: var(--coral-sat); }
.s-title .sky-em { color: var(--sky); }
.s-sub { font-size: 16px; font-weight: 300; line-height: 1.75; }
.s-sub.light    { color: var(--text-muted); }
.s-sub.on-light { color: var(--text-light); }
 
/* ══════════════ GLASS LIQUID ══════════════ */
.glass {
  position: relative; overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.glass::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  pointer-events: none;
}
.glass::after {
  content: ''; position: absolute;
  top: -60%; left: -30%; width: 160%; height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.glass:hover {
  border-color: rgba(126,200,245,0.38);
  box-shadow: 0 20px 48px rgba(10,35,66,0.45), inset 0 1px 0 rgba(255,255,255,0.1);
}
.glass-coral { border-color: rgba(246,186,162,0.2); }
.glass-coral:hover { border-color: rgba(246,186,162,0.45); }
.glass-lift { transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), border-color 0.3s, box-shadow 0.3s; }
.glass-lift:hover { transform: translateY(-6px) scale(1.01); }
 
/* ── WHITE GLASS ── */
.glass-white {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(10,35,66,0.07);
  border-radius: var(--radius-card);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.glass-white::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sky), rgba(126,200,245,0.3));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s; pointer-events: none;
}
.glass-white:hover { transform: translateY(-7px); box-shadow: 0 24px 56px rgba(10,35,66,0.12); border-color: rgba(126,200,245,0.3); }
.glass-white:hover::before { transform: scaleX(1); }
.glass-white.featured-card::before { transform: scaleX(1); background: linear-gradient(90deg, var(--coral-sat), rgba(246,186,162,0.4)); }
.glass-white.featured-card { border-color: rgba(246,186,162,0.2); }
.glass-white.featured-card:hover { border-color: rgba(246,186,162,0.45); box-shadow: 0 24px 56px rgba(246,186,162,0.1); }
 
/* ══════════════ BUTTONS ══════════════ */
.btn-coral {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: var(--radius-btn);
  background: var(--coral); color: var(--navy);
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 15px;
  position: relative; overflow: hidden;
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s;
  cursor: pointer; border: none; white-space: nowrap;
}
.btn-coral::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.38), transparent);
  transition: left 0.5s; pointer-events: none;
}
.btn-coral:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(246,186,162,0.45); }
.btn-coral:hover::before { left: 140%; }
.btn-coral .arrow { display: inline-flex; transition: transform 0.25s; }
.btn-coral:hover .arrow { transform: translateX(4px); }
 
.btn-navy {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: var(--radius-btn);
  background: var(--navy); color: var(--white);
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 15px;
  position: relative; overflow: hidden;
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s;
  cursor: pointer; border: none; white-space: nowrap;
}
.btn-navy::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transition: left 0.5s; pointer-events: none;
}
.btn-navy:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(10,35,66,0.35); }
.btn-navy:hover::before { left: 140%; }
.btn-navy .arrow { display: inline-flex; transition: transform 0.25s; }
.btn-navy:hover .arrow { transform: translateX(4px); }
 
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: var(--radius-btn);
  background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.78);
  font-family: 'Inter', sans-serif; font-weight: 400; font-size: 15px;
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.25s, background 0.25s, color 0.25s, transform 0.25s;
  cursor: pointer; white-space: nowrap;
}
.btn-ghost:hover { border-color: rgba(126,200,245,0.5); background: rgba(126,200,245,0.08); color: var(--white); transform: translateY(-2px); }
 
.btn-ghost-navy {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: var(--radius-btn);
  background: transparent; color: var(--navy);
  font-family: 'Inter', sans-serif; font-weight: 400; font-size: 15px;
  border: 1.5px solid rgba(10,35,66,0.22);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  cursor: pointer; white-space: nowrap;
}
.btn-ghost-navy:hover { border-color: var(--navy); background: rgba(10,35,66,0.05); transform: translateY(-2px); }
 
.tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 11px; border-radius: 100px; font-size: 11px; font-weight: 500;
  transition: transform 0.2s;
}
.tag:hover { transform: scale(1.05); }
.tag-sky  { background: rgba(126,200,245,0.12); color: #3485b0; border: 1px solid rgba(126,200,245,0.22); }
.tag-coral{ background: rgba(246,186,162,0.15); color: #c46a40; border: 1px solid rgba(246,186,162,0.25); }
.tag-navy { background: rgba(10,35,66,0.07); color: #2a4a7f; border: 1px solid rgba(10,35,66,0.12); }
 
/* ══════════════ NAVBAR ══════════════ */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: var(--nav-h);
  background: rgba(10,35,66,0.78);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(126,200,245,0.1);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  transition: background 0.3s;
}
#main-nav.scrolled { background: rgba(8,26,52,0.92); }
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 16px;
  color: var(--white); text-decoration: none; flex-shrink: 0;
}
.nav-logo img { height: 34px; width: auto; }
.nav-logo-icon {
  width: 30px; height: 30px; border-radius: 9px;
  background: linear-gradient(135deg, var(--sky), rgba(126,200,245,0.45));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; flex-shrink: 0;
}
.nav-logo-icon::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.28) 0%, transparent 60%);
}
.nav-logo-icon svg { position: relative; z-index: 1; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.62);
  text-decoration: none; transition: color 0.2s; letter-spacing: 0.01em;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--coral);
  transform: scaleX(0); transition: transform 0.25s; transform-origin: left;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--sky); }
.nav-lang {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 500; margin-right: 4px;
}
.nav-lang a { color: rgba(255,255,255,0.4); padding: 3px 5px; border-radius: 4px; transition: color 0.2s; }
.nav-lang a.active-lang, .nav-lang a:hover { color: var(--sky); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-cta {
  background: var(--coral) !important; color: var(--navy) !important;
  font-weight: 600 !important; font-size: 13px !important;
  padding: 9px 20px !important; border-radius: var(--radius-btn) !important;
  position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s !important;
  display: inline-block !important;
}
.nav-cta::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 55%);
  pointer-events: none;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px) !important; box-shadow: 0 8px 22px rgba(246,186,162,0.4) !important; }
 
/* ── HAMBURGER ── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
 
/* ── MOBILE NAV DRAWER ── */
.nav-mobile {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(7,18,42,0.97);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  z-index: 299; flex-direction: column; align-items: center;
  justify-content: center; gap: 2px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.nav-mobile.open { opacity: 1; pointer-events: all; display: flex; }
 
/* Nav links — compactos y aesthetic */
.nav-mobile a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px; font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.01em;
  padding: 10px 0;
  width: 200px; text-align: center;
  border-radius: 12px;
  transition: color 0.2s, background 0.2s;
}
.nav-mobile a:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.nav-mobile a.active { color: var(--sky); }
 
/* Separador decorativo */
.nav-mobile::before {
  content: '';
  width: 32px; height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 8px;
}
.nav-mobile::after {
  content: '';
  width: 32px; height: 1px;
  background: rgba(255,255,255,0.08);
  margin-top: 8px;
}
 
/* Botón cotizar mobile */
.nav-mobile .mobile-cta {
  margin-top: 20px;
  padding: 11px 28px;
  background: var(--coral); color: var(--navy);
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 14px;
  border-radius: var(--radius-btn);
  display: inline-block;
  position: relative; overflow: hidden;
  width: auto;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-mobile .mobile-cta::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 55%);
  pointer-events: none;
}
.nav-mobile .mobile-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(246,186,162,0.35);
}
 
/* Lang switcher mobile */
.nav-mobile .mobile-lang {
  display: flex; align-items: center; gap: 6px; margin-top: 16px;
}
.nav-mobile .mobile-lang a {
  font-size: 11px; font-weight: 500; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.28);
  padding: 5px 10px; border-radius: 8px;
  width: auto; text-align: center;
  border: 1px solid transparent;
  background: transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.nav-mobile .mobile-lang a:hover { color: rgba(255,255,255,0.6); }
.nav-mobile .mobile-lang a.active-lang {
  color: var(--sky);
  border-color: rgba(126,200,245,0.2);
  background: rgba(126,200,245,0.05);
}
.nav-mobile .mobile-lang span { color: rgba(255,255,255,0.12); font-size: 10px; }
 
/* ══════════════ BLINK DOT ══════════════ */
.blink-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--coral);
  animation: blink 2.4s ease-in-out infinite; flex-shrink: 0;
}
.blink-dot.sky { background: var(--sky); }
@keyframes blink {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.6); }
}
 
/* ══════════════ PAGE HERO ══════════════ */
.page-hero {
  min-height: 42vh; display: flex; align-items: flex-end;
  background: var(--navy); position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + 60px) 0 64px;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 70% 30%, rgba(126,200,245,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 15% 75%, rgba(246,186,162,0.05) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero .page-hero-eyebrow { margin-bottom: 20px; }
.page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 66px);
  font-weight: 300; letter-spacing: -0.03em; line-height: 1.08;
  max-width: 700px; color: var(--white);
}
.page-hero h1 em { font-style: normal; color: var(--sky); }
.page-hero h1 .coral-em { color: var(--coral); }
.page-hero p { font-size: 17px; font-weight: 300; color: var(--text-muted); margin-top: 18px; max-width: 560px; }
.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
 
/* ══════════════ HOME HERO ══════════════ */
.home-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  background: var(--navy);
}
.neural-canvas,
.home-hero > canvas,
.section-dark > canvas,
.page-hero > canvas {
  position: absolute !important;
  top: 0 !important; left: 0 !important;
  width: 100% !important; height: 100% !important;
  pointer-events: none !important;
  z-index: 0 !important;
  opacity: 0.65;
  grid-column: unset; grid-row: unset;
  flex: none; align-self: auto; justify-self: auto;
}
.hero-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 55% at 65% 35%, rgba(126,200,245,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 35% 40% at 15% 78%, rgba(246,186,162,0.05) 0%, transparent 60%);
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1180px; margin: 0 auto;
  padding: calc(var(--nav-h) + 60px) 48px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.hero-eyebrow-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px 7px 10px; margin-bottom: 36px;
  background: rgba(126,200,245,0.07);
  border: 1px solid rgba(126,200,245,0.22); border-radius: 100px;
  backdrop-filter: blur(8px);
}
.hero-eyebrow-pill span { font-size: 12px; font-weight: 500; color: var(--sky); letter-spacing: 0.08em; text-transform: uppercase; }
.hero-h1 {
  font-family: 'Space Grotesk', sans-serif; font-weight: 300;
  font-size: clamp(44px, 5.5vw, 72px); line-height: 1.08; letter-spacing: -0.03em;
  color: var(--white); margin-bottom: 28px;
}
.hero-h1 em  { font-style: normal; color: var(--sky); }
.hero-h1 .c  { color: var(--coral); }
.hero-sub {
  font-size: 17px; font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,0.52); margin-bottom: 44px; max-width: 440px;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
 
.hero-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 36px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 100px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(126,200,245,0.15);
  font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  animation: float-pill 4s ease-in-out infinite;
}
.hero-pill:nth-child(2) { animation-delay: 0.7s; }
.hero-pill:nth-child(3) { animation-delay: 1.4s; }
.hero-pill:nth-child(4) { animation-delay: 2.1s; }
.hero-pill:hover { border-color: rgba(246,186,162,0.4); background: rgba(246,186,162,0.08); color: var(--white); }
@keyframes float-pill { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }
 
.hero-right { display: flex; flex-direction: column; gap: 14px; padding-top: 20px; }
.hero-cards-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat-card { padding: 26px 24px; }
.stat-card .card-label {
  display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase;
}
.stat-card .stat-num {
  font-family: 'Space Grotesk', sans-serif; font-size: 36px; font-weight: 600;
  color: var(--white); letter-spacing: -0.04em; line-height: 1;
}
.stat-card .stat-num .unit { font-size: 20px; font-weight: 300; margin-left: 2px; }
.stat-card .unit-sky   { color: var(--sky); }
.stat-card .unit-coral { color: var(--coral); }
.stat-card .stat-lbl { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.42); line-height: 1.5; margin-top: 7px; }
.stat-mini-bar { height: 3px; border-radius: 100px; background: rgba(255,255,255,0.07); overflow: hidden; margin-top: 12px; }
.stat-mini-fill { height: 100%; border-radius: 100px; animation: grow-bar 2s cubic-bezier(.34,1.56,.64,1) 0.6s both; }
.fill-sky   { background: linear-gradient(90deg, var(--sky), rgba(126,200,245,0.35)); --w: 84%; }
.fill-coral { background: linear-gradient(90deg, var(--coral), rgba(246,186,162,0.35)); --w: 72%; }
@keyframes grow-bar { from{width:0} to{width:var(--w,80%)} }
 
.stars-row { display: flex; gap: 3px; margin-bottom: 10px; }
.star { color: var(--coral); font-size: 12px; }
.avatar-stack { display: flex; }
.avatar {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--navy); margin-left: -8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 600;
  background: rgba(126,200,245,0.2); color: var(--sky);
}
.avatar:first-child { margin-left: 0; }
.avatar.av-coral { background: rgba(246,186,162,0.2); color: var(--coral); }
.team-badge-card { padding: 18px 22px; }
.team-badge-inner { display: flex; align-items: center; gap: 14px; }
.team-badge-icon {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: rgba(246,186,162,0.12);
  display: flex; align-items: center; justify-content: center;
}
 
/* ══════════════ HOME SERVICES ══════════════ */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.srv-card { padding: 34px 28px; cursor: default; }
.srv-icon-wrap {
  width: 50px; height: 50px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; position: relative; overflow: hidden;
  transition: transform 0.3s;
}
.srv-icon-wrap::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.35) 0%, transparent 60%);
}
.srv-icon-wrap svg { position: relative; z-index: 1; }
.icon-sky   { background: rgba(126,200,245,0.15); }
.icon-coral { background: rgba(246,186,162,0.18); }
.icon-navy  { background: rgba(10,35,66,0.06); }
.glass-white:hover .srv-icon-wrap { transform: scale(1.1) rotate(-3deg); }
.srv-title { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 10px; letter-spacing: -0.01em; }
.srv-desc { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--text-light); margin-bottom: 20px; }
.srv-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }
.srv-link { font-size: 13px; font-weight: 500; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s, color 0.2s; }
.srv-link:hover { gap: 10px; color: #3485b0; }
.featured-card .srv-link:hover { color: var(--coral-sat); }
 
/* ══════════════ HOME WHY US ══════════════ */
.whyus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.feature-list { display: flex; flex-direction: column; gap: 4px; }
.feat-row {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 16px; border-radius: 16px;
  border: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  cursor: default;
}
.feat-row:hover { background: rgba(126,200,245,0.07); border-color: rgba(126,200,245,0.18); transform: translateX(6px); }
.feat-num { font-family:'Space Grotesk',sans-serif; font-size:11px; font-weight:600; color:var(--coral-sat); min-width:24px; padding-top:3px; }
.feat-icon {
  width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
  background: rgba(126,200,245,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, transform 0.3s;
}
.feat-row:hover .feat-icon { background: rgba(126,200,245,0.18); transform: rotate(-5deg); }
.feat-title { font-family:'Space Grotesk',sans-serif; font-size:14px; font-weight:600; color:var(--navy); margin-bottom:4px; }
.feat-desc { font-size:13px; font-weight:300; line-height:1.65; color:var(--text-light); }
.whyus-visual { display: flex; flex-direction: column; gap: 14px; }
.vis-main-card { background: var(--navy); border-radius: var(--radius-card); padding: 28px 24px; border: 1px solid rgba(126,200,245,0.2); position: relative; overflow: hidden; }
.vis-main-card::before { content:''; position:absolute; top:0;left:0;right:0; height:1px; background:linear-gradient(90deg,transparent,rgba(126,200,245,0.3),transparent); }
.vis-bar-list { display: flex; flex-direction: column; gap: 14px; }
.vis-bar-row { display: flex; align-items: center; gap: 12px; }
.vis-bar-label { font-size: 12px; color: rgba(255,255,255,0.45); min-width: 80px; }
.vis-bar-track { flex: 1; height: 5px; background: rgba(255,255,255,0.06); border-radius: 100px; overflow: hidden; }
.vis-bar-fill { height: 100%; border-radius: 100px; animation: grow-bar 1.8s cubic-bezier(.34,1.56,.64,1) both; }
.vis-bar-val { font-size: 12px; font-weight: 600; min-width: 34px; text-align: right; }
.bar-sky  .vis-bar-fill { background: linear-gradient(90deg,var(--sky),rgba(126,200,245,0.4)); --w:88%; }
.bar-sky  .vis-bar-val { color: var(--sky); }
.bar-coral .vis-bar-fill { background: linear-gradient(90deg,var(--coral),rgba(246,186,162,0.4)); --w:76%; }
.bar-coral .vis-bar-val { color: var(--coral); }
.bar-white .vis-bar-fill { background: linear-gradient(90deg,rgba(255,255,255,0.3),rgba(255,255,255,0.08)); --w:93%; }
.bar-white .vis-bar-val { color: rgba(255,255,255,0.5); }
.vis-sm-card {
  background: var(--white); border-radius: 18px; padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
  border: 1px solid rgba(10,35,66,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}
.vis-sm-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(10,35,66,0.1); }
.vis-avatar { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, var(--baby), rgba(126,200,245,0.3)); display: flex; align-items: center; justify-content: center; }
.vis-name { font-family:'Space Grotesk',sans-serif; font-size:13px; font-weight:600; color:var(--navy); }
.vis-role { font-size:12px; color:var(--text-light); }
 
/* ══════════════ HOME PROCESS ══════════════ */
.process-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; margin-top: 64px; position: relative; }
.process-line {
  position: absolute; top: 27px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(126,200,245,0.15), rgba(126,200,245,0.15), transparent);
  pointer-events: none;
}
.proc-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 12px; cursor: default; }
.proc-ring {
  width: 76px; height: 76px; border-radius: 50%;
  border: 1px solid rgba(126,200,245,0.22); background: rgba(126,200,245,0.05);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; margin-bottom: 20px; position: relative; z-index: 1;
  transition: border-color 0.3s, background 0.3s, transform 0.35s cubic-bezier(.34,1.56,.64,1);
}
.proc-item:hover .proc-ring { border-color: var(--coral); background: rgba(246,186,162,0.08); transform: scale(1.1); }
.proc-num { font-family:'Space Grotesk',sans-serif; font-size:11px; font-weight:600; color:var(--sky); transition:color 0.3s; line-height:1; }
.proc-item:hover .proc-num { color: var(--coral); }
.proc-icon-svg { opacity: 0.75; transition: opacity 0.3s; }
.proc-item:hover .proc-icon-svg { opacity: 1; }
.proc-title { font-family:'Space Grotesk',sans-serif; font-size:13px; font-weight:500; color:var(--white); margin-bottom:6px; transition:color 0.3s; }
.proc-item:hover .proc-title { color: var(--sky); }
.proc-desc { font-size:12px; font-weight:300; line-height:1.6; color:rgba(255,255,255,0.35); }
 
/* ══════════════ CTA ══════════════ */
.cta-inner { max-width: 620px; margin: 0 auto; text-align: center; }
.cta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 18px; border-radius: 100px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(126,200,245,0.18);
  font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 32px;
  backdrop-filter: blur(8px);
  animation: float-pill 5s ease-in-out infinite;
}
.cta-badge.on-light { background: rgba(255,255,255,0.8); border: 1px solid rgba(10,35,66,0.1); color: var(--text-light); }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 40px; }
 
/* ══════════════ NOSOTROS ══════════════ */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 80px; }
.stat-pill {
  text-align: center; padding: 32px 20px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(126,200,245,0.15);
  border-radius: var(--radius-card); backdrop-filter: blur(16px);
  transition: border-color 0.3s, transform 0.35s cubic-bezier(.34,1.56,.64,1);
}
.stat-pill:hover { border-color: rgba(126,200,245,0.38); transform: translateY(-5px); }
.stat-pill .num { font-family:'Space Grotesk',sans-serif; font-size:42px; font-weight:600; color:var(--white); letter-spacing:-0.04em; line-height:1; }
.stat-pill .num span { color: var(--sky); font-size:28px; font-weight:300; }
.stat-pill .lbl { font-size:13px; font-weight:300; color:rgba(255,255,255,0.5); margin-top:8px; }
 
.mvp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 80px; }
.mvp-card { padding: 36px 28px; }
.mvp-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; background: rgba(126,200,245,0.12); position: relative; overflow: hidden; }
.mvp-icon.coral-icon { background: rgba(246,186,162,0.15); }
.mvp-icon::before { content:''; position:absolute; inset:0; background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 60%); }
.mvp-icon svg { position: relative; z-index: 1; }
.mvp-label { font-family:'Space Grotesk',sans-serif; font-size:11px; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:var(--sky); margin-bottom:10px; }
.mvp-label.coral-lbl { color: var(--coral); }
.mvp-title { font-family:'Space Grotesk',sans-serif; font-size:18px; font-weight:600; color:var(--white); margin-bottom:12px; }
.mvp-text { font-size:14px; font-weight:300; line-height:1.7; color:rgba(255,255,255,0.55); }
 
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.value-card { padding: 28px 24px; }
.value-title { font-family:'Space Grotesk',sans-serif; font-size:16px; font-weight:600; color:var(--navy); margin-bottom:8px; }
.value-desc { font-size:13px; font-weight:300; line-height:1.65; color:var(--text-light); }
 
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.team-card { background: var(--white); border-radius: var(--radius-card); padding: 36px 28px; border: 1px solid rgba(10,35,66,0.07); text-align: center; transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s; }
.team-card:hover { transform: translateY(-8px); box-shadow: 0 24px 56px rgba(10,35,66,0.1); }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 600; color: var(--navy); }
.av-sky   { background: linear-gradient(135deg, var(--baby), rgba(126,200,245,0.4)); }
.av-coral { background: linear-gradient(135deg, rgba(246,186,162,0.4), rgba(246,186,162,0.2)); }
.av-navy  { background: linear-gradient(135deg, rgba(10,35,66,0.12), rgba(10,35,66,0.06)); }
.team-name { font-family:'Space Grotesk',sans-serif; font-size:18px; font-weight:600; color:var(--navy); margin-bottom:6px; }
.team-role { font-size:13px; font-weight:500; color:var(--coral-sat); margin-bottom:14px; }
.team-bio { font-size:13px; font-weight:300; line-height:1.65; color:var(--text-light); }
 
/* ══════════════ SERVICIOS ══════════════ */
.svc-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 52px; padding: 6px; background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); border: 1px solid rgba(126,200,245,0.15); border-radius: 100px; width: fit-content; }
.svc-tab { padding: 10px 24px; border-radius: 100px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.55); border: none; background: transparent; cursor: pointer; transition: background 0.2s, color 0.2s; display: flex; align-items: center; gap: 8px; }
.svc-tab:hover { color: var(--white); }
.svc-tab.active { background: var(--white); color: var(--navy); }
.svc-panel { display: none; }
.svc-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.svc-detail-title { font-family:'Space Grotesk',sans-serif; font-size:clamp(28px,3vw,40px); font-weight:300; color:var(--white); letter-spacing:-0.025em; margin-bottom:18px; }
.svc-detail-desc { font-size:16px; font-weight:300; line-height:1.75; color:rgba(255,255,255,0.58); margin-bottom:32px; }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.svc-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; font-weight: 300; line-height: 1.6; color: rgba(255,255,255,0.7); }
.svc-list li .check { flex-shrink: 0; margin-top: 2px; }
.svc-right-card { padding: 36px 30px; }
.tech-label { font-family:'Space Grotesk',sans-serif; font-size:11px; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:rgba(255,255,255,0.4); margin-bottom:16px; display:flex; align-items:center; gap:8px; }
.tech-badges { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:32px; }
.tech-badge { padding: 7px 14px; border-radius: 100px; background: rgba(255,255,255,0.05); border: 1px solid rgba(126,200,245,0.18); font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.65); transition: border-color 0.2s, color 0.2s; }
.tech-badge:hover { border-color: var(--sky); color: var(--sky); }
.price-block { text-align: center; padding: 28px; border-top: 1px solid rgba(255,255,255,0.08); }
.price-from { font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.4); margin-bottom: 6px; }
.price-num { font-family:'Space Grotesk',sans-serif; font-size:36px; font-weight:600; color:var(--white); letter-spacing:-0.03em; }
.price-num span { font-size:16px; font-weight:300; color:var(--sky); }
 
/* ══════════════ PORTAFOLIO ══════════════ */
.portfolio-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 48px; }
.pf-filter { padding: 9px 20px; border-radius: 100px; font-size: 13px; font-weight: 500; border: 1px solid rgba(255,255,255,0.14); background: transparent; color: rgba(255,255,255,0.55); cursor: pointer; transition: background 0.2s, border-color 0.2s, color 0.2s; }
.pf-filter:hover { border-color: rgba(255,255,255,0.35); color: var(--white); }
.pf-filter.active { background: var(--coral); border-color: var(--coral); color: var(--navy); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.pf-card { border-radius: var(--radius-card); overflow: hidden; background: rgba(255,255,255,0.04); border: 1px solid rgba(126,200,245,0.12); cursor: default; transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), border-color 0.3s; }
.pf-card:hover { transform: translateY(-8px); border-color: rgba(126,200,245,0.35); }
.pf-thumb { height: 180px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; background: rgba(255,255,255,0.03); }
.pf-thumb::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(126,200,245,0.06) 0%, transparent 60%); }
.pf-thumb .thumb-icon { position: relative; z-index: 1; }
.pf-body { padding: 24px 22px; }
.pf-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.pf-title { font-family:'Space Grotesk',sans-serif; font-size:17px; font-weight:600; color:var(--white); margin-bottom:6px; }
.pf-subtitle { font-size:13px; font-weight:300; color:rgba(255,255,255,0.45); margin-bottom:14px; }
.pf-result { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.6); padding: 10px 14px; border-radius: 10px; background: rgba(126,200,245,0.07); border: 1px solid rgba(126,200,245,0.12); display: flex; align-items: center; gap: 8px; }
.pf-result svg { flex-shrink: 0; }
 
/* ══════════════ CONTACTO ══════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-info-card { padding: 22px 24px; display: flex; align-items: flex-start; gap: 16px; }
.ci-icon { width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(126,200,245,0.12); transition: background 0.3s, transform 0.3s; }
.contact-info-card:hover .ci-icon { background: rgba(126,200,245,0.22); transform: rotate(-5deg); }
.ci-label { font-size: 11px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--sky); margin-bottom: 5px; }
.ci-value { font-family:'Space Grotesk',sans-serif; font-size:16px; font-weight:500; color:var(--white); margin-bottom:3px; }
.ci-sub { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.45); }
.contact-form-card { padding: 36px 32px; }
.form-title { font-family:'Space Grotesk',sans-serif; font-size:22px; font-weight:500; color:var(--white); margin-bottom:28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 7px; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 13px 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(126,200,245,0.18); border-radius: 12px; color: var(--white); font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 300; outline: none; transition: border-color 0.2s, background 0.2s; -webkit-appearance: none; }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: rgba(126,200,245,0.5); background: rgba(126,200,245,0.05); }
.form-select option { background: var(--navy-mid); color: var(--white); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.35); display: flex; align-items: center; gap: 6px; margin-top: 10px; }
.form-success { display: none; text-align: center; padding: 32px 20px; font-family: 'Space Grotesk', sans-serif; }
.form-success .success-icon { font-size: 40px; margin-bottom: 16px; }
.form-success h3 { font-size: 22px; font-weight: 500; color: var(--white); margin-bottom: 8px; }
.form-success p { font-size: 14px; color: rgba(255,255,255,0.5); }
 
/* ══════════════ COTIZAR ══════════════ */
.cotizar-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.cotizar-aside { position: sticky; top: calc(var(--nav-h) + 24px); }
.cotizar-info { display: flex; flex-direction: column; gap: 12px; }
.cotizar-step-info { padding: 20px 22px; display: flex; align-items: center; gap: 14px; }
.csi-num { font-family:'Space Grotesk',sans-serif; font-size:20px; font-weight:600; color:var(--sky); min-width: 32px; }
.csi-title { font-family:'Space Grotesk',sans-serif; font-size:14px; font-weight:500; color:var(--white); }
.csi-desc { font-size:12px; font-weight:300; color:rgba(255,255,255,0.45); }
.cotizar-form-card { padding: 36px 32px; }
.service-selector { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-bottom: 28px; }
.svc-option { padding: 16px; border-radius: 14px; cursor: pointer; background: rgba(255,255,255,0.04); border: 1px solid rgba(126,200,245,0.15); display: flex; align-items: center; gap: 12px; transition: background 0.2s, border-color 0.2s, transform 0.2s; -webkit-user-select: none; user-select: none; }
.svc-option:hover { border-color: rgba(126,200,245,0.35); background: rgba(126,200,245,0.05); transform: translateY(-2px); }
.svc-option.selected { border-color: var(--coral); background: rgba(246,186,162,0.08); }
.svc-option input { display: none; }
.svc-opt-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: rgba(126,200,245,0.1); flex-shrink: 0; }
.svc-option.selected .svc-opt-icon { background: rgba(246,186,162,0.15); }
.svc-opt-name { font-family:'Space Grotesk',sans-serif; font-size:13px; font-weight:500; color:var(--white); margin-bottom:2px; }
.svc-opt-sub { font-size:11px; color:rgba(255,255,255,0.4); }
.budget-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px; }
.budget-opt { padding: 16px; border-radius: 14px; cursor: pointer; background: rgba(255,255,255,0.04); border: 1px solid rgba(126,200,245,0.15); transition: border-color 0.2s, background 0.2s, transform 0.2s; -webkit-user-select: none; user-select: none; }
.budget-opt:hover { border-color: rgba(126,200,245,0.35); transform: translateY(-2px); }
.budget-opt.selected { border-color: var(--sky); background: rgba(126,200,245,0.08); }
.budget-opt input { display: none; }
.budget-range { font-family:'Space Grotesk',sans-serif; font-size:15px; font-weight:600; color:var(--white); margin-bottom:3px; }
.budget-desc { font-size:11px; color:rgba(255,255,255,0.4); }
.form-section-title { font-family:'Space Grotesk',sans-serif; font-size:13px; font-weight:600; color:rgba(255,255,255,0.5); letter-spacing:0.08em; text-transform:uppercase; margin-bottom:16px; padding-bottom:10px; border-bottom:1px solid rgba(255,255,255,0.07); }
 
/* ══════════════ FOOTER ══════════════ */
footer { background: rgba(6,18,40,1); padding: 64px 48px 40px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-inner { max-width: 1180px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { height: 30px; width: auto; }
.footer-tagline { font-size:14px; font-weight:300; line-height:1.7; color:rgba(255,255,255,0.35); margin-bottom:28px; max-width:260px; }
.footer-socials { display: flex; gap: 10px; }
.soc-btn { width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); text-decoration: none; transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s; }
.soc-btn:hover { border-color: var(--coral); color: var(--coral); background: rgba(246,186,162,0.06); transform: translateY(-3px); }
.footer-col-title { font-size:11px; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:rgba(255,255,255,0.28); margin-bottom:18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size:14px; font-weight:300; color:rgba(255,255,255,0.42); text-decoration:none; transition: color 0.2s, padding-left 0.2s; display:block; }
.footer-links a:hover { color: var(--sky); padding-left: 4px; }
.footer-links a.cta-link { color: var(--coral); font-weight: 500; }
.footer-links a.cta-link:hover { color: var(--coral-sat); padding-left: 4px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size:13px; color:rgba(255,255,255,0.25); }
.footer-copy span { color: var(--coral); }
.footer-stamp { display: inline-flex; align-items: center; gap: 6px; padding: 5px 14px; border: 1px solid rgba(126,200,245,0.1); border-radius: 100px; font-size: 11px; color: rgba(255,255,255,0.25); letter-spacing: 0.08em; }
 
#lang-toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%); background: rgba(10,35,66,0.92); border: 1px solid rgba(126,200,245,0.2); color: var(--white); padding: 12px 24px; border-radius: 100px; font-size: 13px; backdrop-filter: blur(16px); opacity: 0; transition: opacity 0.4s; pointer-events: none; z-index: 9000; white-space: nowrap; }
#lang-toast.show { opacity: 1; }
 
/* ══════════════ ANIMATIONS ══════════════ */
@keyframes fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up   { animation: fade-up 0.6s cubic-bezier(.2,.8,.2,1) both; }
.fade-up-2 { animation: fade-up 0.6s cubic-bezier(.2,.8,.2,1) 0.15s both; }
.fade-up-3 { animation: fade-up 0.6s cubic-bezier(.2,.8,.2,1) 0.3s both; }
 
/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  #main-nav { padding: 0 32px; }
  footer { padding: 56px 32px 36px; }
  .hero-content { padding: calc(var(--nav-h) + 50px) 32px 60px; gap: 48px; }
  .hero-h1 { font-size: clamp(38px, 5vw, 58px); }
  .whyus-grid { gap: 48px; }
  .team-grid { gap: 16px; }
  .contact-layout { gap: 36px; }
  .cotizar-layout { gap: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
 
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .container { padding: 0 24px; }
  #main-nav { padding: 0 24px; }
  .nav-links, .nav-lang, .nav-actions { display: none; }
  .hamburger { display: flex; position: relative; z-index: 310; }
  footer { padding: 48px 24px 32px; }
  .hero-content { grid-template-columns: 1fr; padding: calc(var(--nav-h) + 44px) 24px 60px; gap: 40px; width: 100%; overflow-x: hidden; }
  .hero-h1 { font-size: clamp(36px, 8vw, 52px); }
  .hero-right { padding-top: 0; }
  .hero-cards-row { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: calc(var(--nav-h) + 40px) 0 48px; }
  .page-hero h1 { font-size: clamp(30px, 7vw, 48px); }
  .section-pad { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .mvp-grid { grid-template-columns: 1fr; gap: 16px; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 14px; }
  .values-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .team-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .whyus-grid { grid-template-columns: 1fr; gap: 40px; }
  .whyus-visual { order: -1; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .process-line { display: none; }
  .process-steps .proc-item:last-child { grid-column: 1 / -1; }
  .svc-panel.active { grid-template-columns: 1fr; gap: 32px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .contact-layout { grid-template-columns: 1fr; }
  .cotizar-layout { grid-template-columns: 1fr; }
  .cotizar-aside { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .service-selector { grid-template-columns: 1fr; }
  .budget-options { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
 
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  #main-nav { padding: 0 18px; }
  .nav-logo > *:not(img):not(.nav-logo-icon) { display: none; }
  .hero-right { display: none; }
  .home-hero { overflow-x: hidden; }
  footer { padding: 44px 18px 28px; }
  .hero-content { padding: calc(var(--nav-h) + 36px) 18px 56px; }
  .hero-h1 { font-size: 34px; }
  .hero-cards-row { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 28px; }
  .section-pad { padding: 56px 0; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .values-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .svc-tabs { width: 100%; justify-content: center; }
  .svc-tab { padding: 9px 16px; font-size: 13px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form-card { padding: 24px 20px; }
  .cotizar-form-card { padding: 24px 20px; }
}