:root{
  --bg:#f6f8fc;          /* fondo claro */
  --paper:#ffffff;
  --ink:#1b1f2a;         /* texto principal */
  --muted:#5c6576;       /* texto secundario */
  --primary:#0b84ff;     /* azul tecnológico */
  --primary-2:#0266c8;
  --stroke:rgba(18,24,40,.10);
  --radius:16px;
  --shadow:0 10px 25px rgba(10,20,40,.08);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0; font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,Helvetica,sans-serif;
  color:var(--ink); background:var(--bg); overflow-x:hidden;
}

/* Fondo animado claro: líneas diagonales suaves moviéndose */
#bg-animated{
  position:fixed; inset:0; z-index:-2;
  background:
    radial-gradient(1200px 600px at 10% 10%, rgba(2,102,200,.06), transparent 60%),
    radial-gradient(1000px 500px at 90% 30%, rgba(11,132,255,.07), transparent 55%),
    var(--bg);
}
#bg-animated::before{
  content:""; position:absolute; inset:0; opacity:.35; z-index:-1;
  background:
    repeating-linear-gradient(115deg, rgba(2,102,200,.08) 0 1px, transparent 1px 60px),
    repeating-linear-gradient(295deg, rgba(11,132,255,.06) 0 1px, transparent 1px 80px);
  animation:bgshift 36s linear infinite;
  mix-blend-mode:multiply;
}
@keyframes bgshift{
  0%{transform:translateX(0) translateY(0)}
  50%{transform:translateX(-80px) translateY(40px)}
  100%{transform:translateX(0) translateY(0)}
}

.container{width:min(1200px, 92%); margin-inline:auto}
.site-header{position:sticky; top:0; z-index:50; background:rgba(255,255,255,.7); backdrop-filter: blur(10px); border-bottom:1px solid var(--stroke)}
.nav-wrap{display:flex; align-items:center; justify-content:space-between; padding:14px 0}
.logo{height:40px}
.logo.small{height:32px}

