/* ============================================
   ICONTSERVICES — Estilos principales
   Firma Contable · Bucaramanga, Colombia
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --navy:       #042C53;
  --navy-deep:  #04182e;
  --blue:       #185FA5;
  --blue-mid:   #378ADD;
  --blue-light: #E6F1FB;
  --teal:       #0F6E56;
  --teal-light: #E1F5EE;
  --gold:       #BA7517;
  --gold-mid:   #FAC775;
  --gold-light: #FAEEDA;
  --text:       #2C2C2A;
  --text-muted: #5F5E5A;
  --surface:    #F4F2EC;
  --border:     #D3D1C7;
  --white:      #ffffff;
  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  24px;
  --shadow:     0 6px 24px rgba(4,44,83,0.08), 0 1px 3px rgba(4,44,83,0.06);
  --shadow-lg:  0 24px 60px rgba(4,44,83,0.18), 0 4px 12px rgba(4,44,83,0.08);
  --shadow-glow: 0 20px 60px -10px rgba(250,199,117,0.45);
  --gradient-hero: radial-gradient(ellipse at top right, #185FA5 0%, #0C447C 35%, #042C53 70%, #04182e 100%);
  --gradient-gold: linear-gradient(135deg, #FAC775 0%, #f0b84e 100%);
  --gradient-blue: linear-gradient(135deg, #378ADD 0%, #185FA5 100%);
  --transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h4, h5, h6 { font-family: 'DM Sans', sans-serif; font-weight: 500; }
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; object-fit: cover; }
ul { list-style: none; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 0; }

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* LABELS */
.section-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 0.6rem;
  display: block;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 560px;
  line-height: 1.75;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(4,44,83,0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.navbar.scrolled {
  background: rgba(4,44,83,0.95);
  box-shadow: 0 8px 32px rgba(4,44,83,0.4);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  transition: transform var(--transition);
}
.nav-logo:hover { transform: translateY(-1px); }
.nav-logo .logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(250,199,117,0.25));
  transition: transform var(--transition);
}
.nav-logo:hover .logo-mark { transform: rotate(-4deg) scale(1.05); }
.nav-logo .logo-mark .logo-bar {
  transform-origin: bottom;
  animation: logoBarRise 0.9s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
.nav-logo .logo-mark .logo-bar-1 { animation-delay: 0.1s; }
.nav-logo .logo-mark .logo-bar-2 { animation-delay: 0.2s; }
.nav-logo .logo-mark .logo-bar-3 { animation-delay: 0.3s; }
.nav-logo .logo-mark .logo-dot {
  animation: logoDotDrop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.45s backwards;
}
@keyframes logoBarRise {
  from { transform: scaleY(0); opacity: 0; }
  to   { transform: scaleY(1); opacity: 1; }
}
@keyframes logoDotDrop {
  from { transform: translateY(-8px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.logo-text { display: inline-block; letter-spacing: -0.01em; }
.logo-text > span { color: var(--gold-mid); font-weight: 600; }
.nav-logo > span { color: var(--white); }
.nav-logo span span { color: var(--gold-mid); }

/* Footer logo: un poco más grande */
.footer-logo .logo-mark { width: 44px; height: 44px; }
.footer-logo { font-size: 1.5rem; }

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold-mid);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gradient-gold) !important;
  color: var(--navy) !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px -2px rgba(250,199,117,0.45);
  transition: all var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -4px rgba(250,199,117,0.6);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
  position: relative;
}
/* HERO — capa de movimiento */
.hero-motion {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  animation: gridShift 30s linear infinite;
}
@keyframes gridShift {
  from { background-position: 0 0; }
  to   { background-position: 60px 60px; }
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.7;
  will-change: transform;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  right: -180px; top: -180px;
  background: radial-gradient(circle, rgba(250,199,117,0.55) 0%, rgba(250,199,117,0) 65%);
  animation: drift1 18s ease-in-out infinite;
}
.hero-orb-2 {
  width: 520px; height: 520px;
  left: -140px; bottom: -180px;
  background: radial-gradient(circle, rgba(55,138,221,0.6) 0%, rgba(55,138,221,0) 65%);
  animation: drift2 22s ease-in-out infinite;
}
.hero-orb-3 {
  width: 380px; height: 380px;
  right: 25%; bottom: -100px;
  background: radial-gradient(circle, rgba(15,110,86,0.45) 0%, rgba(15,110,86,0) 65%);
  animation: drift3 26s ease-in-out infinite;
}
.hero-orb-4 {
  width: 320px; height: 320px;
  left: 35%; top: 20%;
  background: radial-gradient(circle, rgba(186,117,23,0.35) 0%, rgba(186,117,23,0) 65%);
  animation: drift4 30s ease-in-out infinite;
}
@keyframes drift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-80px, 60px) scale(1.1); }
  66% { transform: translate(40px, 100px) scale(0.95); }
}
@keyframes drift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(120px, -90px) scale(1.15); }
}
@keyframes drift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40% { transform: translate(-100px, -80px) scale(1.2); }
  80% { transform: translate(60px, -40px) scale(0.9); }
}
@keyframes drift4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-60px, 80px) scale(1.1); }
}

