    /* ============ RESET & BASE ============ */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', Arial, sans-serif;
      background-color: #F8FAFC;
      color: #0F172A;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { max-width: 100%; display: block; }

    /* ============ VARIABLES ============ */
    :root {
      --dark: #0F172A;
      --tech-blue: #2563EB;
      --white: #FFFFFF;
      --light-gray: #F8FAFC;
      --accent-green: #22C55E;
      --text-muted: #64748B;
      --card-border: #E2E8F0;
      --shadow: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.04);
      --shadow-lg: 0 10px 40px rgba(15, 23, 42, 0.1), 0 2px 8px rgba(15, 23, 42, 0.06);
      --shadow-xl: 0 25px 60px rgba(15, 23, 42, 0.14), 0 4px 12px rgba(15, 23, 42, 0.05);
      --radius: 16px;
      --radius-sm: 10px;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* ============ ANIMATIONS KEYFRAMES ============ */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(50px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    @keyframes slideInLeft {
      from { opacity: 0; transform: translateX(-60px); }
      to { opacity: 1; transform: translateX(0); }
    }
    @keyframes slideInRight {
      from { opacity: 0; transform: translateX(60px); }
      to { opacity: 1; transform: translateX(0); }
    }
    @keyframes scaleIn {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }
    @keyframes pulse-glow {
      0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.3); }
      50% { box-shadow: 0 0 0 12px rgba(37, 99, 235, 0); }
    }
    @keyframes gradient-shift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
    @keyframes dash-draw {
      to { stroke-dashoffset: 0; }
    }
    @keyframes orbit {
      from { transform: rotate(0deg) translateX(90px) rotate(0deg); }
      to { transform: rotate(360deg) translateX(90px) rotate(-360deg); }
    }
    @keyframes orbit-reverse {
      from { transform: rotate(0deg) translateX(140px) rotate(0deg); }
      to { transform: rotate(-360deg) translateX(140px) rotate(360deg); }
    }
    @keyframes typewriter {
      from { width: 0; }
      to { width: 100%; }
    }
    @keyframes blink {
      50% { border-color: transparent; }
    }
    @keyframes rotate-slow {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
    @keyframes counter-pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }
    @keyframes line-grow {
      from { transform: scaleX(0); }
      to { transform: scaleX(1); }
    }
    @keyframes card-glow {
      0%, 100% { box-shadow: 0 0 20px rgba(37, 99, 235, 0.1); }
      50% { box-shadow: 0 0 40px rgba(37, 99, 235, 0.2); }
    }
    @keyframes scroll-arrow {
      0%, 100% { transform: translateY(0); opacity: 1; }
      50% { transform: translateY(8px); opacity: 0.5; }
    }
    @keyframes mesh-move {
      0% { transform: translate(0, 0); }
      25% { transform: translate(2%, -2%); }
      50% { transform: translate(-1%, 1%); }
      75% { transform: translate(1%, -1%); }
      100% { transform: translate(0, 0); }
    }
    @keyframes sparkle {
      0%, 100% { opacity: 0; transform: scale(0); }
      50% { opacity: 1; transform: scale(1); }
    }
    @keyframes border-flow {
      0% { background-position: 0% 50%; }
      100% { background-position: 200% 50%; }
    }
    @keyframes text-reveal {
      from { clip-path: polygon(0 0, 0 0, 0 100%, 0 100%); }
      to { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    }
    @keyframes wave {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }
    @keyframes dot-bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }
    @keyframes spin-slow {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
    @keyframes morph {
      0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
      50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    }
    @keyframes progress-fill {
      from { transform: scaleX(0); }
      to { transform: scaleX(1); }
    }
    @keyframes shimmer {
      0% { background-position: -200% 0; }
      100% { background-position: 200% 0; }
    }
    @keyframes bounce-in {
      0% { opacity: 0; transform: scale(0.3); }
      50% { transform: scale(1.05); }
      70% { transform: scale(0.95); }
      100% { opacity: 1; transform: scale(1); }
    }
    @keyframes draw-path {
      from { stroke-dashoffset: 200; }
      to { stroke-dashoffset: 0; }
    }
    @keyframes fade-scale-up {
      from { opacity: 0; transform: scale(0.8) translateY(20px); }
      to { opacity: 1; transform: scale(1) translateY(0); }
    }
    @keyframes ticker {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    @keyframes ticker-vertical {
      0% { transform: translateY(0); }
      100% { transform: translateY(-50%); }
    }
    @keyframes ring-pulse {
      0% { transform: scale(0.8); opacity: 1; }
      100% { transform: scale(1.5); opacity: 0; }
    }
    @keyframes confetti-fall {
      0% { transform: translateY(-10vh) rotate(0deg); opacity: 1; }
      100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
    }

    /* ============ UTILITY ============ */
    .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .fade-in { animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; }
    .fade-in-left { animation: slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; }
    .fade-in-right { animation: slideInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; }
    .delay-1 { animation-delay: 0.1s; }
    .delay-2 { animation-delay: 0.2s; }
    .delay-3 { animation-delay: 0.3s; }
    .delay-4 { animation-delay: 0.4s; }
    .delay-5 { animation-delay: 0.5s; }
    .delay-6 { animation-delay: 0.6s; }
    .delay-7 { animation-delay: 0.7s; }
    .delay-8 { animation-delay: 0.8s; }
    .delay-9 { animation-delay: 0.9s; }
    .delay-10 { animation-delay: 1.0s; }
    .delay-11 { animation-delay: 1.1s; }
    .delay-12 { animation-delay: 1.2s; }
    .hidden { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
    .hidden.show { opacity: 1; transform: translateY(0); }

    /* correguir el logo */
    .brand { display: flex; align-items: center; gap: 12px; }
.brand__logo {
  width: 60px; height: 60px; border-radius: 90%;
  object-fit: cover; background: #0b1226;
  border: 1px solid var(--border);
}

    /* ============ NAVIGATION ============ */
    .nav {
      position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
      background:  #ffffff;
      backdrop-filter: blur(20px) saturate(1.8);
      -webkit-backdrop-filter: blur(20px) saturate(1.8);
      border-bottom: 1px solid #ffffff;
      transition: var(--transition);
    }
    .nav.scrolled { background: rgba(248, 250, 252, 0.95); box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06); }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
    .nav-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.4rem; color: var(--dark); letter-spacing: -0.5px; }
    .nav-brand svg { width: 36px; height: 36px; }
    .nav-links { display: flex; gap: 36px; align-items: center; }
    .nav-links a { font-weight: 500; font-size: 0.95rem; color: var(--text-muted); transition: var(--transition); position: relative; padding: 4px 0; }
    .nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--tech-blue); transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1); border-radius: 2px; }
    .nav-links a:hover { color: var(--dark); }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta { background: var(--tech-blue); color: var(--white); padding: 10px 22px; border-radius: 8px; font-weight: 600; font-size: 0.9rem; transition: var(--transition); position: relative; overflow: hidden; }
    .nav-cta::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: rgba(248, 250, 252, 0.98); transition: left 0.4s; transform: skewX(-15deg); }
    .nav-cta:hover::before { left: 100%; }
    .nav-cta:hover { background: #1d4ed8; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3); }
    .nav-mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border: none; background: none; }
    .nav-mobile-toggle span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }
    .nav-mobile-toggle.active span:first-child { transform: rotate(45deg) translate(5px, 5px); }
    .nav-mobile-toggle.active span:last-child { transform: rotate(-45deg) translate(5px, -5px); }

    /* ============ MOBILE MENU ============ */
    .mobile-menu {
      position: fixed; top: 72px; left: 0; width: 100%; background: rgba(248, 250, 252, 0.98); backdrop-filter: blur(20px); border-bottom: 1px solid var(--card-border); padding: 24px; transform: translateY(-100%); opacity: 0; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); z-index: 999; pointer-events: none;
    }
    .mobile-menu.active { transform: translateY(0); opacity: 1; pointer-events: all; }
    .mobile-menu a { display: block; padding: 14px 0; font-size: 1.1rem; font-weight: 600; color: var(--dark); border-bottom: 1px solid rgba(226, 232, 240, 0.5); transition: var(--transition); }
    .mobile-menu a:hover { color: var(--tech-blue); padding-left: 8px; }
    .mobile-menu .nav-cta { display: inline-block; margin-top: 16px; width: 100%; text-align: center; }

    /* ============ HERO ============ */
    .hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 120px 0 80px; background: var(--dark); }
    .hero-grid {
      position: absolute; inset: 0;
      background-image: 
        linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      animation: mesh-move 20s ease-in-out infinite;
      mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 70%);
      -webkit-mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 70%);
    }
    .hero-orb {
      position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.15; pointer-events: none;
    }
    .hero-orb-1 { width: 500px; height: 500px; background: var(--tech-blue); top: -10%; left: -5%; animation: float 8s ease-in-out infinite; }
    .hero-orb-2 { width: 400px; height: 400px; background: #22C55E; bottom: -10%; right: -5%; animation: float 10s ease-in-out infinite 2s; }
    .hero-orb-3 { width: 300px; height: 300px; background: #8B5CF6; top: 30%; left: 50%; animation: float 12s ease-in-out infinite 4s; }
    .hero-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 2; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px; background: rgba(37, 99, 235, 0.1); border: 1px solid rgba(37, 99, 235, 0.2); color: #60A5FA; padding: 8px 18px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 28px; animation: fadeInUp 0.6s ease-out forwards; opacity: 0;
    }
    .hero-badge .pulse-dot { width: 8px; height: 8px; background: #22C55E; border-radius: 50%; animation: pulse-glow 2s infinite; }
    .hero-title { font-size: clamp(2.6rem, 5.5vw, 4.5rem); font-weight: 900; color: var(--white); line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 24px; }
    .hero-title .gradient-text {
      background: linear-gradient(135deg, #60A5FA, #22C55E, #A78BFA, #60A5FA);
      background-size: 300% 300%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: gradient-shift 5s ease infinite;
    }
    .hero-subtitle { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: #94A3B8; max-width: 520px; line-height: 1.7; margin-bottom: 40px; }
    .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
    .btn-primary {
      background: linear-gradient(135deg, var(--tech-blue), #1d4ed8); color: var(--white); padding: 14px 32px; border-radius: 10px; font-weight: 600; font-size: 1rem; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; position: relative; overflow: hidden; border: none; cursor: pointer; box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
    }
    .btn-primary::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent); transform: translateX(-100%); transition: transform 0.6s; }
    .btn-primary:hover::after { transform: translateX(100%); }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4); }
    .btn-primary:active { transform: translateY(0); }
    .btn-ghost {
      background: transparent; color: var(--white); padding: 14px 32px; border-radius: 10px; font-weight: 600; font-size: 1rem; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,0.15); cursor: pointer; backdrop-filter: blur(8px);
    }
    .btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.25); transform: translateY(-2px); }
    .btn-ghost svg { transition: transform 0.3s; }
    .btn-ghost:hover svg { transform: translateX(4px); }
    .hero-illustration { position: relative; }
    .hero-illustration-inner {
      background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; padding: 28px; position: relative; overflow: hidden; backdrop-filter: blur(10px); animation: scaleIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards; opacity: 0; transform: scale(0.95);
    }
    .hero-illustration-inner::before {
      content: ''; position: absolute; inset: -1px; border-radius: 24px; padding: 1px;
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(34, 197, 94, 0.2), transparent, rgba(139, 92, 246, 0.2));
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
      animation: border-flow 4s linear infinite; background-size: 200% 200%;
    }
    .hero-dashboard { background: rgba(15, 23, 42, 0.8); border-radius: 16px; border: 1px solid rgba(255,255,255,0.06); overflow: hidden; }
    .dashboard-header { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: rgba(255,255,255,0.03); border-bottom: 1px solid rgba(255,255,255,0.06); }
    .dashboard-dot { width: 10px; height: 10px; border-radius: 50%; }
    .dot-r { background: #EF4444; }
    .dot-y { background: #F59E0B; }
    .dot-g { background: #22C55E; }
    .dashboard-body { padding: 20px; }
    .dashboard-row { display: flex; gap: 12px; margin-bottom: 12px; animation: fadeIn 0.5s ease forwards; opacity: 0; }
    .dashboard-row:nth-child(1) { animation-delay: 0.6s; }
    .dashboard-row:nth-child(2) { animation-delay: 0.8s; }
    .dashboard-row:nth-child(3) { animation-delay: 1.0s; }
    .dashboard-row:nth-child(4) { animation-delay: 1.2s; }
    .dashboard-bar { height: 32px; border-radius: 6px; animation: progress-fill 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards; transform-origin: left; position: relative; overflow: hidden; }
    .dashboard-bar::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent); animation: shimmer 2s infinite; }
    .bar-1 { background: linear-gradient(90deg, #2563EB, #3B82F6); width: 78%; animation-delay: 0.8s; }
    .bar-2 { background: linear-gradient(90deg, #22C55E, #4ADE80); width: 92%; animation-delay: 1.0s; }
    .bar-3 { background: linear-gradient(90deg, #8B5CF6, #A78BFA); width: 65%; animation-delay: 1.2s; }
    .bar-4 { background: linear-gradient(90deg, #F59E0B, #FBBF24); width: 84%; animation-delay: 1.4s; }
    .dashboard-metric { display: flex; justify-content: space-between; margin-bottom: 20px; }
    .metric-item { text-align: center; animation: fade-scale-up 0.6s ease forwards; opacity: 0; }
    .metric-item:nth-child(1) { animation-delay: 1.0s; }
    .metric-item:nth-child(2) { animation-delay: 1.2s; }
    .metric-item:nth-child(3) { animation-delay: 1.4s; }
    .metric-value { font-size: 1.8rem; font-weight: 800; color: var(--white); }
    .metric-value span { display: inline-block; }
    .metric-label { font-size: 0.75rem; color: #64748B; text-transform: uppercase; letter-spacing: 0.5px; }
    .metric-change { font-size: 0.8rem; margin-top: 4px; }
    .metric-up { color: #22C55E; }
    .metric-down { color: #EF4444; }
    .chart-area { display: flex; align-items: flex-end; gap: 6px; height: 80px; margin-top: 16px; padding: 0 4px; }
    .chart-col { flex: 1; background: linear-gradient(to top, rgba(37, 99, 235, 0.4), rgba(37, 99, 235, 0.1)); border-radius: 4px 4px 0 0; animation: grow-bar 0.8s ease forwards; transform-origin: bottom; opacity: 0; animation-delay: 1.5s; }
    .chart-col:nth-child(1) { height: 45%; animation-delay: 1.5s; }
    .chart-col:nth-child(2) { height: 70%; animation-delay: 1.6s; }
    .chart-col:nth-child(3) { height: 55%; animation-delay: 1.7s; }
    .chart-col:nth-child(4) { height: 85%; animation-delay: 1.8s; }
    .chart-col:nth-child(5) { height: 60%; animation-delay: 1.9s; }
    .chart-col:nth-child(6) { height: 95%; animation-delay: 2.0s; }
    .chart-col:nth-child(7) { height: 75%; animation-delay: 2.1s; }
    @keyframes grow-bar { from { transform: scaleY(0); opacity: 0; } to { transform: scaleY(1); opacity: 1; } }

    .hero-stats { display: flex; gap: 40px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06); animation: fadeInUp 0.8s ease-out 1.2s forwards; opacity: 0; }
    .hero-stat { text-align: left; }
    .hero-stat-number { font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1; }
    .hero-stat-label { font-size: 0.85rem; color: #64748B; margin-top: 6px; }

    /* Scroll indicator */
    .scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; animation: fadeIn 1s ease 2s forwards; opacity: 0; }
    .scroll-indicator span { font-size: 0.7rem; color: #64748B; text-transform: uppercase; letter-spacing: 2px; }
    .scroll-indicator .arrow { width: 20px; height: 20px; border-right: 2px solid #64748B; border-bottom: 2px solid #64748B; transform: rotate(45deg); animation: scroll-arrow 2s ease-in-out infinite; }

    /* ============ TRUST BADGE / LOGO MARQUEE ============ */
    .trust-section { padding: 50px 0; background: var(--white); border-bottom: 1px solid var(--card-border); overflow: hidden; position: relative; }
    .trust-section::before, .trust-section::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
    .trust-section::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
    .trust-section::after { right: 0; background: linear-gradient(to left, var(--white), transparent); }
    .trust-label { text-align: center; font-size: 0.85rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 28px; }
    .trust-marquee { display: flex; gap: 60px; animation: ticker 30s linear infinite; width: max-content; }
    .trust-item { display: flex; align-items: center; gap: 10px; color: #94A3B8; font-weight: 700; font-size: 1.1rem; white-space: nowrap; opacity: 0.6; transition: opacity 0.3s; }
    .trust-item:hover { opacity: 1; }
    .trust-item svg { width: 28px; height: 28px; fill: currentColor; opacity: 0.7; }

    /* ============ SECTIONS COMMON ============ */
    section { padding: 120px 0; position: relative; }
    .section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
    .section-tag {
      display: inline-flex; align-items: center; gap: 6px; background: rgba(37, 99, 235, 0.08); color: var(--tech-blue); padding: 6px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
    }
    .section-title { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900; color: var(--dark); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 18px; }
    .section-desc { font-size: 1.1rem; color: var(--text-muted); line-height: 1.7; }
    .section-line { width: 60px; height: 3px; background: linear-gradient(90deg, var(--tech-blue), var(--accent-green)); margin: 20px auto 0; border-radius: 3px; animation: line-grow 0.8s ease forwards; transform-origin: center; }

    /* ============ SERVICES ============ */
    .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
    .service-card {
      background: var(--white); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 36px 32px; transition: var(--transition-slow); position: relative; overflow: hidden; cursor: pointer;
    }
    .service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--tech-blue), var(--accent-green)); transform: scaleX(0); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
    .service-card:hover::before { transform: scaleX(1); }
    .service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: rgba(37, 99, 235, 0.15); }
    .service-icon-wrap { width: 56px; height: 56px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; position: relative; transition: var(--transition); }
    .service-card:hover .service-icon-wrap { transform: scale(1.1) rotate(5deg); }
    .service-icon-wrap svg { width: 28px; height: 28px; }
    .icon-blue { background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.05)); }
    .icon-blue svg { color: var(--tech-blue); }
    .icon-green { background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05)); }
    .icon-green svg { color: var(--accent-green); }
    .icon-purple { background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05)); }
    .icon-purple svg { color: #8B5CF6; }
    .icon-orange { background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05)); }
    .icon-orange svg { color: #F59E0B; }
    .service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
    .service-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.65; }
    .service-card .link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: 0.9rem; font-weight: 600; color: var(--tech-blue); opacity: 0; transform: translateX(-10px); transition: var(--transition); }
    .service-card:hover .link { opacity: 1; transform: translateX(0); }
    .service-card .link svg { width: 16px; height: 16px; transition: transform 0.3s; }
    .service-card:hover .link svg { transform: translateX(4px); }

    /* ============ TECH STACK ============ */
    .tech-section { background: var(--dark); padding: 120px 0; position: relative; overflow: hidden; }
    .tech-section .section-title { color: var(--white); }
    .tech-section .section-desc { color: #94A3B8; }
    .tech-section .section-line { background: linear-gradient(90deg, var(--tech-blue), var(--accent-green)); }
    .tech-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; }
    .tech-card {
      background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-sm); padding: 32px 16px; text-align: center; transition: var(--transition-slow); position: relative; overflow: hidden; cursor: pointer;
    }
    .tech-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(34, 197, 94, 0.04)); opacity: 0; transition: opacity 0.4s; }
    .tech-card:hover::before { opacity: 1; }
    .tech-card:hover { transform: translateY(-5px) scale(1.03); border-color: rgba(37, 99, 235, 0.2); box-shadow: 0 0 30px rgba(37, 99, 235, 0.1); }
    .tech-card:hover .tech-icon { transform: scale(1.2) rotate(8deg); }
    .tech-icon { width: 44px; height: 44px; margin: 0 auto 14px; transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); position: relative; z-index: 1; }
    .tech-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--white); position: relative; z-index: 1; }
    .tech-card span { font-size: 0.75rem; color: #64748B; margin-top: 4px; display: block; position: relative; z-index: 1; }

    /* ============ PROCESS / HOW IT WORKS ============ */
    .process-section { background: var(--light-gray); }
    .process-steps { display: flex; gap: 0; position: relative; justify-content: space-between; }
    .process-line { position: absolute; top: 28px; left: 60px; right: 60px; height: 2px; background: linear-gradient(90deg, var(--tech-blue), var(--accent-green)); z-index: 0; opacity: 0.3; }
    .process-step { flex: 1; text-align: center; padding: 0 16px; position: relative; z-index: 1; }
    .step-number {
      width: 56px; height: 56px; border-radius: 50%; background: var(--white); border: 2px solid var(--tech-blue); color: var(--tech-blue); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 800; margin: 0 auto 20px; position: relative; transition: var(--transition); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); cursor: default;
    }
    .step-number::after { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid transparent; border-top-color: var(--tech-blue); border-right-color: var(--tech-blue); opacity: 0; transition: opacity 0.3s; }
    .process-step:hover .step-number { background: var(--tech-blue); color: var(--white); transform: scale(1.1); box-shadow: 0 0 20px rgba(37, 99, 235, 0.3); }
    .process-step:hover .step-number::after { opacity: 1; animation: spin-slow 1s linear infinite; }
    .process-step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
    .process-step p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
    .step-arrow { position: absolute; top: 20px; right: -20px; color: var(--tech-blue); opacity: 0.4; }

    /* ============ FEATURES / WHY US ============ */
    .features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .features-visual { position: relative; }
    .features-visual-inner {
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(34, 197, 94, 0.03)); border: 1px solid rgba(37, 99, 235, 0.1); border-radius: 24px; padding: 40px; position: relative; overflow: hidden;
    }
    .features-visual-inner::after { content: ''; position: absolute; width: 200px; height: 200px; background: rgba(37, 99, 235, 0.05); border-radius: 50%; top: -50px; right: -50px; filter: blur(40px); animation: float 6s ease-in-out infinite; }
    .features-visual-inner::before { content: ''; position: absolute; width: 150px; height: 150px; background: rgba(34, 197, 94, 0.05); border-radius: 50%; bottom: -40px; left: -40px; filter: blur(35px); animation: float 8s ease-in-out infinite 2s; }
    .features-list { display: flex; flex-direction: column; gap: 28px; }
    .feature-item { display: flex; gap: 18px; padding: 20px; border-radius: 14px; transition: var(--transition); }
    .feature-item:hover { background: var(--white); box-shadow: var(--shadow-lg); transform: translateX(8px); }
    .feature-check { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, #22C55E, #4ADE80); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; transition: transform 0.3s; }
    .feature-item:hover .feature-check { transform: scale(1.2) rotate(10deg); }
    .feature-check svg { width: 14px; height: 14px; color: var(--white); }
    .feature-item h4 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
    .feature-item p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

    /* ============ TESTIMONIALS ============ */
    .testimonials-section { background: var(--white); }
    .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .testimonial-card {
      background: var(--light-gray); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 32px; transition: var(--transition-slow); position: relative; overflow: hidden;
    }
    .testimonial-card::before { content: '"'; position: absolute; top: 10px; right: 24px; font-size: 4rem; font-family: Georgia, serif; color: rgba(37, 99, 235, 0.08); line-height: 1; font-weight: 700; }
    .testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(37, 99, 235, 0.1); }
    .testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; }
    .testimonial-stars svg { width: 18px; height: 18px; color: #FBBF24; animation: sparkle 0.6s ease forwards; opacity: 0; }
    .testimonial-stars svg:nth-child(1) { animation-delay: 0.1s; }
    .testimonial-stars svg:nth-child(2) { animation-delay: 0.2s; }
    .testimonial-stars svg:nth-child(3) { animation-delay: 0.3s; }
    .testimonial-stars svg:nth-child(4) { animation-delay: 0.4s; }
    .testimonial-stars svg:nth-child(5) { animation-delay: 0.5s; }
    .testimonial-text { font-size: 0.95rem; color: var(--dark); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
    .testimonial-author { display: flex; align-items: center; gap: 14px; }
    .testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--tech-blue), var(--accent-green)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 800; font-size: 1rem; flex-shrink: 0; }
    .testimonial-author-info h5 { font-size: 0.95rem; font-weight: 700; color: var(--dark); }
    .testimonial-author-info span { font-size: 0.8rem; color: var(--text-muted); }

    /* ============ METRICS / COUNTER SECTION ============ */
    .metrics-section { background: linear-gradient(135deg, var(--dark), #1e293b); padding: 100px 0; position: relative; overflow: hidden; }
    .metrics-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(34, 197, 94, 0.06) 0%, transparent 50%); }
    .metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; position: relative; z-index: 1; }
    .metric-card { text-align: center; padding: 20px; }
    .metric-card-number { font-size: 3.5rem; font-weight: 900; color: var(--white); line-height: 1; background: linear-gradient(135deg, var(--white), #94A3B8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: counter-pulse 3s ease-in-out infinite; }
    .metric-card-label { font-size: 0.95rem; color: #94A3B8; margin-top: 10px; font-weight: 500; }
    .metric-card-line { width: 40px; height: 3px; background: linear-gradient(90deg, var(--tech-blue), var(--accent-green)); margin: 16px auto 0; border-radius: 3px; }

    /* ============ CTA ============ */
    .cta-section { padding: 120px 0; background: linear-gradient(135deg, var(--dark), #1e293b); position: relative; overflow: hidden; }
    .cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%); }
    .cta-section::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 50%, rgba(34, 197, 94, 0.06) 0%, transparent 50%); }
    .cta-inner { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; }
    .cta-inner .section-title { color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem); }
    .cta-inner .section-desc { color: #94A3B8; font-size: 1.15rem; margin-bottom: 40px; }
    .cta-inner .btn-primary { font-size: 1.1rem; padding: 16px 40px; }
    .cta-inner .btn-primary::after { display: none; }
    .cta-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(37, 99, 235, 0.1); pointer-events: none; }
    .cta-ring-1 { width: 400px; height: 400px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation: ring-pulse 4s ease-out infinite; }
    .cta-ring-2 { width: 500px; height: 500px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation: ring-pulse 4s ease-out infinite 1s; }

    /* ============ FOOTER ============ */
    .footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.05); padding: 80px 0 32px; }
    .footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
    .footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.3rem; color: var(--white); margin-bottom: 16px; }
    .footer-brand svg { width: 32px; height: 32px; }
    .footer-about { font-size: 0.9rem; color: #94A3B8; line-height: 1.7; max-width: 280px; }
    .footer-col h4 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
    .footer-col a { display: block; font-size: 0.9rem; color: #94A3B8; padding: 6px 0; transition: var(--transition); position: relative; padding-left: 0; }
    .footer-col a:hover { color: var(--white); padding-left: 8px; }
    .footer-col a::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 0; height: 2px; background: var(--tech-blue); transition: width 0.3s; border-radius: 2px; }
    .footer-col a:hover::before { width: 4px; }
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.05); }
    .footer-bottom p { font-size: 0.85rem; color: #64748B; }
    .footer-socials { display: flex; gap: 12px; }
    .footer-socials a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
    .footer-socials a:hover { background: rgba(37, 99, 235, 0.15); border-color: rgba(37, 99, 235, 0.3); transform: translateY(-3px); }
    .footer-socials a svg { width: 18px; height: 18px; color: #94A3B8; transition: var(--transition); }
    .footer-socials a:hover svg { color: var(--white); }

    /* ============ BACK TO TOP ============ */
    .back-to-top { position: fixed; bottom: 28px; right: 28px; width: 48px; height: 48px; border-radius: 50%; background: var(--tech-blue); color: var(--white); display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; transform: translateY(20px); transition: var(--transition); z-index: 900; border: none; box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3); }
    .back-to-top.visible { opacity: 1; transform: translateY(0); }
    .back-to-top:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4); background: #1d4ed8; }
    .back-to-top svg { width: 20px; height: 20px; }

    /* ============ RESPONSIVE ============ */
    @media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
      .hero-subtitle { margin-left: auto; margin-right: auto; }
      .hero-buttons { justify-content: center; }
      .hero-stats { justify-content: center; }
      .hero-illustration { max-width: 500px; margin: 0 auto; }
      .features-grid { grid-template-columns: 1fr; gap: 48px; }
      .features-visual { order: 2; }
      .features-list { order: 1; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .process-steps { flex-direction: column; gap: 40px; }
      .process-line { display: none; }
      .step-arrow { display: none; }
      .footer-inner { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-mobile-toggle { display: flex; }
      .hero { padding: 100px 0 60px; min-height: auto; }
      .hero-title { font-size: 2.4rem; }
      .hero-stats { flex-direction: column; gap: 20px; text-align: center; }
      section { padding: 80px 0; }
      .services-grid { grid-template-columns: 1fr; }
      .tech-grid { grid-template-columns: repeat(2, 1fr); }
      .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
      .metric-card-number { font-size: 2.5rem; }
      .footer-inner { grid-template-columns: 1fr; gap: 36px; }
      .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    }
    @media (max-width: 480px) {
      .hero-title { font-size: 2rem; }
      .hero-buttons { flex-direction: column; }
      .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
      .tech-grid { grid-template-columns: repeat(2, 1fr); }
      .metrics-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
    }
/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 36px 32px;
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

/* Barra con degradado en el borde superior al hacer hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2563EB, #22C55E);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before,
.service-card.active::before {
  opacity: 1;
}

/* Estado Activo / Seleccionado (Como la tarjeta del centro de la imagen) */
.service-card.active,
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  border-color: rgba(226, 232, 240, 0.8);
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon-wrap svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Botón / Enlace Saber más */
.service-card .link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto; /* Lo empuja hacia abajo si la tarjeta es más alta */
  font-size: 0.92rem;
  font-weight: 600;
  color: #2563EB;
  cursor: pointer;
  transition: var(--transition);
}

