:root {
    --bg-dark: #172042;
    --primary: #19C2A6;
    --accent: #FF7E25;
    --text-light: #E6E8EB;
    --text-muted: #9FA5B1;
    --radius: 18px;
}
body {
    font-family: 'Sora', Arial, sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    margin: 0; padding: 0; line-height: 1.6;
}
header {
    background: rgba(10, 14, 23, 0.96);
    position: sticky; top: 0; z-index: 100;
}
.navbar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 6vw;
}
.logo { width: 170px; max-width: 30vw; }
.logo img, .logo span { width: 100%; height: auto; display: block; }
.menu-toggle { display: none; background: none; border: none; color: var(--primary); font-size: 2rem; }
.nav-links a {
    color: var(--text-light); text-decoration: none; margin-left: 30px;
    font-weight: 600; font-size: 1rem; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a:focus { color: var(--primary); }
@media (max-width: 800px) {
    .nav-links { display: none; flex-direction: column; background: var(--bg-dark); position: absolute; top: 60px; right: 0; width: 65vw; border-radius: 8px; box-shadow: 0 8px 32px #0005; padding: 18px 0;}
    .nav-links.active { display: flex; }
    .menu-toggle { display: block; }
    .navbar { flex-wrap: wrap; }
    .services-grid {
        grid-template-columns: 1fr;
      }
}
.hero {
    min-height: 70vh; display: flex; align-items: center; justify-content: center;
    padding: 4rem 3vw 2rem 3vw; text-align: center; background: var(--bg-dark);
}
.hero h1 { font-size: clamp(2.1rem, 6vw, 3.6rem); color: var(--primary); margin-bottom: 20px;}
.hero p { color: var(--text-muted); font-size: clamp(1.05rem, 3vw, 1.3rem); margin-bottom: 32px; }

.cta-button {
    background: var(--accent); /* Naranja */
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 16px 38px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 6px 20px rgba(255, 126, 37, 0.25);
  }
  
  .cta-button:hover {
    background: var(--primary); /* Cian */
    color: var(--bg-dark);       /* Fondo oscuro como texto */
    transform: scale(1.05);      /* Ligero crecimiento */
    box-shadow: 0 8px 28px rgba(25, 194, 166, 0.3);
  }
  
  
.sticky-cta { display: none; }
@media (max-width: 600px) {
  .sticky-cta { display: block; position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 999; width: 90vw;}
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.services {
    padding: 60px 4vw 30px 4vw;
    background: var(--bg-dark);
}
.services h2 { text-align: center; margin-bottom: 24px; font-size: 2rem;}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Fuerza 3 columnas */
    gap: 25px;
    margin-top: 36px;
}
.service-card {
    background: #111627;
    border-radius: var(--radius);
    padding: 32px 16px;
    text-align: center;
    box-shadow: 0 4px 20px #0002;
    transition: transform 0.22s, box-shadow 0.22s;
}
.service-card:hover { 
    transform: translateY(-7px) scale(1.03); 
    box-shadow: 0 8px 28px rgba(25, 194, 166, 0.25);
}
.service-card i { font-size: 2.2rem; color: var(--primary); margin-bottom: 14px; }
.service-card h3 { margin-bottom: 10px; color: var(--primary); font-size: 1.18rem; }
.process { 
    padding: 60px 4vw 40px 4vw; 
    text-align: center;
}
.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 42px;
  }
  .step {
    width: 32%;
    text-align: center;
  }
  .step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-weight: bold;
    font-size: 1.1rem;
  }
  .step h4 {
    color: var(--primary);
    margin-bottom: 8px;
  }
  
  .step p {
    font-size: 0.95rem;
    color: var(--text-light);
  }
  
  .cta-center {
    margin-top: 40px;
  }
@media (max-width: 900px) {
    .process-steps { flex-direction: column; gap: 34px; }
    .step { width: 100%; }
    .services-grid {
        grid-template-columns: 1fr;
    }
}
.case-studies { padding: 60px 4vw 50px 4vw; background: var(--bg-dark); }
.cases-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; margin-top: 32px; }
.case-card {
    background: #101526; border-radius: var(--radius); padding: 24px;
    box-shadow: 0 4px 18px #0003; transition: transform 0.22s;
}
.case-card:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 7px 32px #FF7E2544; }
.case-card img { width: 100%; height: 170px; object-fit: cover; border-radius: 7px; margin-bottom: 15px;}
.results { display: flex; justify-content: space-around; margin-top: 17px; color: var(--primary); font-weight: bold;}
.contact {
    padding: 60px 4vw 40px 4vw;
    background: var(--bg-dark);
    text-align: center;
  }
  
  .contact-sub {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 24px auto;
  }
  
  .contact-form {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 13px;
    margin: 9px 0;
    background: #171C2D;
    border: 1px solid #333;
    border-radius: 6px;
    color: var(--text-light);
    font-size: 1rem;
  }
  
  .contact-footer {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 20px;
  }
  
footer { text-align:center; color:var(--text-muted); padding:28px 0 10px 0; font-size:0.97rem;}


/* ...deja tu paleta y bloques previos aquí... */
.publico, .beneficios, .stack, .faq {
    padding: 60px 4vw 30px 4vw;
    background: var(--bg-dark);
    text-align: center;
}
.faq-list {
    display: grid;
    gap: 22px;
    max-width: 900px;
    margin: 38px auto 0 auto;
    text-align: left;
  }
  
  .faq-list h4 {
    color: var(--primary);
    margin-bottom: 5px;
  }
  
  .faq-list p {
    font-size: 0.95rem;
    color: var(--text-light);
  }
.publico-subtitulo {
    margin-top: -12px;
    margin-bottom: 36px;
    font-size: 1.1rem;
    color: var(--text-muted);
  }
.publico-grid, .beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px; margin-top: 36px;
    text-align: center;
}
.publico-grid i, .beneficios-grid i { font-size: 2rem; margin-bottom: 10px; color: var(--primary); }
.publico-grid h4, .beneficios-grid h4 { margin-bottom: 7px; color: var(--primary);}
.publico-grid p, .beneficios-grid p {
    color: var(--text-light);
    font-size: 0.96rem;
}
.publico-cierre {
margin-top: 50px;
font-style: italic;
color: var(--text-muted);
font-size: 0.95rem;
}
.stack-subtitulo {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
  }
.stack-logos {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 34px;
margin-top: 30px;
}
.stack-logos img {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 2px 10px #19C2A666);
    transition: transform 0.2s ease;
  }
  .stack-logos img:hover {
    transform: scale(1.1);
  }

.cta-hero {
    display: inline-block;
    margin-top: 30px;
    background: var(--accent);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 16px 42px;
    border-radius: 30px;
    box-shadow: 0 6px 22px rgba(255, 126, 37, 0.4);
    transition: background 0.3s ease, transform 0.2s ease;
  } 