/* Partículas que titilan y suben suavemente */
.hero-particles { position: absolute; inset: 0; }
.hero-particles span {
  position: absolute;
  width: 4px; height: 4px;
  background: rgba(250,199,117,0.6);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(250,199,117,0.8);
  bottom: -10px;
  animation: rise linear infinite;
}
.hero-particles span:nth-child(1)  { left: 8%;  animation-duration: 16s; animation-delay: 0s;   }
.hero-particles span:nth-child(2)  { left: 16%; animation-duration: 22s; animation-delay: 3s;   width: 3px; height: 3px; }
.hero-particles span:nth-child(3)  { left: 24%; animation-duration: 19s; animation-delay: 6s;   }
.hero-particles span:nth-child(4)  { left: 32%; animation-duration: 24s; animation-delay: 1s;   width: 2px; height: 2px; background: rgba(255,255,255,0.55); box-shadow: 0 0 6px rgba(255,255,255,0.7); }
.hero-particles span:nth-child(5)  { left: 42%; animation-duration: 20s; animation-delay: 8s;   }
.hero-particles span:nth-child(6)  { left: 50%; animation-duration: 26s; animation-delay: 4s;   width: 3px; height: 3px; }
.hero-particles span:nth-child(7)  { left: 58%; animation-duration: 18s; animation-delay: 10s;  width: 2px; height: 2px; background: rgba(255,255,255,0.55); }
.hero-particles span:nth-child(8)  { left: 66%; animation-duration: 23s; animation-delay: 2s;   }
.hero-particles span:nth-child(9)  { left: 74%; animation-duration: 21s; animation-delay: 7s;   width: 3px; height: 3px; }
.hero-particles span:nth-child(10) { left: 82%; animation-duration: 27s; animation-delay: 5s;   }
.hero-particles span:nth-child(11) { left: 90%; animation-duration: 19s; animation-delay: 9s;   width: 2px; height: 2px; background: rgba(255,255,255,0.55); }
.hero-particles span:nth-child(12) { left: 12%; animation-duration: 25s; animation-delay: 12s;  width: 3px; height: 3px; }
.hero-particles span:nth-child(13) { left: 38%; animation-duration: 22s; animation-delay: 14s;  }
.hero-particles span:nth-child(14) { left: 64%; animation-duration: 28s; animation-delay: 11s;  width: 2px; height: 2px; }
.hero-particles span:nth-child(15) { left: 86%; animation-duration: 20s; animation-delay: 15s;  width: 3px; height: 3px; }
@keyframes rise {
  0%   { transform: translateY(0)      scale(1);   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.8; }
  100% { transform: translateY(-110vh) scale(0.4); opacity: 0; }
}

/* Respeta usuarios que pidan menos movimiento */
@media (prefers-reduced-motion: reduce) {
  .hero-orb, .hero-particles span, .hero-grid { animation: none !important; }
}