.service-card .link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.service-card .link:hover svg {
  transform: translateX(4px);
}
/* Estilos para la ventana emergente / Modal */
.modal {
  display: none; /* Inicia oculto por defecto */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.6); /* Fondo oscuro transparente */
  backdrop-filter: blur(4px); /* Efecto borroso de fondo */
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #64748b;
  cursor: pointer;
  transition: color 0.2s ease;
}

.close-modal:hover {
  color: #0f172a;
}

.footer-socials a {
  color: #fff; /* Color de los iconos */
  margin: 0 10px; /* Espaciado entre iconos */
}

.footer-socials svg {
  width: 24px; /* Tamaño de los iconos */
  height: 24px;
}
/* Estilos base para todos los botones de iconos */
.footer-socials a {
  background-color: transparent !important;
  border-width: 2px;
  border-style: solid;
  transition: all 0.3s ease;
}

/* Estilos específicos para cada red social */

/* LinkedIn: Azul de marca */
.footer-socials a[aria-label="LinkedIn"] {
  border-color: #0077b5;
  color: #0077b5 !important;
}
.footer-socials a[aria-label="LinkedIn"]:hover {
  background-color: #0077b5 !important;
  color: white !important;
}

/* Instagram: Un degradado sutil */
.footer-socials a[aria-label="Instagram"] {
  border-color: #e4405f;
  color: #e4405f !important;
}
.footer-socials a[aria-label="Instagram"]:hover {
  background-color: #e4405f !important;
  color: white !important;
}

