    body {
      font-family: 'Inter', sans-serif;
      background-color: #f8fafc;
      color: #0f172a;
      
    }
    /* NAVBAR */
    .navbar { background:white; box-shadow:0 2px 10px rgba(0,0,0,.05); }
    .navbar-brand img { height:42px; }
        /* Navbar */
/* -------- MODAL BIENVENIDA -------- */
.welcome-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.welcome-card {
  background: white;
  border-radius: 20px;
  padding: 20px;
  max-width: 320px;
  width: 90%;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  animation: popIn 0.4s ease;
}

.welcome-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.welcome-header button {
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
}

/* -------- BOTÓN WHATSAPP -------- */
.wa-float-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  border-radius: 50px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.2s ease;
}

.wa-float-btn:hover {
  transform: scale(1.05);
  color: white;
}

/* -------- ANIMACIÓN -------- */
@keyframes popIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
/* MENÚ MÓVIL PANEL FLOTANTE */
.mobile-menu {
  position: fixed;
  top: 70px;
  right: -100%;
  width: 85%;
  max-width: 320px;
  background: white;
  border-radius: 20px 0 0 20px;
  box-shadow: -10px 0 30px rgba(0,0,0,0.15);
  padding: 20px;
  z-index: 2000;
  transition: right 0.3s ease;
}

.mobile-menu.show {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.mobile-menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-links li {
  margin-bottom: 12px;
}

.mobile-menu-links a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

.mobile-menu-btn {
  display: block;
  margin-top: 20px;
  background: #2563eb;
  color: white;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
}


    .navbar-brand {
      font-weight: 800;
      color: #2563eb !important;
      letter-spacing: -0.5px;
    }

    .nav-link {
      font-weight: 500;
      color: #334155 !important;
    }

    .btn-primary {
      background-color: #2563eb;
      border: none;
      border-radius: 10px;
      padding: 0.6rem 1.2rem;
      font-weight: 600;
    }

    .btn-outline-primary {
      border-radius: 10px;
      font-weight: 600;
    }

    /* Hero */
    .hero {
      padding: 6rem 1rem 4rem;
      background: linear-gradient(135deg, #eef2ff, #f8fafc);
    }

    .hero h1 {
      font-size: 2.8rem;
      font-weight: 800;
      letter-spacing: -1px;
    }

    .hero p {
      font-size: 1.1rem;
      color: #475569;
      max-width: 600px;
    }

    .hero-img {
      max-width: 100%;
      animation: float 6s ease-in-out infinite;
    }

    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
      100% { transform: translateY(0px); }
    }

    /* Section titles */
    .section-title {
      font-weight: 800;
      letter-spacing: -0.5px;
    }

    .section-subtitle {
      color: #64748b;
      max-width: 600px;
      margin: 0 auto;
    }

    /* Cards */
    .service-card,
    .project-card,
    .testimonial-card {
      border-radius: 16px;
      border: 1px solid #e5e7eb;
      background: white;
      transition: all 0.25s ease;
      height: 100%;
    }

    .service-card:hover,
    .project-card:hover,
    .testimonial-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 35px rgba(0,0,0,0.08);
    }

    .icon-circle {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: #eef2ff;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #2563eb;
      font-size: 1.3rem;
      margin-bottom: 1rem;
    }

    /* Projects */
    .project-card img {
      border-radius: 14px;
      height: 180px;
      object-fit: cover;
      width: 100%;
    }

    /* Testimonials */
    .testimonial-avatar {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      object-fit: cover;
    }

    /* Contact */
    .contact-section {
      background: linear-gradient(135deg, #1e293b, #0f172a);
      color: white;
    }

    .contact-section input,
    .contact-section textarea {
      border-radius: 12px;
      border: none;
      padding: 0.75rem 1rem;
    }

    .contact-section input:focus,
    .contact-section textarea:focus {
      box-shadow: 0 0 0 3px rgba(37,99,235,0.3);
      outline: none;
    }

    /* Footer */
    footer {
      background: #020617;
      color: #cbd5f5;
    }

    footer a {
      color: #93c5fd;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }


#wa-chat-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  font-family: Arial, sans-serif;
}

/* BOTÓN */
#wa-chat-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1da1f2;
  color: white;
  padding: 12px 16px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: transform 0.2s ease;
}

#wa-chat-btn:hover {
  transform: scale(1.05);
}

.wa-icon {
  font-size: 22px;
}

.wa-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.wa-title {
  font-weight: bold;
  font-size: 14px;
}

.wa-status {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.wa-dot {
  width: 8px;
  height: 8px;
  background: #2ecc71;
  border-radius: 50%;
}

/* CAJA CHAT */
#wa-chat-box {
  display: none;
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 300px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  overflow: hidden;
}

.wa-header {
  background: #1da1f2;
  color: white;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wa-header span {
  cursor: pointer;
}

.wa-body {
  padding: 12px;
}

.wa-option {
  display: block;
  background: #f1f1f1;
  padding: 10px;
  border-radius: 8px;
  margin-top: 8px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.wa-option:hover {
  background: #e6e6e6;
}


/* CLIENTES */
.client-logo {
  filter: grayscale(100%);
  opacity: .6;
  transition: .3s;
  max-height: 60px;
}
.client-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* CONTADORES */
.counter-section {
  background: linear-gradient(135deg,#1e293b,#0f172a);
  color:white;
}
.counter-box i {
  font-size: 32px;
  color:#60a5fa;
}
.counter-number {
  font-size:2.2rem;
  font-weight:800;
}
.TITULO{
  color: #020617;
}

/* ===== CARRUSEL WEB ===== */
.web-carousel {
  background: #f8fafc;
}

.swiper {
  padding: 30px 10px 60px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.web-card {
  width: 100%;
  max-width: 420px;
  background: white;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: .3s ease;
  box-shadow: 0 15px 30px rgba(0,0,0,.06);
}

.web-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,.15);
}

.web-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.web-info {
  padding: 15px;
}

.web-info h6 {
  font-weight: 700;
  margin-bottom: 5px;
}

.web-info span {
  font-size: 13px;
  color: #64748b;
}

/* ===============================
   ✨ ANIMACIONES AL HACER SCROLL
================================ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* retrasos */
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.25s; }
.reveal.delay-3 { transition-delay: 0.4s; }
.reveal.delay-4 { transition-delay: 0.55s; }

/* ===============================
   💎 MEJORAS VISUALES MOBILE
================================ */

@media (max-width: 768px) {

  .hero {
    padding-top: 110px;
  }

  .hero h1 {
    font-size: 2.1rem;
    line-height: 1.15;
  }

  .hero-img {
    max-width: 90%;
    margin-top: 25px;
  }

  .service-card,
  .project-card,
  .web-card {
    border-radius: 22px;
    box-shadow: 0 25px 45px rgba(0,0,0,.08);
  }

  .service-card {
    background: linear-gradient(
      180deg,
      #ffffff,
      #f8fafc
    );
  }

  .project-card img,
  .web-card img {
    border-radius: 18px 18px 0 0;
  }

  .navbar {
    backdrop-filter: blur(12px);
  }

  /* menú móvil más moderno */
  .mobile-menu {
    animation: slideMenu .35s ease;
  }

  @keyframes slideMenu {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(0);
    }
  }
}

/* ===============================
   ✨ EFECTO GLASS
================================ */

.service-card,
.project-card,
.web-card {
  backdrop-filter: blur(8px);
}

/* ===============================
   🔥 HOVER MÁS SUAVE
================================ */

.service-card:hover,
.project-card:hover,
.web-card:hover {
  transform: translateY(-12px) scale(1.02);
}