.hero-content { padding: 5rem 2rem 5rem 4rem; z-index: 1; position: relative; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(250,199,117,0.12);
  border: 1px solid rgba(250,199,117,0.35);
  color: var(--gold-mid);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-mid);
  box-shadow: 0 0 8px var(--gold-mid);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.hero h1 em {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 0.6rem;
  max-width: 480px;
}
.hero-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  margin-bottom: 2.5rem;
  letter-spacing: 0.3px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gradient-gold); color: var(--navy);
  padding: 1rem 2.1rem; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600;
  transition: all var(--transition); border: none; cursor: pointer;
  box-shadow: 0 8px 24px -6px rgba(250,199,117,0.5), 0 2px 8px rgba(4,44,83,0.1);
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 50%);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -6px rgba(250,199,117,0.6), 0 4px 12px rgba(4,44,83,0.15);
}
.btn-gold:hover::after { opacity: 1; }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 1rem 2.1rem; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 500;
  transition: all var(--transition); cursor: pointer;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.hero-image {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 1;
  perspective: 1400px;
}
.hero-image-caption {
  position: absolute; bottom: 2rem; right: 2rem; text-align: right; z-index: 2;
}
.hero-image-caption p { font-size: 0.72rem; color: rgba(255,255,255,0.4); }

/* IPHONE 17 PRO MAX MOCKUP */
.phone-mockup {
  position: relative;
  width: 320px;
  height: 660px;
  transform: rotateY(-9deg) rotateX(4deg) rotate(0.3deg);
  transform-style: preserve-3d;
  animation: phoneFloat 8s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: rotateY(-9deg) rotateX(4deg) translateY(0); }
  50%      { transform: rotateY(-8deg) rotateX(3deg) translateY(-14px); }
}
.phone-mockup-glow {
  position: absolute;
  inset: -50px;
  background: radial-gradient(ellipse at center, rgba(250,199,117,0.28) 0%, transparent 65%);
  filter: blur(45px);
  z-index: -1;
  pointer-events: none;
}
.phone-frame {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a2a2c 0%, #1a1a1c 50%, #0f0f10 100%);
  border-radius: 52px;
  padding: 12px;
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,0.04),
    inset 0 0 0 4px rgba(0,0,0,0.6),
    0 50px 110px -20px rgba(0,0,0,0.55),
    0 30px 70px -30px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.06);
}
/* Botones laterales */
.phone-btn {
  position: absolute;
  background: linear-gradient(90deg, #1a1a1c 0%, #2a2a2c 100%);
  border-radius: 2px;
}
.phone-btn-action   { left: -2px; top: 95px;  width: 4px; height: 28px; border-radius: 2px 0 0 2px; }
.phone-btn-vol-up   { left: -2px; top: 145px; width: 4px; height: 50px; border-radius: 2px 0 0 2px; }
.phone-btn-vol-down { left: -2px; top: 205px; width: 4px; height: 50px; border-radius: 2px 0 0 2px; }
.phone-btn-power    { right: -2px; top: 165px; width: 4px; height: 70px; border-radius: 0 2px 2px 0; background: linear-gradient(270deg, #1a1a1c 0%, #2a2a2c 100%); }

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #f7f8fa;
  border-radius: 42px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-family: 'DM Sans', sans-serif;
}

/* Status bar */
.phone-status {
  position: relative;
  height: 44px;
  padding: 14px 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: #1c1c1e;
  flex-shrink: 0;
  z-index: 5;
}
.ph-time { font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }
.ph-island {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 30px;
  background: #000;
  border-radius: 100px;
  z-index: 1;
}
.ph-icons { display: flex; align-items: center; gap: 5px; color: #1c1c1e; }
.ph-batt {
  position: relative;
  width: 24px; height: 11px;
  border: 1.2px solid #1c1c1e;
  border-radius: 3px;
  padding: 1px;
  margin-left: 1px;
}
.ph-batt::after {
  content: '';
  position: absolute;
  right: -3px; top: 3px;
  width: 1.5px; height: 4px;
  background: #1c1c1e;
  border-radius: 0 1px 1px 0;
}
.ph-batt-fill {
  display: block;
  width: 80%;
  height: 100%;
  background: #1c1c1e;
  border-radius: 1px;
}

/* App content */
.phone-app {
  flex: 1;
  padding: 10px 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.phone-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}
.ph-hi {
  font-size: 17px;
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: -0.01em;
}
.ph-sub {
  font-size: 11px;
  color: #6b7280;
  margin-top: 1px;
}
.ph-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #042C53, #185FA5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Saldo principal */
.phone-balance {
  background: linear-gradient(135deg, #042C53 0%, #0a3a6a 100%);
  border-radius: 16px;
  padding: 14px 16px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.phone-balance::before {
  content: '';
  position: absolute;
  right: -40px; top: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250,199,117,0.25) 0%, transparent 65%);
  filter: blur(15px);
}
.pb-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
  position: relative;
}
.pb-value {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  position: relative;
}
.pb-trend {
  font-size: 10px;
  color: #FAC775;
  margin-top: 4px;
  font-weight: 500;
  position: relative;
}

/* KPIs en fila */
.phone-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.ph-kpi {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 10px 11px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.ph-kpi-icon {
  width: 32px; height: 32px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.ph-kpi-icon.teal { background: #E1F5EE; }
.ph-kpi-icon.gold { background: #FAEEDA; }
.ph-kpi-val {
  font-size: 14px;
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: -0.01em;
}
.ph-kpi-lbl {
  font-size: 10px;
  color: #6b7280;
}

/* Chart card */
.phone-chart {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 10px 11px 6px;
}
.ph-chart-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #0a0a0a;
}
.ph-chart-tag {
  font-weight: 400;
  font-size: 9px;
  color: #9ca3af;
}
.ph-chart-svg {
  width: 100%;
  height: 60px;
  display: block;
}
.chart-line {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawLine 2.4s cubic-bezier(0.65, 0, 0.35, 1) 0.5s forwards;
}
.chart-line-2 {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawLine 2.4s cubic-bezier(0.65, 0, 0.35, 1) 1s forwards;
}
.chart-area {
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
}
.chart-dot {
  opacity: 0;
  animation: fadeIn 0.5s ease 2.6s forwards, pulseDot 2s ease-in-out 3s infinite;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes pulseDot {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.4); }
}

/* Transactions */
.phone-tx-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ph-tx-title {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #6b7280;
  margin-bottom: 1px;
  padding-left: 2px;
}
.ph-tx {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 11px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
}
.tx-icon {
  width: 26px; height: 26px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.tx-icon.green { background: #d1fae5; color: #0F6E56; }
.tx-icon.red   { background: #fee2e2; color: #b91c1c; }
.tx-info { flex: 1; min-width: 0; }
.tx-name {
  font-size: 11px;
  font-weight: 600;
  color: #0a0a0a;
}
.tx-sub {
  font-size: 9px;
  color: #9ca3af;
  margin-top: 1px;
}
.tx-amt {
  font-size: 11px;
  font-weight: 700;
  color: #6b7280;
}
.tx-amt.up { color: #0F6E56; }

/* Tab bar */
.phone-tabs {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 8px 12px 22px;
  background: #fff;
  border-top: 1px solid #ececec;
  flex-shrink: 0;
}
.ph-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 9px;
  font-weight: 500;
  color: #9ca3af;
}
.ph-tab .tab-ico {
  width: 18px; height: 18px;
  background: currentColor;
  opacity: 0.5;
  border-radius: 4px;
}
.ph-tab.active { color: #185FA5; }
.ph-tab.active .tab-ico { opacity: 1; background: #378ADD; }
.ph-tab.fab {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FAC775, #f0b84e);
  color: #042C53;
  font-size: 22px;
  font-weight: 600;
  margin: -14px 4px 0;
  box-shadow: 0 8px 20px -4px rgba(250,199,117,0.6);
}
.ph-tab.fab span { transform: translateY(-1px); }

/* Home indicator */
.phone-home {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 5px;
  background: #1c1c1e;
  border-radius: 100px;
  z-index: 6;
}

/* STATS BAR */
.stats-bar {
  background: var(--navy-deep);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(250,199,117,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.stat-item {
  text-align: center;
  padding: 2.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.03); }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem; font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block; line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.5rem;
  display: block;
}

/* SERVICIOS */
.services {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  right: -200px; top: 100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55,138,221,0.06) 0%, transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}
.services .container { position: relative; z-index: 1; }
.services-tabs {
  display: flex;
  margin-top: 3rem;
  border-bottom: 2px solid var(--border);
}
.tab-btn {
  background: none; border: none;
  padding: 1rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; font-weight: 400;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
}
.tab-btn.active { color: var(--navy); font-weight: 500; border-bottom-color: var(--blue-mid); }
.tab-btn:hover:not(.active) { color: var(--navy); }
.tab-content { display: none; padding-top: 2.5rem; }
.tab-content.active { display: block; }

.service-header {
  background: linear-gradient(135deg, var(--navy) 0%, #0a3a6a 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
  box-shadow: 0 16px 48px -12px rgba(4,44,83,0.3);
  position: relative;
  overflow: hidden;
}
.service-header::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250,199,117,0.16) 0%, transparent 65%);
  filter: blur(30px);
  pointer-events: none;
}
.service-header > * { position: relative; z-index: 1; }
.service-header h3 { font-size: 1.6rem; color: var(--white); margin-bottom: 0.85rem; }
.service-header p { font-size: 0.925rem; color: rgba(255,255,255,0.62); line-height: 1.8; font-weight: 300; }
.service-pill {
  background: rgba(250,199,117,0.12);
  border: 1px solid rgba(250,199,117,0.3);
  color: var(--gold-mid);
  font-size: 0.72rem;
  padding: 0.45rem 1rem;
  border-radius: 2px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.highlight-box {
  background: var(--gold-light);
  border: 1px solid rgba(186,117,23,0.2);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}
.highlight-box p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; }
.highlight-box strong { color: var(--navy); font-weight: 500; }

.alcance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.alcance-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(55,138,221,0.08);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.alcance-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-blue);
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform var(--transition-slow);
}
.alcance-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.alcance-card:hover::before { transform: scaleX(1); }
.alcance-card h4 { font-size: 0.875rem; color: var(--navy); margin-bottom: 1rem; }
.alcance-list li {
  font-size: 0.8rem; color: var(--text-muted);
  padding: 0.3rem 0 0.3rem 1rem;
  position: relative; line-height: 1.55;
  border-bottom: 1px solid var(--surface);
}
.alcance-list li:last-child { border-bottom: none; }
.alcance-list li::before {
  content: '';
  position: absolute; left: 0; top: 0.65rem;
  width: 5px; height: 5px;
  border-radius: 50%; background: var(--blue-mid);
}

.metodologia-bar {
  background: linear-gradient(135deg, var(--navy) 0%, #0a3a6a 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  box-shadow: 0 16px 48px -12px rgba(4,44,83,0.3);
  position: relative;
  overflow: hidden;
}
.metodologia-bar::before {
  content: '';
  position: absolute;
  left: -80px; bottom: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55,138,221,0.18) 0%, transparent 65%);
  filter: blur(30px);
  pointer-events: none;
}
.meto-item { text-align: center; position: relative; z-index: 1; }
.meto-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem; font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block; line-height: 1; margin-bottom: 0.5rem;
}
.meto-item h5 { font-size: 0.85rem; color: var(--white); margin-bottom: 0.35rem; }
.meto-item p { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.55; }

/* NOSOTROS */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3.5rem;
}
.about-image-wrap { position: relative; }
.about-image-main {
  border-radius: var(--radius);
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-lg);
}
.about-image-main img { height: 100%; object-fit: cover; }
.about-image-accent {
  position: absolute;
  bottom: -2rem; right: -2rem;
  width: 180px; height: 180px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-years-badge {
  position: absolute;
  top: 2rem; left: -2rem;
  background: var(--gradient-gold);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  text-align: center;
  box-shadow: 0 16px 40px -8px rgba(250,199,117,0.5), 0 4px 12px rgba(4,44,83,0.15);
}
.about-years-badge span {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 700;
  display: block; line-height: 1;
}
.about-years-badge p { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; margin-top: 0.25rem; }

.about-text p { font-size: 0.95rem; color: var(--text-muted); font-weight: 300; line-height: 1.85; margin-bottom: 1.25rem; }

.contadora-card {
  background: linear-gradient(135deg, var(--navy) 0%, #0a3a6a 100%);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  box-shadow: 0 12px 36px -10px rgba(4,44,83,0.3);
  position: relative;
  overflow: hidden;
}
.contadora-card::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250,199,117,0.12) 0%, transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}
.contadora-card > * { position: relative; z-index: 1; }
.contadora-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(250,199,117,0.15);
  border: 2px solid rgba(250,199,117,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--gold-mid); flex-shrink: 0;
}
.contadora-info h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 0.2rem; }
.contadora-tp { font-size: 0.72rem; color: var(--gold-mid); letter-spacing: 0.5px; display: block; margin-bottom: 0.75rem; }
.contadora-detail { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.75; }