/* TIKTOK - EL ARREGLO PRINCIPAL: Rosa y Cian */
.footer-socials a[aria-label="TikTok"] {
  border-color: white; /* Borde blanco base */
  color: white !important;
  position: relative; /* Para el efecto de sombra */
  /* Este efecto recrea el logo de TikTok */
  text-shadow: 2px 2px #ff0050, -2px -2px #00f2ea;
}
.footer-socials a[aria-label="TikTok"]:hover {
  /* Al pasar el ratón, el borde se vuelve de color */
  border-color: #00f2ea; 
}

/* WhatsApp: Verde de marca */
.footer-socials a[aria-label="WhatsApp"] {
  border-color: #25d366;
  color: #25d366 !important;
}
.footer-socials a[aria-label="WhatsApp"]:hover {
  background-color: #25d366 !important;
  color: white !important;
}
/* ASÍ NO SE DEBE HACER */
.footer-socials a {
  background-color: #555;
  color: #555; /* Icono y fondo del mismo color = INVISIBLE */
}
/* Estructura general de los botones de redes sociales */
.footer-socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-socials .social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px; /* Bordes redondeados elegantes */
  background-color: rgba(255, 255, 255, 0.06); /* Fondo translúcido */
  border: 1px solid rgba(255, 255, 255, 0.12); /* Borde sutil */
  color: #a0aec0; /* Color gris claro por defecto */
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Tamaño estándar para todos los iconos dentro del botón */
.footer-socials .social-btn svg {
  width: 20px;
  height: 20px;
}