.nav-links{display:flex; align-items:center; gap:20px}
.nav-item{color:var(--ink); text-decoration:none; opacity:.9}
.nav-item:hover{opacity:1}
.nav-item.active{font-weight:600}
.btn{display:inline-block; border-radius:999px; padding:10px 16px; text-decoration:none}
.btn-sm{padding:6px 12px; font-size:.9rem}
.btn-lg{padding:14px 22px; font-size:1.05rem}
.btn-primary{background:linear-gradient(135deg,var(--primary),var(--primary-2)); color:#fff; box-shadow:var(--shadow)}
.btn-outline{border:1px solid var(--stroke); color:var(--ink); background:#fff}

.lang-switch{ display:flex; gap:8px; margin-left:8px }
.btn-secondary{ background:#eef3ff; color:#1240a6 }

.nav-toggle{ display:none; background:none; border:0; font-size:1.6rem; color:var(--ink) }
@media (max-width: 992px){
  .nav-toggle{ display:block }
  .nav-links{ display:none; position:absolute; right:16px; top:68px; flex-direction:column; gap:14px; padding:16px; background:#fff; border:1px solid var(--stroke); border-radius:12px; box-shadow:var(--shadow)}
  .nav-links.open{ display:flex }
}

/* HERO (con overlay oscuro suave para legibilidad del título en fondo claro) */
.hero{ position:relative; padding:84px 0 64px; }
.hero-bg{ position:absolute; inset:0; z-index:-1; background:linear-gradient(#00000033,#00000033), var(--hero) center/cover no-repeat; border-bottom:1px solid var(--stroke)}
.hero-body{ text-align:center }
.hero-subtitle{ letter-spacing:.2em; font-weight:800; opacity:.9; color:#f0f4ff }
.hero-title{ color:#fff; font-size: clamp(32px, 6vw, 56px); margin:12px 0 6px; line-height:1.1; text-shadow:0 2px 6px rgba(0,0,0,.3) }
.hero-text{ color:#e6ecff; max-width:820px; margin:0 auto 18px }
.hero-cta{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap }

/* Grid 6 imágenes */
.insta-grid{ display:grid; grid-template-columns: repeat(6,1fr); gap:10px; margin:36px auto }
.insta-grid .sq{ aspect-ratio:1/1; overflow:hidden; border-radius:12px; background:#fff; border:1px solid var(--stroke); box-shadow:var(--shadow) }
.insta-grid img{ width:100%; height:100%; object-fit:cover; transform:scale(1.02); transition:.35s ease }
.insta-grid .sq:hover img{ transform:scale(1.08) rotate(.5deg) }
@media (max-width: 980px){ .insta-grid{ grid-template-columns: repeat(3,1fr) } }
@media (max-width: 560px){ .insta-grid{ grid-template-columns: repeat(2,1fr) } }

/* Cards */
.cards{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin:18px 0 }
.card{ background:#fff; border:1px solid var(--stroke); padding:14px; border-radius:14px; box-shadow:var(--shadow) }
.card img{ width:100%; height:160px; object-fit:cover; border-radius:10px; margin-bottom:10px }
.card h3{ margin:8px 0; color:var(--ink) }
.card p{ color:var(--muted) }
@media (max-width: 980px){ .cards{ grid-template-columns:repeat(2,1fr) } }
@media (max-width: 560px){ .cards{ grid-template-columns:1fr } }

.center{text-align:center}

/* Brands marquee (cards claras) */
/* Brands (CDN) */
.brands{ background:#ffffffaa; border-top:1px solid var(--stroke); border-bottom:1px solid var(--stroke); padding:34px 0; margin:40px 0 }
.brands h2{ text-align:center; margin-top:0 }
.marquee{ overflow:hidden; position:relative }
.marquee-track{
  list-style:none; display:flex; gap:40px; padding:0; margin:0;
  animation:scroll 30s linear infinite; will-change:transform
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-track li{
  flex:0 0 auto; display:flex; align-items:center; justify-content:center;
  width:140px; height:60px; background:#fff; border:1px solid var(--stroke);
  border-radius:12px; box-shadow:var(--shadow); padding:10px;
}
/* Uniformar tamaño para IMG y SVG en el carrusel */
.marquee-track img {
  max-height: 50px;
  max-width: 100%;
  display: block;
  object-fit: contain;
  /* quitamos el exceso de oscuridad */
  filter: grayscale(100%) brightness(1);
  opacity: 1;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 6px;
  transition: transform 0.2s ease;
}

.marquee-track img:hover {
  transform: scale(1.05);
}


.marquee-track .brand-svg {
  max-height: 50px;
  max-width: 100%;
  display: block;
  /* Si quieres monocromo homogéneo: */
  filter: grayscale(100%) brightness(0.12);
  opacity: 0.95;
}


/* “MacBook” fallback como pill de texto */
.brand-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9em;
  color: #222;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 6px;
  min-width: 90px;
  height: 50px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.brand-pill:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}


/* Animación loop */
@keyframes scroll{ 0%{ transform:translateX(0) } 100%{ transform:translateX(-50%) } }
.brand-disclaimer{ color:var(--muted); font-size:.9rem; text-align:center; margin-top:14px }

/* Testimonials */
.testimonials .testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px }
.testimonials blockquote{ margin:0; background:#fff; padding:16px; border-radius:12px; border:1px solid var(--stroke); box-shadow:var(--shadow) }
.stars{ color:#f2b300; margin-bottom:6px }
@media (max-width: 980px){ .testimonials .testi-grid{ grid-template-columns:1fr } }

/* Contact (páginas internas siguen igual, usando este tema claro) */
.contact-2col{ display:grid; grid-template-columns:1.3fr 1fr; gap:24px; margin-bottom:40px }
.contact-form .form-group{ display:flex; flex-direction:column; gap:6px; margin-bottom:10px }
.contact-form input, .contact-form textarea{
  background:#fff; border:1px solid var(--stroke); border-radius:10px; padding:12px; color:var(--ink);
}
.map-wrap{ margin-top:12px; border-radius:12px; overflow:hidden; border:1px solid var(--stroke); box-shadow:var(--shadow) }
.map-wrap iframe{ width:100%; height:320px; border:0 }
@media (max-width: 980px){ .contact-2col{ grid-template-columns:1fr } }

/* Page title */
.page-title{ text-align:center; margin:40px 0 20px }
.page-title h1{ margin:0 0 6px }

/* Legal pages */
.legal{ padding:30px 0 }
.legal h1{ margin-top:0 }
.bullets{ line-height:1.7 }

/* Footer claro */
.site-footer{ margin-top:48px; padding:24px 0 10px; background:#fff; border-top:1px solid var(--stroke) }
.footer-grid{ display:grid; grid-template-columns:1fr auto 1fr; gap:18px; align-items:center }
.footer-links{ display:flex; gap:18px; justify-content:center }
.footer-links a{ color:#0b84ff; text-decoration:none }
.footer-links a:hover{ text-decoration:underline }
.social{ text-align:center }
.follow-title{ margin:0 0 8px; color:var(--ink) }
.social-icons{ display:flex; justify-content:center; gap:16px }
.social-icons a{ display:inline-flex; width:42px; height:42px; background:#f3f6ff; border:1px solid var(--stroke); border-radius:10px; align-items:center; justify-content:center; box-shadow:var(--shadow) }
.independent-note{ text-align:center; color:var(--muted); font-size:.9rem; margin:14px 0 0 }

/* WhatsApp floating (claro) */
/* Botón flotante de WhatsApp */
/* Botón flotante de WhatsApp */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: #fff;              /* fondo blanco para contraste */
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

/* Icono SVG */
.wa-float img {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
  filter: none !important;       /* evita que se ponga gris */
  opacity: 1 !important;
  transform: none !important;
  background: transparent !important;
  border: none !important;
}



/* Thankyou */
.thankyou{ padding:80px 0 60px }

/* Utility */
h1,h2,h3{ letter-spacing:.2px; color:var(--ink) }

/* ===== Servicios (cuadros animados con Lucide) ===== */
.services-section .section-subtitle{
  color: var(--mid-gray);
  margin-top: 4px; margin-bottom: 18px;
}

.services-section .services-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.services-section .card{
  position: relative;
  background: #fff;
  border: 1px solid var(--stroke, #e6e9ee);
  border-radius: 16px;
  padding: 22px 18px 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  text-align: center;
  overflow: hidden;
}

.services-section .card:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,.10);
  border-color: rgba(0,169,224,.35);
}

/* Badge del icono */
.services-section .icon-badge{
  width: 56px; height: 56px;
  border-radius: 14px;
  margin: 4px auto 12px;
  display: grid; place-items: center;
  background: #f4f7fb;
  border: 1px solid var(--stroke, #e6e9ee);
  box-shadow: 0 4px 10px rgba(0,0,0,.06);
  transition: transform .22s ease, box-shadow .22s ease;
}

.services-section .card:hover .icon-badge{
  transform: scale(1.06);
  box-shadow: 0 8px 18px rgba(0,0,0,.10);
}

/* Ícono Lucide dentro del badge */
.services-section .icon-badge svg{
  width: 28px; height: 28px;
  stroke: #222; stroke-width: 2.2;
}

/* Títulos azules (ApexFix) */
.services-section .card h3{
  color: var(--primary-blue);
  font-size: 1.08rem;
  margin: 6px 0 8px;
}

/* Texto */
.services-section .card p{
  color: var(--mid-gray);
  margin: 0;
  line-height: 1.5;
}

/* Sutil glow en hover */
.services-section .card::after{
  content: "";
  position: absolute; inset: -2px;
  border-radius: 18px;
  background: radial-gradient(120px 60px at 50% -10%, rgba(0,169,224,.08), transparent 70%);
  opacity: 0; transition: opacity .22s ease;
  pointer-events: none;
}
.services-section .card:hover::after{ opacity: 1; }

/* Responsive fino */
@media (max-width: 560px){
  .services-section .card{ padding: 18px 14px; }
  .services-section .icon-badge{ width: 52px; height: 52px; }
  .services-section .icon-badge svg{ width: 26px; height: 26px; }
}
/* ===== Find Us (Contact List) ===== */
.contact-list {
  list-style: none;
  margin: 10px 0 18px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.contact-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 10px 14px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-list li:hover {
  border-color: rgba(0,169,224,0.4);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.cli-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #f5f8fc;
  border: 1px solid var(--stroke);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cli-icon svg {
  width: 24px;
  height: 24px;
  stroke: #222;
  stroke-width: 2.2;
}

.cli-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cli-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.contact-list a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.contact-list a:hover {
  color: var(--primary);
  text-decoration: underline;
}
/* ===== FOOTER ===== */
.site-footer {
  background: #f9f9fb;
  border-top: 1px solid var(--stroke);
  padding: 40px 20px;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

/* Enlaces legales */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.footer-links a {
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Copyright */
.copyright {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 6px;
}

/* Redes sociales */
.social {
  text-align: center;
}

.follow-title {
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a svg {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icons a:hover svg {
  transform: scale(1.1);
  opacity: 0.8;
}

/* Responsive: centrado total */
@media (max-width: 600px) {
  .footer-content {
    gap: 18px;
    padding: 0 10px;
  }
  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}
/* ===== About page enhancements ===== */
.about-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:22px;
  margin-bottom:26px;
}
@media (max-width: 980px){ .about-grid{ grid-template-columns:1fr } }

.about-card{
  background:#fff; border:1px solid var(--stroke); border-radius:16px;
  padding:22px 18px; box-shadow:var(--shadow);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.about-card:hover{ transform:translateY(-3px); box-shadow:0 12px 28px rgba(0,0,0,.10); border-color:rgba(0,169,224,.35) }
.about-card h3{ color:var(--primary); margin:8px 0 8px }
.checklist{ list-style:none; padding:0; margin:12px 0 0; display:grid; gap:8px }
.checklist li{ display:flex; gap:8px; align-items:center; color:var(--muted) }
.checklist i{ width:18px; height:18px; stroke:#16a34a; }

/* Trust badges */
.trust-badges{
  display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-bottom:26px;
}
@media (max-width: 980px){ .trust-badges{ grid-template-columns:repeat(2,1fr) } }
@media (max-width: 560px){ .trust-badges{ grid-template-columns:1fr } }
.badge{
  background:#fff; border:1px solid var(--stroke); border-radius:16px; padding:18px; text-align:center; box-shadow:var(--shadow)
}
.badge-icon i, .badge-icon svg{ width:28px; height:28px }
.badge-title{ font-weight:700; margin-top:8px }
.badge-text{ color:var(--muted); font-size:.95rem }

/* Timeline */
.timeline{ margin:16px auto 32px }
.timeline .steps{ list-style:none; padding:0; margin:14px 0 0; display:grid; gap:12px }
.timeline .steps li{
  display:grid; grid-template-columns:48px 1fr; align-items:start; gap:12px;
  background:#fff; border:1px solid var(--stroke); border-radius:12px; padding:12px 14px; box-shadow:var(--shadow);
}
.step-icon{
  width:44px; height:44px; border-radius:10px; background:#f5f8fc; border:1px solid var(--stroke);
  display:grid; place-items:center;
}
.step-icon i{ width:22px; height:22px; stroke:#222; stroke-width:2.2 }
.step-body h3{ margin:0 0 4px; font-size:1.02rem; color:var(--ink) }
.step-body p{ margin:0; color:var(--muted) }