.areas-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin-top: 2rem;
}
.area-item {
  background: var(--white); border-radius: var(--radius);
  padding: 1.5rem 1.25rem; text-align: center;
  border: 1px solid rgba(55,138,221,0.12);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.area-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(230,241,251,0.5) 0%, rgba(255,255,255,0) 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.area-item:hover {
  transform: translateY(-5px);
  border-color: var(--blue-mid);
  box-shadow: 0 12px 32px -8px rgba(55,138,221,0.25);
}
.area-item:hover::before { opacity: 1; }
.area-item > * { position: relative; z-index: 1; }
.area-icon {
  width: 48px; height: 48px;
  background: var(--gradient-blue);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.85rem;
  box-shadow: 0 6px 16px -4px rgba(55,138,221,0.4);
}
.area-icon svg { stroke: var(--white) !important; }
.area-icon svg { width: 18px; height: 18px; stroke: var(--blue); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.area-item h5 { font-size: 0.8rem; color: var(--navy); margin-bottom: 0.2rem; }
.area-item p { font-size: 0.72rem; color: var(--text-muted); line-height: 1.5; }

/* CASOS */
.casos {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.casos::before {
  content: '';
  position: absolute;
  left: -150px; top: 50px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250,199,117,0.08) 0%, transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}
.casos .container { position: relative; z-index: 1; }
.casos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.caso-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid rgba(4,44,83,0.05);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}
.caso-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.caso-image { height: 200px; overflow: hidden; }
.caso-image img { height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.caso-card:hover .caso-image img { transform: scale(1.04); }
.caso-body { padding: 1.5rem; }
.caso-tag {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--blue-mid); margin-bottom: 0.5rem; display: block;
}
.caso-body h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 500;
  color: var(--navy); margin-bottom: 0.6rem; line-height: 1.45;
}
.caso-body p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }
.caso-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--surface);
  display: flex; align-items: center; gap: 0.75rem;
}
.caso-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 500; color: var(--gold-mid); flex-shrink: 0;
}
.caso-footer-info span { display: block; font-size: 0.8rem; font-weight: 500; color: var(--navy); }
.caso-footer-info small { font-size: 0.72rem; color: var(--text-muted); }