/* EFECTOS HOVER (Ajustados a la paleta azul de Korum) */
.footer-socials .social-btn:hover {
  background-color: #2563eb; /* Azul corporativo */
  border-color: #3b82f6;
  color: #ffffff;
  transform: translateY(-2px); /* Efecto leve de elevación */
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Estilo especial para el logo de TikTok para asegurar su visibilidad */
.footer-socials .tiktok-btn svg {
  fill: currentColor;
}
/* Contenedor principal */
.pillars-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.section-title {
  font-size: 2rem;
  color: rgba(0, 0, 0, 0.822); /* Ajusta según el color de tu título */
  margin-bottom: 24px;
}

/* Lista ordenada personalizada */
.pillars-list {
  padding-left: 20px; /* Margen para los números */
  display: flex;
  flex-direction: column;
  gap: 20px; /* Espacio vertical entre cada pilar */
}

/* Cada elemento de la lista */
.pillar-item {
  color: #e2e8f0; /* Texto claro para fondo oscuro */
  font-size: 1.05rem;
  line-height: 1.6; /* Aumenta el interlineado */
}

/* Resaltado del título de cada pilar */
.pillar-item strong {
  color: #3b82f6; /* Color azul para destacar los títulos */
  font-weight: 700;
}
/* Alineación de la marca (imagen + texto) */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px; /* Espacio exacto entre el logo y el texto */
  font-weight: 700;
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 12px;
}

/* Control estricto de la imagen del logo */
/* Control estricto de la imagen del logo circular */
.footer-logo {
  width: 36px;
  height: 36px;
  object-fit: cover;     /* Rellena el círculo sin deformar la imagen */
  border-radius: 50%;    /* Hace que la imagen sea perfectamente circular */
}

/* Estilo del texto explicativo */
.footer-about {
  color: #a0aec0;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 320px;
}