/* FAQ */
.faq { background: var(--white); }
.faq-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 4rem; margin-top: 3rem; align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all var(--transition);
  background: var(--white);
}
.faq-item:hover { border-color: rgba(55,138,221,0.4); box-shadow: 0 4px 16px rgba(4,44,83,0.06); }
.faq-item.open {
  border-color: var(--blue-mid);
  box-shadow: 0 8px 28px -6px rgba(55,138,221,0.25);
}
.faq-question {
  width: 100%; background: none; border: none;
  padding: 1.1rem 1.25rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 500;
  color: var(--navy); text-align: left;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--surface); }
.faq-item.open .faq-question { background: var(--blue-light); color: var(--blue); }
.faq-chevron {
  width: 18px; height: 18px; flex-shrink: 0;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform var(--transition);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 220px; }
.faq-answer p { padding: 0 1.25rem 1.25rem; font-size: 0.85rem; color: var(--text-muted); line-height: 1.75; font-weight: 300; }

.faq-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #0a3a6a 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem;
  position: sticky; top: 88px;
  box-shadow: 0 16px 48px -12px rgba(4,44,83,0.35);
  position: sticky;
  overflow: hidden;
}
.faq-cta::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250,199,117,0.18) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.faq-cta > * { position: relative; z-index: 1; }
.faq-cta h3 { font-size: 1.35rem; color: var(--white); }
.faq-cta p { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.7; font-weight: 300; }

/* MAPA */
.mapa { background: var(--surface); padding: 4rem 0; }
.mapa-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 3rem; align-items: center; }
.mapa-info h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 1rem; }
.mapa-detail { display: flex; flex-direction: column; gap: 0.85rem; }
.mapa-row { display: flex; gap: 0.75rem; align-items: flex-start; }
.mapa-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 0.35rem; }
.mapa-row p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.55; }
.mapa-row strong { color: var(--navy); font-weight: 500; display: block; }
.mapa-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); height: 380px; }
.mapa-frame iframe { width: 100%; height: 100%; border: none; }

/* CONTACTO */
.contact {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  right: -200px; top: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250,199,117,0.1) 0%, transparent 65%);
  filter: blur(50px);
  pointer-events: none;
  animation: float 16s ease-in-out infinite;
}
.contact::after {
  content: '';
  position: absolute;
  left: -150px; bottom: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55,138,221,0.12) 0%, transparent 65%);
  filter: blur(50px);
  pointer-events: none;
  animation: float 18s ease-in-out infinite reverse;
}
.contact .container { position: relative; z-index: 1; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 5rem; align-items: start;
}
.contact .section-tag { color: var(--gold-mid); }
.contact .section-title { color: var(--white); }
.contact-desc { font-size: 0.925rem; color: rgba(255,255,255,0.55); font-weight: 300; line-height: 1.8; margin-top: 1rem; margin-bottom: 2rem; }
.contact-detail-list { display: flex; flex-direction: column; gap: 1rem; }
.contact-detail { display: flex; gap: 0.85rem; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(250,199,117,0.12);
  border: 1px solid rgba(250,199,117,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: all var(--transition);
}
.contact-detail:hover .contact-icon {
  background: rgba(250,199,117,0.2);
  border-color: rgba(250,199,117,0.4);
  transform: translateY(-2px);
}
.contact-icon svg { width: 17px; height: 17px; stroke: var(--gold-mid); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.contact-detail-text span { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.15rem; }
.contact-detail-text a, .contact-detail-text p { font-size: 0.875rem; color: rgba(255,255,255,0.72); }
.contact-detail-text a:hover { color: var(--gold-mid); }

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.7rem; color: rgba(255,255,255,0.38); text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group textarea, .form-group select {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 0.875rem;
  outline: none; transition: border-color var(--transition); width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.22); }
.form-group select { color: rgba(255,255,255,0.6); }
.form-group select option { background: var(--navy); color: var(--white); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: rgba(250,199,117,0.5); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit {
  background: var(--gradient-gold); color: var(--navy);
  border: none; padding: 1rem 2.2rem;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: all var(--transition);
  align-self: flex-start; display: flex; align-items: center; gap: 0.5rem;
  box-shadow: 0 8px 24px -6px rgba(250,199,117,0.5);
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -6px rgba(250,199,117,0.6);
}
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-success {
  background: var(--teal-light);
  border: 1px solid var(--teal); border-radius: var(--radius);
  padding: 1.5rem; text-align: center;
}
.form-success h4 { color: var(--teal); font-size: 1rem; margin-bottom: 0.5rem; }
.form-success p { font-size: 0.875rem; color: var(--teal); }

/* FOOTER */
.footer { background: var(--navy-deep); padding: 3.5rem 0 1.5rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 1.5rem;
}
.footer-brand .nav-logo { font-size: 1.3rem; margin-bottom: 0.85rem; display: block; }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.35); line-height: 1.75; font-weight: 300; }
.footer-col h5 { font-size: 0.7rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.82rem; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold-mid); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.2); }

/* WHATSAPP FLOTANTE */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  display: flex; align-items: center; gap: 0.75rem;
  background: #25D366; color: var(--white);
  padding: 0.85rem 1.25rem; border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 500;
  transition: all var(--transition); text-decoration: none;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 22px; height: 22px; fill: var(--white); flex-shrink: 0; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 5rem 2rem 3rem; }
  .hero-image { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mapa-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .nav-links {
    display: none; position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--navy); flex-direction: column;
    padding: 1.5rem 2rem; gap: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .casos-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .metodologia-bar { grid-template-columns: 1fr; gap: 1.5rem; }
  .alcance-grid { grid-template-columns: 1fr; }
  .service-header { grid-template-columns: 1fr; padding: 2rem; }
  .areas-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .faq-cta { position: static; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 0.9rem; border-radius: 50%; }
}
