/* ============================================
   CSS Variables - MWS Brand Colors
   ============================================ */
:root {
  --mws-green: #C9FF00;
  --mws-black: #1D1D1B;
  --mws-gray: #6C6C6C;
  --mws-white: #D5D5D5;
  --mws-neon: #C9FF00;
  --mws-neon-strong: rgba(201, 255, 0, 0.8);
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Roboto', sans-serif;
}

/* ============================================
   Reset & Base
   ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; scrollbar-gutter: stable; scrollbar-width: thin; scrollbar-color: var(--mws-green) rgba(255,255,255,0.06); }
html::-webkit-scrollbar { width: 8px; }
html::-webkit-scrollbar-track { background: transparent; border-radius: 4px; }
html::-webkit-scrollbar-thumb { background: var(--mws-green); border-radius: 4px; border: 2px solid var(--mws-black); }
body { font-family: var(--font-secondary); background-color: var(--mws-black); color: var(--mws-white); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5 { font-family: var(--font-primary); font-weight: 700; line-height: 1.2; }
.green { color: var(--mws-green); }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px;
  border-radius: 4px; font-family: var(--font-primary); font-weight: 700; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 0.05em; cursor: pointer; border: none;
  transition: all 0.3s ease; white-space: nowrap;
}
.btn-primary { background-color: var(--mws-green); color: var(--mws-black); }
.btn-primary:hover { background-color: #d9ff1a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,255,0,0.3); }
.btn-secondary { background: transparent; border: 2px solid var(--mws-green); color: var(--mws-green); }
.btn-secondary:hover { background: rgba(201,255,0,0.1); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid var(--mws-white); color: var(--mws-white); }
.btn-outline:hover { border-color: var(--mws-green); color: var(--mws-green); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }
.btn-large { padding: 18px 36px; font-size: 1rem; }
.btn-submit { padding: 16px 48px; font-size: 1rem; margin-top: 8px; }

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0; transition: all 0.3s ease;
  background: transparent;
}
.header.scrolled { background: rgba(29,29,27,0.95); backdrop-filter: blur(12px); box-shadow: 0 2px 20px rgba(0,0,0,0.4); padding: 10px 0; }
.header-content { max-width: 1400px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo-link { display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 32px; height: 32px; background: var(--mws-green); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--mws-black); }
.logo-mws { font-family: var(--font-primary); font-weight: 900; font-size: 1.5rem; color: var(--mws-white); letter-spacing: 0.1em; }
.nav { display: flex; align-items: center; gap: 8px; }
.nav-link { font-family: var(--font-primary); font-size: 0.8rem; font-weight: 600; color: var(--mws-white); padding: 8px 12px; border-radius: 4px; transition: all 0.2s; text-transform: uppercase; letter-spacing: 0.05em; }
.nav-link:hover, .nav-link.active { color: var(--mws-green); }
.nav-link-contact { background: var(--mws-green); color: var(--mws-black) !important; border-radius: 4px; }
.nav-link-contact:hover { background: #d9ff1a; }
.header-actions .btn-contact { display: none; }
.mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; position: relative; z-index: 120; }
.hamburger-line { display: block; width: 24px; height: 2px; background: var(--mws-white); border-radius: 2px; transition: background 0.2s; }

.nav-modal-close {
  display: none;
  position: absolute;
  top: max(16px, env(safe-area-inset-top));
  right: max(16px, env(safe-area-inset-right));
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--mws-white);
  cursor: pointer;
  z-index: 112;
  transition: background 0.2s, color 0.2s;
}
.nav-modal-close:hover {
  background: rgba(201, 255, 0, 0.15);
  color: var(--mws-green);
}
.nav-modal-close-icon {
  position: relative;
  width: 18px;
  height: 18px;
  display: block;
}
.nav-modal-close-icon::before,
.nav-modal-close-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}
.nav-modal-close-icon::before { transform: translate(-50%, -50%) rotate(45deg); }
.nav-modal-close-icon::after { transform: translate(-50%, -50%) rotate(-45deg); }

@media (max-width: 900px) {
  /* Solo logo + hamburguesa en la fila: si queda .header-actions vacío, space-between deja el icono “flotando” al centro */
  .header-content {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(8px, env(safe-area-inset-right));
    gap: 12px;
  }
  .header-actions {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    margin-left: auto;
    margin-right: 0;
    padding: 8px 6px;
  }
  body.nav-menu-open .mobile-menu-toggle {
    display: none !important;
  }
  .nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 110;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: max(88px, calc(env(safe-area-inset-top) + 72px)) max(24px, env(safe-area-inset-right)) max(32px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
    background: rgba(29, 29, 27, 0.97);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav.open {
    display: flex;
  }
  .nav.open .nav-modal-close {
    display: flex;
  }
  /* backdrop-filter en el header crea bloque contenedor: fixed del nav queda “encajado” en la barra y se corta al hacer scroll */
  body.nav-menu-open .header {
    transition: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .nav-link {
    font-size: 1.05rem;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
  }
  .nav-link-contact {
    margin-top: 12px;
    text-align: center;
    border-bottom: none;
    padding: 14px 20px;
  }
}

/* ============================================
   Page layout â€” offset fixed header
   ============================================ */
main { padding-top: 80px; }

/* ============================================
   Messages
   ============================================ */
.messages-container { max-width: 800px; margin: 0 auto 16px; padding: 0 24px; }
.alert { padding: 14px 20px; border-radius: 6px; font-weight: 500; margin-bottom: 8px; }
.alert-success { background: rgba(201,255,0,0.15); border: 1px solid var(--mws-green); color: var(--mws-green); }
.alert-error { background: rgba(239,68,68,0.15); border: 1px solid #ef4444; color: #ef4444; }

/* ============================================
   Page Hero (comÃºn para pÃ¡ginas internas)
   ============================================ */
.page-hero { padding: 80px 24px 60px; text-align: center; background: linear-gradient(180deg, rgba(201,255,0,0.05) 0%, transparent 100%); border-bottom: 1px solid rgba(201,255,0,0.1); }
.page-hero-content { max-width: 800px; margin: 0 auto; }
.page-hero-label { font-family: var(--font-primary); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--mws-green); margin-bottom: 12px; }
.page-hero-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; color: var(--mws-white); margin-bottom: 20px; }
.page-hero-description { font-size: 1.1rem; color: rgba(213,213,213,0.8); max-width: 600px; margin: 0 auto 32px; }
.page-hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

/* ============================================
   Hero Section (Home) â€” see updated block below
   ============================================ */
.trust-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.trust-badge { background: rgba(201,255,0,0.1); border: 1px solid rgba(201,255,0,0.3); color: var(--mws-white); padding: 6px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; }
.check { color: var(--mws-green); margin-right: 4px; }
.hero-urgency { color: var(--mws-green); font-weight: 700; font-size: 0.85rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.1em; }
.hero-stats { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-stats .stat-item { text-align: left; }
.hero-stats .stat-value { font-family: var(--font-primary); font-size: 1.5rem; font-weight: 900; color: var(--mws-green); }
.hero-stats .stat-label { font-size: 0.75rem; color: rgba(213,213,213,0.7); }
.scroll-text { font-size: 0.75rem; color: rgba(213,213,213,0.5); }

/* ============================================
   About Section (Home)
   ============================================ */
.about-section { padding: 80px 24px; }
.about-container { max-width: 1400px; margin: 0 auto; }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.section-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: var(--mws-white); margin-bottom: 20px; }
.section-subtitle { font-size: 1.1rem; font-weight: 700; color: var(--mws-green); margin: 24px 0 12px; }
.section-description { font-size: 1rem; color: rgba(213,213,213,0.8); margin-bottom: 16px; line-height: 1.8; }
.section-note { font-size: 0.85rem; color: rgba(213,213,213,0.5); margin-top: 12px; }
.section-note a { color: var(--mws-green); text-decoration: underline; }
.about-link { display: inline-flex; align-items: center; gap: 8px; color: var(--mws-green); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 12px; transition: gap 0.2s; }
.about-link:hover { gap: 12px; }
.image-container { position: relative; border-radius: 12px; overflow: hidden; }
.image-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(29,29,27,0.4), transparent); }
.code-particles { position: absolute; top: 16px; left: 16px; display: flex; flex-direction: column; gap: 8px; }
.code-line { font-family: 'Courier New', monospace; font-size: 0.75rem; color: var(--mws-green); opacity: 0.7; background: rgba(29,29,27,0.6); padding: 4px 8px; border-radius: 4px; }

@media (min-width: 768px) and (max-width: 900px) { .about-content { grid-template-columns: 1fr; } }

/* ============================================
   Stats Section
   ============================================ */
.stats-section { padding: 60px 24px; background: rgba(201,255,0,0.03); border-top: 1px solid rgba(201,255,0,0.08); border-bottom: 1px solid rgba(201,255,0,0.08); }
.stats-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 32px; }
.stat-item { text-align: center; }
.stat-number, .stat-value { font-family: var(--font-primary); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; color: var(--mws-green); }
.stat-label { font-size: 0.85rem; color: rgba(213,213,213,0.7); margin-top: 4px; }

/* ============================================
   Services Preview (Home)
   ============================================ */
.services-preview-section { padding: 80px 24px; }
.services-preview-container { max-width: 1400px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .section-description { font-size: 1rem; color: rgba(213,213,213,0.7); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.service-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 28px; transition: all 0.3s; display: flex; flex-direction: column; }
.service-card:hover { border-color: var(--card-primary, var(--mws-green)); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.4); }
.service-card-icon { width: 48px; height: 48px; border-radius: 10px; background: rgba(var(--card-primary, 201,255,0), 0.1); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--card-primary, var(--mws-green)); margin-bottom: 16px; }
.service-card-title { font-family: var(--font-primary); font-size: 1rem; font-weight: 700; color: var(--mws-white); margin-bottom: 8px; }
.service-card-desc { font-size: 0.85rem; color: rgba(213,213,213,0.7); flex: 1; line-height: 1.6; }
.service-card-link { display: inline-block; margin-top: 16px; font-size: 0.8rem; color: var(--card-primary, var(--mws-green)); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.services-preview-cta { text-align: center; margin-top: 40px; }

/* ============================================
   Services List Full
   ============================================ */
.services-list-section { padding: 60px 24px; }
.services-list-container { max-width: 1400px; margin: 0 auto; }
.services-grid-full { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.service-card-full { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 28px; transition: all 0.3s; display: flex; flex-direction: column; cursor: pointer; }
.service-card-full:hover { border-color: var(--card-primary, var(--mws-green)); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.4); background: rgba(255,255,255,0.05); }
.service-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.service-icon-wrapper { width: 52px; height: 52px; border-radius: 12px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--card-primary, var(--mws-green)); }
.service-theme-badge { font-size: 0.7rem; background: rgba(255,255,255,0.05); padding: 4px 10px; border-radius: 20px; color: rgba(213,213,213,0.5); }
.service-card-short { font-size: 0.85rem; color: rgba(213,213,213,0.7); margin-bottom: 16px; line-height: 1.6; flex: 1; }
.service-features-preview { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.service-features-preview li { font-size: 0.8rem; color: rgba(213,213,213,0.6); display: flex; align-items: center; gap: 8px; }
.service-features-preview .pi-check-circle { color: var(--card-primary, var(--mws-green)); font-size: 0.85rem; }
.service-card-footer { margin-top: auto; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06); }
.service-cta-link { font-size: 0.8rem; font-weight: 700; color: var(--card-primary, var(--mws-green)); text-transform: uppercase; letter-spacing: 0.1em; }

/* ============================================
   Service Detail
   ============================================ */
.service-detail-hero { padding: 80px 24px 60px; background: var(--hero-bg, #0A1A2E); border-bottom: 1px solid rgba(255,255,255,0.08); }
.service-detail-hero-content { max-width: 800px; margin: 0 auto; text-align: center; }
.service-detail-icon { width: 80px; height: 80px; border-radius: 20px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: var(--hero-primary, var(--mws-green)); margin: 0 auto 20px; }
.service-detail-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--hero-primary, var(--mws-green)); margin-bottom: 12px; }
.service-detail-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; color: var(--mws-white); margin-bottom: 20px; }
.service-detail-hero-text { font-size: 1.1rem; color: rgba(213,213,213,0.8); margin-bottom: 32px; }
.service-detail-hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.service-detail-content { padding: 60px 24px; }
.service-detail-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 340px; gap: 48px; }
.service-detail-description h2, .service-features h2, .service-gallery h2, .service-content-sections h3, .service-faqs h2 { font-size: 1.5rem; font-weight: 700; color: var(--mws-white); margin-bottom: 16px; }
.service-detail-description p { font-size: 1rem; color: rgba(213,213,213,0.8); line-height: 1.8; margin-bottom: 24px; }
.content-section { margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.content-section h3 { color: var(--mws-green); font-size: 1.2rem; margin-bottom: 12px; }
.content-section p { color: rgba(213,213,213,0.8); line-height: 1.8; }
.content-section__body p { color: rgba(213,213,213,0.8); line-height: 1.8; margin-bottom: 0.85em; }
.content-section__body p:last-child { margin-bottom: 0; }

/* Línea de tiempo (Metodología): reutilizable en otros servicios con el mismo markup */
.service-section-lead { color: rgba(213,213,213,0.85); line-height: 1.75; margin: 0 0 1.25rem; font-size: 1rem; }
.content-section__body--html .service-section-lead a {
  color: rgba(165, 243, 252, 0.95);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.content-section__body--html .service-section-lead a:hover {
  color: var(--mws-green);
}
.service-methodology-timeline {
  list-style: none;
  margin: 0;
  padding: 0 0 0 1.25rem;
  border-left: 2px solid rgba(201, 255, 0, 0.35);
  position: relative;
}
.service-methodology-timeline li {
  position: relative;
  padding: 0 0 1.35rem 1.35rem;
  margin: 0;
  color: rgba(213,213,213,0.82);
  line-height: 1.65;
  font-size: 0.95rem;
}
.service-methodology-timeline li:last-child { padding-bottom: 0; }
.service-methodology-timeline li::before {
  content: "";
  position: absolute;
  left: calc(-1.25rem - 5px);
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mws-green);
  box-shadow: 0 0 0 3px rgba(201, 255, 0, 0.2);
}
.service-methodology-timeline__step {
  display: block;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
  font-size: 0.98rem;
}
.service-methodology-timeline__desc { display: block; color: rgba(213,213,213,0.78); }

/* Tablas de tarifas (Diseño Gráfico, Branding, etc.) */
.service-pricing-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0.65rem 0 0;
  border-radius: 12px;
  border: 1px solid rgba(201, 255, 0, 0.18);
  background: linear-gradient(
    165deg,
    rgba(201, 255, 0, 0.06) 0%,
    rgba(14, 165, 233, 0.05) 42%,
    rgba(0, 0, 0, 0.35) 100%
  );
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    inset 0 1px 0 rgba(201, 255, 0, 0.12);
}
.service-pricing-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.9rem;
  color: rgba(213, 213, 213, 0.9);
}
.service-pricing-table th,
.service-pricing-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.service-pricing-table thead th {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.96);
  background: #1e293b;
  border-bottom: 2px solid rgba(201, 255, 0, 0.45);
  white-space: nowrap;
}
.service-pricing-table thead th:first-child {
  border-radius: 11px 0 0 0;
}
.service-pricing-table thead th:last-child {
  border-radius: 0 11px 0 0;
}
.service-pricing-table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.025);
}
.service-pricing-table tbody tr:last-child td { border-bottom: none; }
.service-pricing-table tbody tr:hover td {
  background: rgba(201, 255, 0, 0.07);
}
.service-pricing-table tbody tr:nth-child(even):hover td {
  background: rgba(201, 255, 0, 0.08);
}
.service-pricing-table td:first-child {
  font-weight: 600;
  color: #fff;
  border-left: 3px solid transparent;
  transition: border-color 0.2s ease;
}
.service-pricing-table tbody tr:hover td:first-child {
  border-left-color: rgba(201, 255, 0, 0.65);
}
.service-pricing-table .service-pricing-table__num {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  color: rgba(165, 243, 252, 0.92);
  font-weight: 600;
}
.service-pricing-table td:last-child.service-pricing-table__num {
  color: var(--mws-green);
  font-weight: 700;
  font-size: 0.95rem;
  text-shadow: 0 0 20px rgba(201, 255, 0, 0.25);
}

/* CTAs dentro del detalle de servicio (HTML desde seed) */
.content-section__body--html .service-section-cta {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.content-section__body--html .service-section-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; margin-top: 20px; }
.gallery-item { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; overflow: hidden; }
.gallery-item img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.gallery-item-info { padding: 16px; }
.gallery-item-info h4 { font-size: 0.9rem; font-weight: 700; color: var(--mws-white); margin-bottom: 6px; }
.gallery-item-info p { font-size: 0.8rem; color: rgba(213,213,213,0.6); }
.sidebar-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 24px; margin-bottom: 20px; }
.sidebar-card h3 { font-size: 0.9rem; font-weight: 700; color: var(--mws-white); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.features-list, .benefits-list, .use-cases-list { display: flex; flex-direction: column; gap: 8px; }
.features-list li, .benefits-list li, .use-cases-list li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: rgba(213,213,213,0.8); }
.features-list .pi-check { color: var(--mws-green); }
.benefits-list .pi-arrow-right, .use-cases-list .pi-angle-right { color: var(--mws-green); font-size: 0.75rem; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-tag { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: rgba(213,213,213,0.8); padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.sidebar-cta { background: linear-gradient(135deg, rgba(201,255,0,0.1), rgba(201,255,0,0.05)); border: 1px solid rgba(201,255,0,0.2); border-radius: 12px; padding: 24px; }
.sidebar-cta h3 { font-size: 1rem; font-weight: 700; color: var(--mws-white); margin-bottom: 8px; }
.sidebar-cta p { font-size: 0.85rem; color: rgba(213,213,213,0.7); margin-bottom: 16px; }
.sidebar-cta .btn { margin-bottom: 10px; }
.other-services-section { padding: 60px 24px; background: rgba(255,255,255,0.02); }
.other-services-container { max-width: 1200px; margin: 0 auto; }
.other-services-container h2 { font-size: 1.5rem; margin-bottom: 28px; }
.other-services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.other-service-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 20px; transition: all 0.2s; text-align: center; }
.other-service-card:hover { border-color: var(--card-primary, var(--mws-green)); transform: translateY(-2px); }
.other-service-card i { font-size: 1.5rem; color: var(--card-primary, var(--mws-green)); margin-bottom: 12px; }
.other-service-card h4 { font-size: 0.85rem; font-weight: 700; color: var(--mws-white); margin-bottom: 6px; }
.other-service-card p { font-size: 0.75rem; color: rgba(213,213,213,0.6); }

/* Detalle servicio: una columna en móvil y tablet estrecha (antes solo 768–900px dejaba 2 cols en teléfonos) */
@media (max-width: 900px) {
  .service-detail-hero { padding: 56px max(16px, env(safe-area-inset-left)) 40px max(16px, env(safe-area-inset-right)); }
  .service-detail-content { padding: 40px max(16px, env(safe-area-inset-left)) 48px max(16px, env(safe-area-inset-right)); }
  .service-detail-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .service-detail-main,
  .service-detail-sidebar {
    min-width: 0;
    max-width: 100%;
  }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Projects
   ============================================ */
.projects-preview-section, .projects-section { padding: 80px 24px; }
.projects-preview-container, .projects-container { max-width: 1400px; margin: 0 auto; }
.projects-section-dark { background: rgba(255,255,255,0.01); }
.projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin-top: 32px; }
.project-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; overflow: hidden; transition: all 0.3s; display: flex; flex-direction: column; }
.project-card:hover { border-color: var(--project-primary, var(--mws-green)); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.5); }
.project-card-image { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.project-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s, opacity 0.25s ease; }
.project-card:hover .project-card-image img { transform: scale(1.05); }
.project-card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.project-card.has-hover-video.is-video-playing .project-card-video {
  opacity: 1;
}
.project-card.has-hover-video.is-video-playing .project-card-img {
  opacity: 0;
}
.project-card-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px 16px; background: linear-gradient(transparent, rgba(0,0,0,0.7)); display: flex; justify-content: space-between; }
.project-category, .project-category-badge { background: var(--project-primary, var(--mws-green)); color: var(--mws-black); padding: 3px 10px; border-radius: 20px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; }
.project-year, .project-year-badge { color: rgba(255,255,255,0.7); font-size: 0.75rem; padding: 3px 8px; }
.project-card-content { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.project-card-title { font-family: var(--font-primary); font-size: 1rem; font-weight: 700; color: var(--mws-white); margin-bottom: 8px; }
.project-card-desc { font-size: 0.85rem; color: rgba(213,213,213,0.7); flex: 1; line-height: 1.6; margin-bottom: 16px; }
.project-tech-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.project-tech-tags .tech-tag { font-size: 0.7rem; }
.project-cta { font-size: 0.8rem; font-weight: 700; color: var(--project-primary, var(--mws-green)); text-transform: uppercase; letter-spacing: 0.05em; margin-top: auto; }
.projects-preview-cta { text-align: center; margin-top: 40px; }

/* Project Detail */
.project-detail-hero { padding: 80px 24px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; max-width: 1200px; margin: 0 auto; }
.project-meta { display: flex; gap: 8px; margin-bottom: 16px; }

.pd-impact-section {
  padding: 48px 24px 10px;
}
.pd-impact-container {
  max-width: 1200px;
  margin: 0 auto;
}
.pd-impact-title {
  font-family: var(--font-primary);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  color: var(--mws-white);
  margin: 0 0 20px;
}
.pd-impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}
.pd-impact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 18px;
}
.pd-impact-card--wide { margin-bottom: 14px; }
.pd-impact-card--timeline { margin-bottom: 12px; border-left: 3px solid rgba(201,255,0,0.35); }
.pd-impact-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--mws-white);
}
.pd-impact-card p {
  margin: 0;
  color: rgba(213, 213, 213, 0.8);
  line-height: 1.65;
}
.pd-impact-results {
  background: linear-gradient(135deg, rgba(201, 255, 0, 0.08), rgba(201, 255, 0, 0.03));
  border: 1px solid rgba(201, 255, 0, 0.2);
  border-radius: 14px;
  padding: 18px 18px 14px;
}
.pd-impact-results h3 {
  margin: 0 0 10px;
  color: var(--mws-green);
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.pd-impact-results ul {
  margin: 0;
  padding-left: 18px;
}
.pd-impact-results li {
  color: rgba(230, 230, 230, 0.88);
  margin-bottom: 8px;
  line-height: 1.55;
}
.pd-impact--ecommerce .pd-impact-title { color: #ffd8a6; }
.pd-impact--ecommerce .pd-impact-card { border-color: rgba(255, 145, 64, 0.35); background: rgba(255, 129, 32, 0.07); }

.pd-impact--erp .pd-impact-title { color: #9fd2ff; }
.pd-impact--erp .pd-impact-card { border-color: rgba(74, 144, 226, 0.35); background: rgba(74, 144, 226, 0.08); }

.pd-impact--mobile .pd-impact-title { color: #d8c3ff; }
.pd-impact-grid--stacked .pd-impact-card { min-height: 0; }
.pd-impact--mobile .pd-impact-card { border-color: rgba(157, 80, 187, 0.35); background: rgba(157, 80, 187, 0.08); }

.pd-impact--analytics .pd-impact-title { color: #b7ffc2; }
.pd-impact-grid--split { grid-template-columns: 1.1fr 0.9fr; }
.pd-impact--analytics .pd-impact-card { border-color: rgba(34, 197, 94, 0.35); background: rgba(34, 197, 94, 0.08); }

.pd-impact--booking .pd-impact-title { color: #c9ffd6; }
.pd-impact--booking .pd-impact-card { border-color: rgba(34, 197, 94, 0.34); background: rgba(21, 128, 61, 0.12); }

.pd-impact--corporate .pd-impact-title { color: #d6def0; }
.pd-impact-grid--corporate .pd-impact-card { border-radius: 8px; }
.pd-impact--corporate .pd-impact-card { border-color: rgba(148, 163, 184, 0.28); background: rgba(15, 23, 42, 0.4); }

@media (max-width: 900px) {
  .pd-impact-grid {
    grid-template-columns: 1fr;
  }
  .pd-impact-grid--split {
    grid-template-columns: 1fr;
  }
}
.project-detail-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: var(--mws-white); margin-bottom: 16px; }
.project-detail-desc { font-size: 1rem; color: rgba(213,213,213,0.8); margin-bottom: 20px; line-height: 1.7; }
.project-client { font-size: 0.85rem; color: rgba(213,213,213,0.6); margin-bottom: 24px; display: flex; align-items: center; gap: 6px; }
.project-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.project-detail-image {
  overflow: hidden;
  border-radius: 12px;
}
.project-detail-image img,
.project-detail-image video.project-detail-hero-media {
  width: 100%;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}
.project-detail-content { padding: 60px 24px; }
.project-detail-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 320px; gap: 48px; }
.project-full-description h2, .project-features h2, .project-gallery h2 { font-size: 1.5rem; margin-bottom: 16px; }
.project-full-description p { font-size: 1rem; color: rgba(213,213,213,0.8); line-height: 1.8; margin-bottom: 24px; }
.gallery-horizontal { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 16px; scroll-snap-type: x mandatory; cursor: grab; }
.gallery-slide { flex: 0 0 300px; scroll-snap-align: start; border-radius: 10px; overflow: hidden; }
.gallery-slide img { width: 100%; height: 200px; object-fit: cover; }
.project-info-list { display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; }
.project-info-list dt { font-weight: 600; color: rgba(213,213,213,0.6); font-size: 0.85rem; }
.project-info-list dd { color: var(--mws-white); font-size: 0.85rem; }
.related-projects-section { padding: 60px 24px; background: rgba(255,255,255,0.02); }
.related-projects-container { max-width: 1200px; margin: 0 auto; }
.related-projects-container h2 { font-size: 1.5rem; margin-bottom: 28px; }

@media (min-width: 768px) and (max-width: 900px) { .project-detail-hero, .project-detail-container { grid-template-columns: 1fr; } }

/* ============================================
   Blog
   ============================================ */
.blog-list-section {
  position: relative;
  padding: 72px 24px 96px;
  background: #0a0a0a;
  overflow: hidden;
}
.blog-list-section__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(201, 255, 0, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 88% 75%, rgba(201, 255, 0, 0.06) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='72' height='72' viewBox='0 0 72 72' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 36h72M36 0v72' stroke='%23C9FF00' stroke-opacity='0.11' stroke-width='0.6'/%3E%3Ccircle cx='36' cy='36' r='1.5' fill='%23C9FF00' fill-opacity='0.22'/%3E%3C/svg%3E");
  pointer-events: none;
}
.blog-list-container,
.blog-article-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.blog-list-filters {
  margin-bottom: 36px;
}
.blog-list-filters__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 16px 24px;
}
.blog-list-filters__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: min(100%, 220px);
}
.blog-list-filters__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(201, 255, 0, 0.85);
}
.blog-list-filters__select {
  appearance: none;
  background: #141414
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C9FF00' d='M1 1l5 5 5-5'/%3E%3C/svg%3E")
    no-repeat right 12px center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: var(--mws-white);
  padding: 10px 36px 10px 14px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.blog-list-filters__select:hover,
.blog-list-filters__select:focus-visible {
  border-color: rgba(201, 255, 0, 0.35);
  outline: none;
  box-shadow: 0 0 0 1px rgba(201, 255, 0, 0.15);
}
.blog-list-filters__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.blog-list-filters__submit {
  background: rgba(201, 255, 0, 0.12);
  border: 1px solid rgba(201, 255, 0, 0.35);
  color: var(--mws-green);
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.blog-list-filters__submit:hover {
  background: rgba(201, 255, 0, 0.2);
}
.blog-list-filters__reset {
  font-size: 0.9rem;
  color: rgba(213, 213, 213, 0.65);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.blog-list-filters__reset:hover {
  color: var(--mws-white);
}
.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 24px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.blog-pagination__info {
  font-size: 0.9rem;
  color: rgba(213, 213, 213, 0.65);
}
.blog-pagination__link {
  font-weight: 700;
  color: var(--mws-green);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(201, 255, 0, 0.3);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.blog-pagination__link:hover {
  background: rgba(201, 255, 0, 0.1);
  border-color: rgba(201, 255, 0, 0.5);
}
.blog-article-section {
  padding-bottom: 60px;
}
.blog-article-section:not(:has(.blog-article-hero)) {
  padding: 60px 24px 60px;
}
.blog-article-section:has(.blog-article-hero) {
  padding-left: 0;
  padding-right: 0;
}
.blog-article-hero {
  position: relative;
  width: 100%;
  max-height: min(52vh, 460px);
  min-height: 200px;
  overflow: hidden;
  background: #080808;
}
.blog-article-hero__img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-height: min(52vh, 460px);
  object-fit: cover;
  display: block;
}
.blog-article-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, transparent 45%);
  pointer-events: none;
}
.blog-article-hero + .blog-article-container {
  padding: 40px 24px 0;
}
.blog-article-container--top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 24px 12px;
}
.blog-article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mws-green);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}
.blog-article-back:hover {
  text-decoration: underline;
}
.blog-article-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  align-items: center;
  margin-top: 8px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.blog-article-footer-back {
  color: rgba(213, 213, 213, 0.75);
  text-decoration: none;
  font-size: 0.95rem;
}
.blog-article-footer-back:hover {
  color: var(--mws-green);
}
.blog-article-footer-cta {
  color: var(--mws-green);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
}
.blog-article-footer-cta:hover {
  text-decoration: underline;
}
.blog-list-hero-title {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em 0.4em;
  justify-content: center;
  align-items: baseline;
}
.blog-article-accompanying {
  margin: 0 0 40px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
.blog-article-accompanying img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 32px;
}
.blog-grid-small {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 24px;
}

/* Card blog â€” oscuro / acento lima */
.blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, #121212 0%, #0c0c0c 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.5);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 255, 0, 0.42);
  box-shadow:
    0 14px 44px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(201, 255, 0, 0.1),
    0 0 32px rgba(201, 255, 0, 0.07);
}
.blog-card:focus-visible {
  outline: 2px solid var(--mws-green);
  outline-offset: 3px;
}
.blog-card-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #080808;
}
.blog-card-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.blog-card:hover .blog-card-thumb-img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 22px 26px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 14px;
}
.blog-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mws-green);
  background: linear-gradient(135deg, rgba(201, 255, 0, 0.16) 0%, rgba(201, 255, 0, 0.05) 100%);
  border: 1px solid rgba(201, 255, 0, 0.3);
  box-shadow: 0 0 22px rgba(201, 255, 0, 0.07);
}
.blog-card-time {
  font-size: 0.78rem;
  color: rgba(160, 160, 160, 0.95);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-card-time .pi {
  font-size: 0.85rem;
  opacity: 0.75;
}

.blog-card-title {
  margin: 0 0 12px;
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
  letter-spacing: -0.02em;
}
.blog-card-excerpt {
  margin: 0 0 16px;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(180, 180, 180, 0.92);
  flex: 1;
}

.blog-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.blog-card-tag {
  display: inline-block;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.72rem;
  color: rgba(240, 240, 240, 0.92);
  background: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.blog-card-author-block {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.blog-card-avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 800;
  color: #0a0a0a;
  background: var(--mws-green);
  box-shadow: 0 0 18px rgba(201, 255, 0, 0.28);
}
.blog-card-author-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.blog-card-author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-card-date {
  font-size: 0.75rem;
  color: rgba(160, 160, 160, 0.92);
}
.blog-card-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--mws-green);
  letter-spacing: 0.02em;
}
.blog-card-cta .pi {
  font-size: 1rem;
  transition: transform 0.25s ease;
}
.blog-card:hover .blog-card-cta .pi {
  transform: translateX(4px);
}

/* Meta artÃ­culo (vista detalle) */
.blog-category {
  background: rgba(201, 255, 0, 0.1);
  border: 1px solid rgba(201, 255, 0, 0.2);
  color: var(--mws-green);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}
.blog-read-time {
  font-size: 0.75rem;
  color: rgba(213, 213, 213, 0.5);
  display: flex;
  align-items: center;
  gap: 4px;
}
.blog-author {
  display: flex;
  align-items: center;
  gap: 4px;
}

.empty-state {
  text-align: center;
  padding: 80px 24px;
  color: rgba(213, 213, 213, 0.45);
}
.empty-state i {
  font-size: 3rem;
  margin-bottom: 20px;
  color: rgba(201, 255, 0, 0.35);
}
.empty-state a {
  color: var(--mws-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Blog Article */
.blog-article-header { margin-bottom: 40px; }
.blog-article-meta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-bottom: 20px; }
.blog-date { font-size: 0.8rem; color: rgba(213,213,213,0.5); }
.blog-article-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: var(--mws-white); margin-bottom: 16px; }
.blog-article-excerpt { font-size: 1.1rem; color: rgba(213,213,213,0.7); margin-bottom: 20px; line-height: 1.7; }
.blog-article-author { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: rgba(213,213,213,0.6); }
.blog-article-featured-image { margin-bottom: 40px; border-radius: 12px; overflow: hidden; aspect-ratio: 16/9; }
.blog-article-featured-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-article-content { font-size: 1rem; line-height: 1.9; color: rgba(213,213,213,0.85); margin-bottom: 40px; }
.blog-article-content h2 { font-size: 1.5rem; color: var(--mws-white); margin: 32px 0 16px; }
.blog-article-content h3 { font-size: 1.2rem; color: var(--mws-green); margin: 24px 0 12px; }
.blog-article-content p { margin-bottom: 16px; }
.blog-article-content a { color: var(--mws-green); text-decoration: underline; }
.blog-article-content ul, .blog-article-content ol { margin: 16px 0 16px 24px; }
.blog-article-content li { margin-bottom: 8px; }
.blog-article-meta--embed {
  margin-bottom: 20px;
}
.blog-article-content--mws-redaction {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.blog-article-content--mws-redaction .article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  margin-bottom: 0;
  background: rgba(249, 251, 255, 0.035);
}
.blog-article-content--mws-redaction .badge {
  display: inline-block;
  background: rgba(201, 255, 0, 0.15);
  color: var(--mws-green);
  border-radius: 4px;
  padding: 2px 10px;
  font-size: 0.82rem;
  margin-bottom: 8px;
  font-weight: 700;
}
.blog-article-content--mws-redaction h1.article-title {
  color: #fff;
  border-bottom: 3px solid rgba(201, 255, 0, 0.35);
  padding-bottom: 12px;
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  margin-top: 0;
  line-height: 1.25;
}
.blog-article-content--mws-redaction .meta {
  background: rgba(46, 117, 182, 0.12);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
  color: rgba(213, 213, 213, 0.88);
  line-height: 1.55;
}
.blog-article-content--mws-redaction .toc {
  background: rgba(46, 117, 182, 0.1);
  border-radius: 8px;
  padding: 18px 22px;
  margin-bottom: 1.5rem;
}
.blog-article-content--mws-redaction .toc h3 {
  margin-top: 0;
  color: var(--mws-green);
  font-size: 1rem;
}
.blog-article-content--mws-redaction .toc a {
  color: rgba(142, 207, 255, 0.95);
  text-decoration: none;
}
.blog-article-content--mws-redaction .toc a:hover {
  text-decoration: underline;
}
.blog-article-content--mws-redaction h2 {
  color: rgba(142, 207, 255, 0.95);
  margin-top: 2rem;
  font-size: 1.28rem;
  border-left: 4px solid rgba(201, 255, 0, 0.45);
  padding-left: 12px;
}
.blog-article-content--mws-redaction h3 {
  color: #fff;
  font-size: 1.08rem;
  margin-top: 1.5rem;
}
.blog-article-content--mws-redaction h4 {
  color: rgba(142, 207, 255, 0.85);
  font-size: 1rem;
  margin-top: 1.25rem;
  font-style: italic;
}
.blog-article-content--mws-redaction .cta-box {
  background: rgba(26, 58, 92, 0.85);
  color: #fff;
  border-radius: 8px;
  padding: 22px 26px;
  margin: 2rem 0 0.5rem 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.blog-article-content--mws-redaction .cta-box a {
  color: #8ecfff;
  font-weight: 700;
}
.blog-article-content--mws-redaction .problem-box {
  background: rgba(240, 165, 0, 0.12);
  border-left: 4px solid #f0a500;
  padding: 14px 18px;
  margin: 1.25rem 0;
  border-radius: 0 6px 6px 0;
  color: rgba(255, 255, 255, 0.9);
}
.blog-article-content--mws-redaction .solution-box {
  background: rgba(40, 167, 69, 0.12);
  border-left: 4px solid #28a745;
  padding: 14px 18px;
  margin: 1.25rem 0;
  border-radius: 0 6px 6px 0;
  color: rgba(255, 255, 255, 0.9);
}
.blog-article-content--mws-redaction .insight-box {
  background: rgba(46, 117, 182, 0.12);
  border-left: 4px solid #2e75b6;
  padding: 14px 18px;
  margin: 1.25rem 0;
  border-radius: 0 6px 6px 0;
  color: rgba(255, 255, 255, 0.9);
}
.blog-article-content--mws-redaction .warning-box {
  background: rgba(192, 57, 43, 0.12);
  border-left: 4px solid #c0392b;
  padding: 14px 18px;
  margin: 1.25rem 0;
  border-radius: 0 6px 6px 0;
  color: rgba(255, 255, 255, 0.9);
}
.blog-article-content--mws-redaction .step-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(46, 117, 182, 0.35);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 1rem 0;
  color: rgba(213, 213, 213, 0.9);
}
.blog-article-content--mws-redaction blockquote {
  border-left: 4px solid rgba(201, 255, 0, 0.35);
  padding: 14px 18px;
  background: rgba(46, 117, 182, 0.08);
  margin: 1.25rem 0;
  border-radius: 0 6px 6px 0;
  font-style: italic;
  color: rgba(213, 213, 213, 0.88);
}
.blog-article-content--mws-redaction table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.92rem;
}
.blog-article-content--mws-redaction th {
  background: rgba(26, 58, 92, 0.9);
  color: #fff;
  padding: 10px 12px;
  text-align: left;
}
.blog-article-content--mws-redaction td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
}
.blog-article-content--mws-redaction tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}
.blog-article-content--mws-redaction code {
  background: rgba(0, 0, 0, 0.35);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.88em;
}
.blog-article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.tag { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: rgba(213,213,213,0.6); padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; }
.blog-article-cta { background: linear-gradient(135deg, rgba(201,255,0,0.1), rgba(201,255,0,0.05)); border: 1px solid rgba(201,255,0,0.2); border-radius: 12px; padding: 40px; text-align: center; margin-bottom: 60px; }
.blog-article-cta h3 { font-size: 1.3rem; margin-bottom: 8px; }
.blog-article-cta p { color: rgba(213,213,213,0.7); margin-bottom: 20px; }
.related-articles-section {
  padding: 72px 24px;
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.related-articles-container {
  max-width: 1200px;
  margin: 0 auto;
}
.related-articles-container h2 {
  font-family: var(--font-primary);
  font-size: 1.55rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

/* ============================================
   Contact
   ============================================ */
.contact-section { padding: 60px 24px; }
.contact-container { max-width: 1200px; margin: 0 auto; }
.contact-main { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-form-wrapper h2, .contact-info-wrapper h2 { font-size: 1.5rem; margin-bottom: 8px; }
.contact-form-subtitle { font-size: 0.9rem; color: rgba(213,213,213,0.6); margin-bottom: 28px; }
.contact-form { display: flex; flex-direction: column; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group-full { grid-column: 1 / -1; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: rgba(213,213,213,0.8); }
.form-input, .form-select, .form-textarea { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 12px 16px; color: var(--mws-white); font-family: var(--font-secondary); font-size: 0.9rem; transition: border-color 0.2s; }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--mws-green); background: rgba(255,255,255,0.07); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(213,213,213,0.3); }
.form-select option { background: var(--mws-black); }
.form-error { font-size: 0.75rem; color: #ef4444; }
.form-consent-group { margin: 8px 0 12px; }
.form-consent-label { display: flex; align-items: flex-start; gap: 10px; font-size: 0.82rem; color: rgba(213,213,213,0.86); line-height: 1.55; }
.form-consent-label input { margin-top: 3px; accent-color: var(--mws-green); }
.contact-form-legal-copy { font-size: 0.84rem; color: rgba(213,213,213,0.72); margin: 0 0 12px; }
.contact-form-trust { margin-top: 10px; }
.contact-form-trust p { margin: 0 0 4px; font-size: 0.82rem; color: rgba(213,213,213,0.85); }
.contact-info-list { display: flex; flex-direction: column; gap: 24px; margin: 28px 0; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(201,255,0,0.1); display: flex; align-items: center; justify-content: center; color: var(--mws-green); font-size: 1.2rem; flex-shrink: 0; }
.contact-info-item h4 { font-size: 0.8rem; font-weight: 600; color: rgba(213,213,213,0.5); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.1em; }
.contact-info-item a, .contact-info-item p { font-size: 0.9rem; color: var(--mws-white); }
.contact-social { margin-bottom: 28px; }
.contact-social h4 { font-size: 0.85rem; font-weight: 600; color: rgba(213,213,213,0.5); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.1em; }
.social-links { display: flex; flex-direction: column; gap: 10px; }
.social-link { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--mws-white); transition: color 0.2s; }
.social-link:hover { color: var(--mws-green); }
.contact-cta-whatsapp { margin-top: 12px; }
.contact-whatsapp-legal { margin-top: 10px; font-size: 0.8rem; color: rgba(213,213,213,0.7); line-height: 1.6; }

@media (min-width: 768px) and (max-width: 900px) { .contact-main { grid-template-columns: 1fr; } .form-grid { grid-template-columns: 1fr; } }

/* ============================================
   FAQ
   ============================================ */
.faq-section { padding: 80px 24px; background: rgba(255,255,255,0.01); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-intro { font-size: 1rem; color: rgba(213,213,213,0.7); margin-bottom: 36px; }
.faq-list { display: flex; flex-direction: column; gap: 4px; }
.faq-item { border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; overflow: hidden; }
.faq-question { width: 100%; background: rgba(255,255,255,0.03); border: none; color: var(--mws-white); padding: 18px 20px; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font-primary); font-size: 0.95rem; font-weight: 600; transition: background 0.2s; }
.faq-question:hover { background: rgba(255,255,255,0.05); }
.faq-icon { font-size: 1.4rem; color: var(--mws-green); transition: transform 0.3s; flex-shrink: 0; }
.faq-icon.open { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer.open { max-height: 300px; }
.faq-answer p { padding: 16px 20px 20px; color: rgba(213,213,213,0.8); font-size: 0.9rem; line-height: 1.7; }
.faq-cta { text-align: center; margin-top: 40px; }

/* ============================================
   CTA Particles Section
   ============================================ */
.cta-particles-section { position: relative; padding: 80px 24px; background: linear-gradient(180deg, transparent, rgba(201,255,0,0.05), transparent); overflow: hidden; text-align: center; }
.wavy-lights { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
/* Destello + rayo (animado con GSAP) */
.cta-lightning-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: radial-gradient(ellipse 85% 55% at 50% 28%, rgba(255,255,255,0.45) 0%, rgba(201,255,0,0.22) 38%, transparent 68%);
  opacity: 0;
  mix-blend-mode: screen;
}
.cta-lightning-bolt {
  position: absolute;
  top: -15%;
  left: 50%;
  width: 3px;
  height: 130vh;
  margin-left: -1.5px;
  border-radius: 2px;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.95) 35%, var(--mws-green) 55%, rgba(201,255,0,0.4) 75%, transparent 100%);
  box-shadow: 0 0 16px rgba(201,255,0,0.9), 0 0 40px rgba(255,255,255,0.35);
  transform: scaleY(0);
  transform-origin: top center;
  opacity: 0;
  filter: blur(0.5px);
}
@media (prefers-reduced-motion: reduce) {
  .cta-lightning-overlay,
  .cta-lightning-bolt { display: none; }
}
.wave { position: absolute; width: 200%; height: 200%; border-radius: 50%; border: 1px solid rgba(201,255,0,0.05); animation: wave-expand 6s infinite; }
.wave-1 { animation-delay: 0s; }
.wave-2 { animation-delay: 2s; }
.wave-3 { animation-delay: 4s; }
@keyframes wave-expand { 0% { transform: translate(-25%,-25%) scale(0.3); opacity: 0.6; } 100% { transform: translate(-25%,-25%) scale(1.2); opacity: 0; } }
.cta-particles-content { position: relative; z-index: 3; max-width: 700px; margin: 0 auto; }
.cta-subtitle { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(213,213,213,0.6); margin-bottom: 12px; }
.cta-main-title { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 900; color: var(--mws-white); margin-bottom: 16px; line-height: 1.12; }
/* Escritorio: "juntos!" siempre en la misma lÃ­nea; mÃ³vil: sin nowrap (flujo natural) */
@media (min-width: 768px) {
  .cta-title-accent-group {
    white-space: nowrap;
    display: inline-block;
  }
}
.title-accent { color: var(--mws-green); }
.cta-description { font-size: 1rem; color: rgba(213,213,213,0.7); margin-bottom: 32px; }
.cta-button-large { display: inline-flex; align-items: center; gap: 10px; background: var(--mws-green); color: var(--mws-black); padding: 18px 40px; border-radius: 4px; font-family: var(--font-primary); font-weight: 800; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; transition: all 0.3s; }
.cta-button-large:hover { background: #d9ff1a; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(201,255,0,0.4); }

/* ============================================
   Footer
   ============================================ */
.footer { background: rgba(0,0,0,0.4); border-top: 1px solid rgba(201,255,0,0.08); }
.footer-top { padding: 60px 24px; }
.footer-content { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 40px; }
.footer-column { display: flex; flex-direction: column; }
.logo-mws-footer { font-family: var(--font-primary); font-weight: 900; font-size: 2rem; color: var(--mws-green); }
.footer-tagline { font-size: 0.75rem; color: rgba(213,213,213,0.4); margin-bottom: 12px; }
.footer-description { font-size: 0.85rem; color: rgba(213,213,213,0.6); line-height: 1.7; margin-bottom: 20px; }
.footer-contact-info { display: flex; flex-direction: column; gap: 8px; }
.contact-item { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: rgba(213,213,213,0.6); transition: color 0.2s; }
.contact-item:hover { color: var(--mws-green); }
.footer-column-title { font-family: var(--font-primary); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mws-white); margin-bottom: 20px; }
.footer-links-list { display: flex; flex-direction: column; gap: 10px; }
.footer-link { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: rgba(213,213,213,0.6); transition: color 0.2s; }
.footer-link:hover { color: var(--mws-green); }
.newsletter-description { font-size: 0.8rem; color: rgba(213,213,213,0.6); margin-bottom: 16px; line-height: 1.6; }
.newsletter-form { margin-bottom: 16px; }
.newsletter-input-group { display: flex; gap: 8px; }
.newsletter-input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 10px 14px; color: var(--mws-white); font-size: 0.85rem; }
.newsletter-input:focus { outline: none; border-color: var(--mws-green); }
.newsletter-button { background: var(--mws-green); color: var(--mws-black); border: none; border-radius: 6px; padding: 10px 14px; cursor: pointer; transition: background 0.2s; }
.newsletter-button:hover { background: #d9ff1a; }
.newsletter-message { padding: 8px 12px; border-radius: 6px; font-size: 0.8rem; margin-top: 8px; }
.newsletter-message.success { background: rgba(201,255,0,0.1); border: 1px solid rgba(201,255,0,0.2); color: var(--mws-green); }
.newsletter-message.error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2); color: #ef4444; }
.newsletter-benefits { display: flex; flex-direction: column; gap: 6px; }
.benefit-item { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; color: rgba(213,213,213,0.5); }
.footer-bottom { padding: 20px 24px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom-content { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-social { display: flex; align-items: center; gap: 16px; }
.social-label { font-size: 0.75rem; color: rgba(213,213,213,0.4); }
.social-icons-group { display: flex; gap: 12px; }
.social-icon { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.05); color: rgba(213,213,213,0.7); font-size: 1rem; transition: all 0.2s; }
.social-icon:hover { background: rgba(201,255,0,0.1); color: var(--mws-green); }
.footer-copyright { font-size: 0.75rem; color: rgba(213,213,213,0.3); }
.footer-legal-links { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.footer-legal-links .footer-link { font-size: 0.75rem; }
.footer-ia-notice { flex-basis: 100%; width: 100%; margin: 10px 0 0; font-size: 0.7rem; color: rgba(213,213,213,0.45); line-height: 1.5; text-align: center; order: 3; }

@media (max-width: 1100px) { .footer-content { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-content { grid-template-columns: 1fr; } }

/* ============================================
   Home â€” pantalla de carga (vÃ­deos listos)
   ============================================ */
html.home-boot-preload,
body.home-boot-preload { overflow: hidden; height: 100%; }
.home-boot-splash {
  position: fixed;
  inset: 0;
  z-index: 10060;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  cursor: crosshair;
  background: linear-gradient(165deg, #0a0a0c 0%, #121218 45%, #0d0d12 100%);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.home-boot-splash--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.home-boot-splash__decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.home-boot-splash__aurora {
  position: absolute;
  inset: -5%;
  background: radial-gradient(
    circle min(70vmin, 520px) at var(--boot-x, 50%) var(--boot-y, 50%),
    rgba(201, 255, 0, 0.18) 0%,
    rgba(201, 255, 0, 0.05) 38%,
    transparent 62%
  );
  transition: opacity 0.35s ease;
}
.home-boot-splash--interactive .home-boot-splash__aurora {
  transition: filter 0.2s ease;
}
.home-boot-splash__grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(201, 255, 0, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 255, 0, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: home-boot-grid-drift 22s linear infinite;
  mask-image: radial-gradient(ellipse 85% 75% at var(--boot-x, 50%) var(--boot-y, 50%), #000 15%, transparent 72%);
}
.home-boot-splash__orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.home-boot-splash__orb {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(201, 255, 0, 0.2), transparent 65%);
  filter: blur(2px);
  animation: home-boot-orb-float 9s ease-in-out infinite;
}
.home-boot-splash__orb:nth-child(1) { left: 8%; top: 12%; animation-delay: 0s; }
.home-boot-splash__orb:nth-child(2) { right: 10%; top: 18%; width: 80px; height: 80px; animation-delay: -2s; }
.home-boot-splash__orb:nth-child(3) { left: 15%; bottom: 15%; width: 90px; height: 90px; animation-delay: -4s; }
.home-boot-splash__orb:nth-child(4) { right: 12%; bottom: 20%; animation-delay: -1s; }
.home-boot-splash__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 255, 0, 0.12);
  pointer-events: none;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}
.home-boot-splash__ring--a {
  width: min(85vmin, 520px);
  height: min(85vmin, 520px);
  animation: home-boot-ring-spin 28s linear infinite;
}
.home-boot-splash__ring--b {
  width: min(65vmin, 400px);
  height: min(65vmin, 400px);
  border-color: rgba(201, 255, 0, 0.07);
  animation: home-boot-ring-spin 20s linear infinite reverse;
}
.home-boot-splash__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.home-boot-splash__particle {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(0, 0) rotate(0deg);
  transform-origin: center center;
  transition: transform 0.14s ease-out;
  will-change: transform;
  color: rgba(201, 255, 0, 0.75);
}
.home-boot-splash__particle--dot {
  width: 5px;
  height: 5px;
  margin: -2.5px 0 0 -2.5px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(230, 255, 120, 0.95), rgba(201, 255, 0, 0.35));
  box-shadow: 0 0 10px rgba(201, 255, 0, 0.45);
}
.home-boot-splash__particle--shape {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -9px 0 0 -9px;
  width: 18px;
  height: 18px;
  opacity: 0.72;
}
.home-boot-splash__particle--shape svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 0 6px rgba(201, 255, 0, 0.35));
}
.home-boot-splash__ripples {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}
.home-boot-splash__ripple {
  position: absolute;
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  border: 2px solid rgba(201, 255, 0, 0.65);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(201, 255, 0, 0.35);
  animation: home-boot-ripple 0.88s ease-out forwards;
}
.home-boot-splash__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 28px 22px;
  max-width: 440px;
  width: 100%;
  transform: translate(
    calc(var(--boot-tilt-x, 0) * 12px),
    calc(var(--boot-tilt-y, 0) * 12px)
  );
  transition: transform 0.15s ease-out;
  pointer-events: none;
}
.home-boot-splash__inner a,
.home-boot-splash__inner button { pointer-events: auto; }
.home-boot-splash__logo {
  color: var(--mws-green, #c9ff00);
  margin: 0 auto 18px;
  animation: home-boot-pulse 1.2s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(201, 255, 0, 0.25));
  transition: transform 0.2s ease-out;
}
.home-boot-splash--interactive .home-boot-splash__logo {
  transform: translate(
    calc(var(--boot-tilt-x, 0) * 4px),
    calc(var(--boot-tilt-y, 0) * 4px)
  );
}
.home-boot-splash__eyebrow {
  margin: 0 0 10px;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(201, 255, 0, 0.5);
}
.home-boot-splash__tip {
  margin: 0 0 22px;
  min-height: 4.5em;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.93);
}
.home-boot-splash__progress-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.home-boot-splash__bar {
  flex: 1;
  min-width: 0;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.home-boot-splash__bar-fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--mws-green, #c9ff00), #e8ff66);
  box-shadow: 0 0 12px rgba(201, 255, 0, 0.35);
  transition: width 0.22s ease-out;
  will-change: width;
}
.home-boot-splash__pct {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--mws-green, #c9ff00);
  min-width: 2.85rem;
  text-align: right;
  letter-spacing: 0.02em;
}
@keyframes home-boot-pulse {
  0%, 100% { opacity: 0.88; }
  50% { opacity: 1; }
}
.home-boot-splash--interactive .home-boot-splash__logo {
  animation: home-boot-pulse 1.2s ease-in-out infinite, home-boot-logo-tilt 6s ease-in-out infinite;
}
@keyframes home-boot-logo-tilt {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(201, 255, 0, 0.25)); }
  50% { filter: drop-shadow(0 0 28px rgba(201, 255, 0, 0.4)); }
}
@keyframes home-boot-grid-drift {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 56px 28px, 28px 56px; }
}
@keyframes home-boot-orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.55; }
  33% { transform: translate(12px, -18px) scale(1.05); opacity: 0.75; }
  66% { transform: translate(-10px, 10px) scale(0.96); opacity: 0.5; }
}
@keyframes home-boot-ring-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes home-boot-ripple {
  to {
    transform: scale(16);
    opacity: 0;
    border-width: 1px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-boot-splash__logo { animation: none; }
  .home-boot-splash--interactive .home-boot-splash__logo { animation: none; }
  .home-boot-splash__bar-fill { transition: none; }
  .home-boot-splash__grid,
  .home-boot-splash__orb,
  .home-boot-splash__ring { animation: none !important; }
  .home-boot-splash__inner { transform: none; }
  .home-boot-splash--interactive .home-boot-splash__logo { transform: none; filter: none; }
  .home-boot-splash__particle { transition: none; }
}

/* ============================================
   Floating Buttons
   ============================================ */

/* ============================================
   Legal Pages + Cookie Banner
   ============================================ */
.page-section { padding: 32px 24px 80px; }
.page-section-container { max-width: 1000px; margin: 0 auto; }
.legal-content h2 { font-size: 1.2rem; margin: 24px 0 10px; color: var(--mws-white); }
.legal-content p { font-size: 0.95rem; line-height: 1.8; color: rgba(213,213,213,0.82); }
.legal-content a { color: var(--mws-green); }
.legal-content ul { margin: 0 0 12px 1.1rem; padding: 0; color: rgba(213,213,213,0.82); line-height: 1.75; }
.legal-content li { margin-bottom: 6px; }
.contact-form-privacy-note { font-size: 0.82rem; color: rgba(213,213,213,0.78); margin: 0 0 12px; line-height: 1.55; }
.contact-whatsapp-ia { margin-top: 8px; font-size: 0.78rem; color: rgba(213,213,213,0.65); line-height: 1.55; }

/* Oculto por defecto; solo visible con .cookie-banner--visible (evita conflicto con display:flex) */
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 20px;
  z-index: 10050;
  background: rgba(9, 9, 9, 0.95);
  border: 1px solid rgba(201,255,0,0.25);
  border-radius: 12px;
  padding: 14px 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.cookie-banner.cookie-banner--visible {
  display: flex;
}
.cookie-banner p { margin: 0; font-size: 0.85rem; color: rgba(213,213,213,0.85); }
.cookie-banner-actions { display: flex; gap: 10px; align-items: center; }
@media (max-width: 700px) {
  .cookie-banner.cookie-banner--visible { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   About Page
   ============================================ */
.about-section-page { padding: 60px 24px 80px; }
.about-page-container { max-width: 1200px; margin: 0 auto; }
.about-mission, .about-values, .about-stats, .about-cta { margin-bottom: 60px; }
.about-mission h2, .about-values h2, .about-stats h2, .about-cta h2 { font-size: 1.5rem; margin-bottom: 16px; color: var(--mws-white); }
.about-mission p, .about-cta p { font-size: 1rem; color: rgba(213,213,213,0.8); line-height: 1.8; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-top: 20px; }
.value-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 24px; transition: border-color 0.2s; }
.value-card:hover { border-color: var(--mws-green); }
.value-card i { font-size: 1.5rem; color: var(--mws-green); margin-bottom: 12px; }
.value-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--mws-white); margin-bottom: 8px; }
.value-card p { font-size: 0.85rem; color: rgba(213,213,213,0.6); line-height: 1.6; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; margin-top: 20px; }
.about-cta-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 12px; }

/* ============================================
   Agentes IA
   ============================================ */
.agentes-hero { background: linear-gradient(135deg, rgba(201,255,0,0.08), transparent); }
.agentes-features-section { padding: 80px 24px; }
.agentes-container { max-width: 1200px; margin: 0 auto; }
.agentes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin-top: 40px; }
.agente-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 28px; transition: all 0.3s; }
.agente-card:hover { border-color: var(--mws-green); transform: translateY(-4px); }
.agente-icon { width: 52px; height: 52px; background: rgba(201,255,0,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--mws-green); margin-bottom: 16px; }
.agente-card h3 { font-size: 1rem; font-weight: 700; color: var(--mws-white); margin-bottom: 8px; }
.agente-card p { font-size: 0.85rem; color: rgba(213,213,213,0.7); margin-bottom: 12px; line-height: 1.6; }
.agente-card ul { display: flex; flex-direction: column; gap: 6px; }
.agente-card ul li { font-size: 0.8rem; color: rgba(213,213,213,0.6); padding-left: 14px; position: relative; }
.agente-card ul li::before { content: 'â€º'; position: absolute; left: 0; color: var(--mws-green); }
.agentes-process-section { padding: 60px 24px; background: rgba(255,255,255,0.01); }
.process-steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; margin-top: 40px; }
.process-step { position: relative; padding-left: 24px; }
.step-number { font-family: var(--font-primary); font-size: 3rem; font-weight: 900; color: rgba(201,255,0,0.15); line-height: 1; margin-bottom: 8px; }
.process-step h3 { font-size: 1rem; font-weight: 700; color: var(--mws-white); margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; color: rgba(213,213,213,0.6); line-height: 1.6; }
.agentes-cta-section { padding: 80px 24px; }
.agentes-cta-card { background: linear-gradient(135deg, rgba(201,255,0,0.1), rgba(201,255,0,0.03)); border: 1px solid rgba(201,255,0,0.2); border-radius: 16px; padding: 60px; text-align: center; max-width: 700px; margin: 0 auto; }
.agentes-cta-card h2 { font-size: 1.8rem; margin-bottom: 12px; }
.agentes-cta-card p { color: rgba(213,213,213,0.7); margin-bottom: 28px; }
.agentes-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-large { padding: 16px 36px; }

/* ============================================
   IA Aplicada (ventas, checkout, masterclass, gracias)
   ============================================ */
.ia-sales { background: var(--mws-black); min-height: 60vh; }
.sales-hero { position: relative; min-height: 85vh; display: flex; align-items: center; justify-content: center; padding: 6rem 1.5rem 4rem; overflow: hidden; }
@media (min-width: 900px) { .sales-hero { min-height: 90vh; padding: 7rem 2rem 5rem; } }
.sales-hero__bg { position: absolute; inset: 0; z-index: 0; background: linear-gradient(135deg, var(--mws-black) 0%, #252520 50%, var(--mws-black) 100%); }
.sales-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.sales-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(29,29,27,0.75) 0%, rgba(29,29,27,0.92) 60%, var(--mws-black) 100%); pointer-events: none; }
.sales-hero__content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; text-align: center; }
.sales-badge { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; color: var(--mws-green); background: rgba(201,255,0,0.12); border: 1px solid rgba(201,255,0,0.35); border-radius: 100px; padding: 0.4rem 1rem; margin-bottom: 1.5rem; text-transform: uppercase; }
.sales-hero__title { font-family: var(--font-primary); font-size: clamp(2.2rem, 5.5vw, 3.8rem); font-weight: 800; color: var(--mws-white); line-height: 1.15; margin-bottom: 1.25rem; letter-spacing: -0.02em; }
.sales-hero__subtitle { font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--mws-white); opacity: 0.95; line-height: 1.55; margin-bottom: 1rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.sales-hero__lead { font-size: clamp(0.95rem, 1.5vw, 1.05rem); color: var(--mws-gray); line-height: 1.5; margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.sales-hero__ctas { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.sales-hero__ctas .btn--primary { box-shadow: 0 8px 28px rgba(201,255,0,0.35); }
.ia-sales .btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 1rem 1.75rem; font-family: var(--font-primary); font-size: 1rem; font-weight: 700; text-decoration: none; border-radius: 10px; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s, background 0.2s; text-transform: none; letter-spacing: normal; white-space: normal; text-align: center; }
.ia-sales .btn--primary { color: var(--mws-black); background: var(--mws-green); border: none; }
.ia-sales .btn--primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(201,255,0,0.45); }
.ia-sales .btn--ghost { color: var(--mws-green); background: transparent; border: 1px solid rgba(201,255,0,0.4); }
.ia-sales .btn--ghost:hover { background: rgba(201,255,0,0.08); border-color: var(--mws-green); }
.ia-sales .btn--xl { padding: 1.25rem 2.25rem; font-size: 1.15rem; }
.block { padding: 4.5rem 1.5rem; }
@media (min-width: 768px) { .block { padding: 5.5rem 2rem; } }
.block--dark { background: #0f0f0e; border-top: 1px solid rgba(201,255,0,0.08); border-bottom: 1px solid rgba(201,255,0,0.08); }
.block--cta { padding: 5rem 1.5rem 6rem; text-align: center; }
.block__inner { max-width: 1100px; margin: 0 auto; }
.block__inner--wide { max-width: 1100px; }
.block__tag { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; color: var(--mws-green); text-transform: uppercase; margin-bottom: 0.75rem; }
.block__title { font-family: var(--font-primary); font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--mws-white); line-height: 1.25; margin-bottom: 1rem; }
.block__title--center { text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; }
.block__lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--mws-white); opacity: 0.95; line-height: 1.65; margin-bottom: 1rem; }
.block__text { font-size: 1rem; color: var(--mws-gray); line-height: 1.75; margin-bottom: 0.75rem; }
.block__text--small { font-size: 0.95rem; margin-top: 1rem; }
.cta-buttons { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.block--live-value { background: linear-gradient(180deg, rgba(201,255,0,0.04) 0%, transparent 100%); border-top: 1px solid rgba(201,255,0,0.1); }
.live-value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; max-width: 800px; margin-left: auto; margin-right: auto; }
@media (max-width: 700px) { .live-value-grid { grid-template-columns: 1fr; gap: 1.5rem; } }
.live-value__side { padding: 1.5rem; border-radius: 14px; }
.live-value__no { background: rgba(213,213,213,0.03); border: 1px solid rgba(213,213,213,0.08); }
.live-value__yes { background: rgba(201,255,0,0.06); border: 1px solid rgba(201,255,0,0.2); }
.live-value__side-title { font-family: var(--font-primary); font-size: 1rem; font-weight: 700; margin: 0 0 1rem; color: var(--mws-white); text-transform: uppercase; letter-spacing: 0.04em; }
.live-value__list { list-style: none; padding: 0; margin: 0; font-size: 0.95rem; line-height: 1.7; color: var(--mws-gray); }
.live-value__list li { padding: 0.25rem 0; }
.live-value__list--check { color: var(--mws-white); }
.live-value__list--check li::before { content: '✔ '; color: var(--mws-green); font-weight: 700; }
.live-value__foot { margin: 1rem 0 0; font-size: 0.9rem; color: var(--mws-green); font-weight: 700; }
.block__split { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) {
  .block__split { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .block__split--reverse .block__media { order: 2; }
  .block__split--reverse .block__copy { order: 1; }
}
.block__media { border-radius: 16px; overflow: hidden; border: 1px solid rgba(201,255,0,0.15); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.block__img { width: 100%; height: auto; display: block; vertical-align: middle; }
.avatar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.avatar-card { background: rgba(213,213,213,0.03); border: 1px solid rgba(201,255,0,0.15); border-radius: 16px; padding: 1.75rem; text-align: center; transition: border-color 0.25s, transform 0.25s; }
.avatar-card:hover { border-color: rgba(201,255,0,0.4); transform: translateY(-4px); }
.avatar-card__icon { font-size: 2.5rem; display: block; margin-bottom: 1rem; line-height: 1; }
.avatar-card__title { font-family: var(--font-primary); font-size: 1.05rem; font-weight: 700; color: var(--mws-green); margin: 0 0 0.5rem; text-transform: uppercase; letter-spacing: 0.04em; }
.avatar-card__text { font-size: 0.9rem; color: var(--mws-gray); line-height: 1.6; margin: 0; }
.check-list { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.check-list li { position: relative; padding-left: 1.75rem; margin-bottom: 0.85rem; font-size: 1rem; color: var(--mws-white); line-height: 1.6; }
.check-list li::before { content: ''; position: absolute; left: 0; top: 0.4em; width: 10px; height: 10px; background: var(--mws-green); border-radius: 50%; box-shadow: 0 0 12px rgba(201,255,0,0.5); }
.include-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.include-card { background: rgba(213,213,213,0.03); border: 1px solid rgba(213,213,213,0.08); border-radius: 14px; padding: 1.75rem; transition: border-color 0.25s, background 0.25s; }
.include-card:hover { border-color: rgba(201,255,0,0.25); background: rgba(201,255,0,0.04); }
.include-card .pi { font-size: 1.75rem; color: var(--mws-green); margin-bottom: 1rem; display: block; }
.include-card__title { font-family: var(--font-primary); font-size: 1rem; font-weight: 700; color: var(--mws-white); margin: 0 0 0.4rem; }
.include-card__text { font-size: 0.9rem; color: var(--mws-gray); line-height: 1.6; margin: 0; }
.bonos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.bono-card { background: rgba(201,255,0,0.06); border: 1px solid rgba(201,255,0,0.25); border-radius: 16px; padding: 2rem; text-align: center; transition: transform 0.25s, box-shadow 0.25s; }
.bono-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(201,255,0,0.12); }
.bono-card__num { display: inline-block; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.15em; color: var(--mws-green); margin-bottom: 0.75rem; text-transform: uppercase; }
.bono-card__title { font-family: var(--font-primary); font-size: 1.1rem; font-weight: 700; color: var(--mws-white); margin: 0 0 0.5rem; line-height: 1.3; }
.bono-card__text { font-size: 0.9rem; color: var(--mws-gray); line-height: 1.6; margin: 0; }
.block--guarantee { background: linear-gradient(180deg, #0f0f0e 0%, rgba(201,255,0,0.03) 50%, #0f0f0e 100%); }
.price-card { max-width: 420px; margin: 0 auto 2rem; background: rgba(201,255,0,0.08); border: 1px solid rgba(201,255,0,0.3); border-radius: 20px; padding: 2.25rem; }
.price-card__old { font-size: 1rem; color: var(--mws-gray); margin: 0 0 0.35rem; }
.price-card__current { font-size: 1.85rem; font-weight: 800; color: var(--mws-white); margin: 0 0 0.5rem; }
.price-card__meta { font-size: 0.9rem; color: var(--mws-gray); line-height: 1.5; margin: 0; }

/* Checkout IA */
.ia-checkout { min-height: 70vh; background: var(--mws-black); padding: 6rem 1.5rem 4rem; }
.ia-checkout--narrow .ia-checkout__inner { max-width: 640px; }
@media (min-width: 900px) { .ia-checkout { padding: 7rem 2rem 5rem; } }
.ia-checkout__inner { max-width: 1120px; margin: 0 auto; }
.ia-checkout__header { text-align: center; margin-bottom: 3rem; }
.ia-checkout__badge { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; color: var(--mws-green); background: rgba(201,255,0,0.12); border: 1px solid rgba(201,255,0,0.35); border-radius: 999px; padding: 0.4rem 1rem; margin-bottom: 1.25rem; text-transform: uppercase; }
.ia-checkout__title { font-family: var(--font-primary); font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 800; color: var(--mws-white); line-height: 1.2; margin: 0 0 0.75rem; }
.ia-checkout__subtitle { font-size: clamp(1rem, 1.6vw, 1.15rem); color: var(--mws-gray); line-height: 1.65; margin: 0 auto; max-width: 560px; }
.ia-checkout__grid { display: grid; gap: 2.5rem; }
@media (min-width: 900px) { .ia-checkout__grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr); align-items: flex-start; } }
.ia-checkout__section-title { font-family: var(--font-primary); font-size: 1.05rem; font-weight: 700; color: var(--mws-white); text-transform: uppercase; letter-spacing: 0.15em; margin: 0 0 1.25rem; }
.ia-checkout__summary { order: 2; }
.ia-checkout__form { order: 1; }
@media (min-width: 900px) { .ia-checkout__summary { order: 1; } .ia-checkout__form { order: 2; } }
.summary-card { background: rgba(213,213,213,0.03); border: 1px solid rgba(201,255,0,0.25); border-radius: 18px; padding: 1.8rem 1.6rem; color: var(--mws-white); }
.summary-card__title { font-family: var(--font-primary); font-size: 1.2rem; font-weight: 700; margin: 0 0 0.35rem; }
.summary-card__label { font-size: 0.9rem; color: var(--mws-gray); margin: 0 0 1rem; }
.summary-card__list { list-style: none; padding: 0; margin: 0 0 1.5rem; font-size: 0.95rem; color: var(--mws-white); }
.summary-card__list li { position: relative; padding-left: 1.4rem; margin-bottom: 0.5rem; }
.summary-card__list li::before { content: '•'; position: absolute; left: 0.3rem; top: 0; color: var(--mws-green); }
.summary-card__price { padding: 1.2rem 1rem; border-radius: 14px; background: rgba(201,255,0,0.1); border: 1px solid rgba(201,255,0,0.3); margin-bottom: 0.9rem; }
.summary-card__price-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--mws-gray); margin: 0 0 0.4rem; }
.summary-card__price-value { margin: 0; }
.summary-card__price-main { display: block; font-size: 1.7rem; font-weight: 800; color: var(--mws-white); }
.summary-card__price-note { display: block; font-size: 0.8rem; color: var(--mws-gray); margin-top: 0.25rem; }
.summary-card__guarantee { font-size: 0.9rem; color: var(--mws-gray); margin: 0.4rem 0 0; }
.ia-checkout .checkout-form { background: rgba(213,213,213,0.04); border-radius: 18px; border: 1px solid rgba(201,255,0,0.25); padding: 1.8rem 1.6rem; display: flex; flex-direction: column; gap: 1.2rem; }
.checkout-form__field { display: flex; flex-direction: column; gap: 0.35rem; }
.checkout-form__field label { font-size: 0.8rem; font-weight: 600; color: var(--mws-gray); text-transform: uppercase; letter-spacing: 0.12em; }
.checkout-form__field--two { gap: 1rem; }
@media (min-width: 700px) { .checkout-form__field--two { flex-direction: row; } .checkout-form__field--two > div { flex: 1; } }
.checkout-form__field--checkbox { align-items: flex-start; }
.checkout-input { width: 100%; padding: 0.8rem 1rem; font-size: 0.98rem; color: var(--mws-white); background: rgba(213,213,213,0.06); border-radius: 10px; border: 1px solid rgba(213,213,213,0.16); outline: none; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s; font-family: var(--font-secondary); }
.checkout-input::placeholder { color: var(--mws-gray); }
.checkout-input:focus { border-color: var(--mws-green); background: rgba(213,213,213,0.08); box-shadow: 0 0 0 2px rgba(201,255,0,0.25); }
.checkbox-label { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.85rem; color: var(--mws-gray); }
.checkbox-label input[type='checkbox'] { margin-top: 0.18rem; width: 1rem; height: 1rem; flex-shrink: 0; }
.checkout-error { font-size: 0.78rem; color: #ef4444; }
.checkout-cta { display: inline-flex; align-items: center; justify-content: center; width: 100%; padding: 1rem 1.5rem; font-family: var(--font-primary); font-size: 1rem; font-weight: 700; color: var(--mws-black); background: var(--mws-green); border-radius: 999px; border: none; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
.checkout-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,255,0,0.45); }
.ia-checkout .checkout-note { font-size: 0.8rem; color: var(--mws-gray); margin: 0.5rem 0 0; line-height: 1.5; }
.checkout-payment-card { background: rgba(213,213,213,0.04); border: 1px solid rgba(201,255,0,0.2); border-radius: 18px; padding: 2rem; text-align: center; }
.ia-code { font-size: 0.85rem; color: var(--mws-green); background: rgba(201,255,0,0.08); padding: 0.1rem 0.35rem; border-radius: 4px; }

/* Masterclass landing */
.masterclass-landing { min-height: 70vh; background: var(--mws-black); padding: 6rem 1.5rem 4rem; }
.mc-hero { max-width: 720px; margin: 0 auto; }
.mc-hero__inner { text-align: center; }
.mc-badge { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; color: var(--mws-green); background: rgba(201,255,0,0.1); border: 1px solid rgba(201,255,0,0.3); border-radius: 20px; padding: 0.35rem 0.9rem; margin-bottom: 1.5rem; text-transform: uppercase; }
.mc-title { font-family: var(--font-primary); font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; color: var(--mws-white); line-height: 1.25; margin-bottom: 1.25rem; }
.mc-subtitle { font-size: clamp(1rem, 1.5vw, 1.15rem); color: var(--mws-gray); line-height: 1.65; margin-bottom: 2rem; }
.mc-bullets { list-style: none; padding: 0; margin: 0 auto 2.5rem; text-align: left; max-width: 420px; }
.mc-bullets li { font-size: 1rem; color: var(--mws-white); padding: 0.5rem 0; border-bottom: 1px solid rgba(213,213,213,0.08); }
.mc-bullets li:last-child { border-bottom: none; }
.mc-form-wrapper { background: rgba(213,213,213,0.04); border: 1px solid rgba(201,255,0,0.2); border-radius: 16px; padding: 2rem; max-width: 440px; margin: 0 auto; }
.mc-form { display: flex; flex-direction: column; gap: 1rem; }
.mc-form__fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .mc-form__fields { grid-template-columns: 1fr; } }
.mc-field { text-align: left; }
.mc-field label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--mws-gray); margin-bottom: 0.35rem; }
.mc-input { width: 100%; padding: 0.75rem 1rem; font-size: 1rem; color: var(--mws-white); background: rgba(213,213,213,0.06); border: 1px solid rgba(213,213,213,0.15); border-radius: 8px; outline: none; transition: border-color 0.2s; font-family: var(--font-secondary); box-sizing: border-box; }
.mc-input::placeholder { color: var(--mws-gray); }
.mc-input:focus { border-color: var(--mws-green); box-shadow: 0 0 0 2px rgba(201,255,0,0.2); }
.mc-error { display: block; font-size: 0.75rem; color: #ef4444; margin-top: 0.25rem; }
.mc-cta { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; padding: 1rem 1.5rem; font-family: var(--font-primary); font-size: 1rem; font-weight: 700; color: var(--mws-black); background: var(--mws-green); border: none; border-radius: 8px; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
.mc-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,255,0,0.4); }
.mc-cta-footer { text-align: center; margin-top: 3rem; }
.mc-link { font-size: 0.95rem; color: var(--mws-green); text-decoration: none; font-weight: 600; }
.mc-link:hover { text-decoration: underline; }

/* Gracias masterclass */
.thanks-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; background: var(--mws-black); padding: 6rem 1.5rem 4rem; }
.thanks-inner { max-width: 520px; text-align: center; }
.thanks-page .thanks-icon { width: 72px; height: 72px; margin: 0 auto 1.5rem; background: var(--mws-green); color: var(--mws-black); font-size: 2.5rem; font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center; line-height: 1; }
.thanks-title { font-family: var(--font-primary); font-size: clamp(1.6rem, 3.5vw, 2rem); font-weight: 800; color: var(--mws-white); margin-bottom: 1rem; }
.thanks-text { font-size: 1.05rem; color: var(--mws-gray); line-height: 1.65; margin-bottom: 1.5rem; }
.thanks-next { list-style: none; padding: 0; margin: 0 0 2rem; text-align: left; }
.thanks-next li { font-size: 0.95rem; color: var(--mws-white); padding: 0.4rem 0; padding-left: 1.5rem; position: relative; }
.thanks-next li::before { content: '•'; color: var(--mws-green); position: absolute; left: 0; }
.thanks-cta { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
.thanks-btn { display: inline-flex; align-items: center; justify-content: center; padding: 1rem 1.75rem; font-family: var(--font-primary); font-size: 1rem; font-weight: 700; color: var(--mws-black); background: var(--mws-green); border-radius: 8px; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; border: 2px solid var(--mws-green); }
.thanks-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,255,0,0.4); }
.thanks-btn--outline { background: transparent; color: var(--mws-green); }
.thanks-btn--outline:hover { background: rgba(201,255,0,0.08); }
.thanks-link { font-size: 0.9rem; color: var(--mws-gray); text-decoration: none; }
.thanks-link:hover { color: var(--mws-green); }

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-in-up { animation: fadeInUp 0.6s ease forwards; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 600px) {
  .page-hero { padding: 60px 16px 40px; }
  .hero-buttons, .page-hero-actions, .hero-stats { gap: 10px; }
  .btn { padding: 12px 20px; font-size: 0.8rem; }
}

/* ============================================
   Hero â€” Updated
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #050608;
}

/* â”€â”€ Video de fondo â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-video-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* Overlay "Reproducir video": hijo directo de .hero para quedar encima del contenido (z-index 10) */
.hero-video-play-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  cursor: pointer;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.hero-video-play-overlay:hover {
  background: rgba(0, 0, 0, 0.45);
}
.hero-video-play-overlay .hero-video-play-icon {
  color: var(--mws-green);
  filter: drop-shadow(0 0 12px rgba(201, 255, 0, 0.5));
}
.hero-video-play-overlay .hero-video-play-text {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.95);
}
.hero-video-play-overlay--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 50% at 50% 30%, transparent 0%, rgba(0,0,0,0.35) 70%),
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.2) 25%, rgba(0,0,0,0.45) 70%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}

/* â”€â”€ Particle canvas â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* â”€â”€ Scrolly hero section (ScrollyVideo.js) â”€â”€â”€â”€â”€ */
.scrolly-hero-section {
  position: relative;
  background: #050608;
  margin-top: 0;
  padding-top: 0;
}
.scrolly-hero-wrapper {
  height: 300vh;
}
#scrolly-hero-video {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  position: relative;
}
.scrolly-loading {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050608;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.scrolly-loading__ring {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(201,255,0,0.15);
  border-top-color: #c9ff00;
  border-radius: 50%;
  animation: scrolly-spin 0.9s linear infinite;
}
@keyframes scrolly-spin {
  to { transform: rotate(360deg); }
}

/* â”€â”€ Sound button (fuera del video-container) â”€â”€â”€ */
.video-sound-toggle {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 15;
  background: rgba(10,10,10,0.65);
  border: 1.5px solid rgba(201,255,0,0.4);
  color: var(--mws-green);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
}
.video-sound-toggle:hover { border-color: var(--mws-green); background: rgba(201,255,0,0.12); }
.video-sound-toggle svg  { pointer-events: none; }

/* â”€â”€ Hero content â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
}
.hero-brand {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mws-green);
  margin-bottom: 16px;
  opacity: 1;
}
.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #fff;
}
.hero-title .green { color: var(--mws-green); }
.title-line { display: block; }
.hero-stats--compact { display: flex; flex-wrap: wrap; gap: 16px 32px; margin-bottom: 24px; }
.hero-stat { font-size: 0.85rem; color: rgba(213,213,213,0.75); }
.hero-stat strong { color: var(--mws-green); font-size: 1rem; margin-right: 4px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 60px;
  color: rgba(213,213,213,0.5);
  font-size: 0.75rem;
}
.scroll-arrow { color: var(--mws-green); }
.scroll-mouse { width: 22px; height: 32px; border: 2px solid rgba(213,213,213,0.3); border-radius: 11px; display: flex; align-items: flex-start; justify-content: center; padding: 4px; }
.mouse-wheel { width: 3px; height: 6px; background: var(--mws-green); border-radius: 2px; animation: scroll-wheel 2s ease-in-out infinite; }

/* â”€â”€ Hero responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 768px) {
  .hero-content { padding: 0 20px; min-height: calc(100vh - 60px); }
  .hero-title { font-size: clamp(1.6rem, 6vw, 2.8rem); }
}

@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }
@keyframes scroll-wheel { 0%{opacity:1;transform:translateY(0)} 100%{opacity:0;transform:translateY(12px)} }

/* ============================================
   Showcase Section
   ============================================ */
.services-showcase { position: relative; overflow: hidden; padding: 100px 0; background: #111110; }
.showcase-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.showcase-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(201,255,0,0.04) 1px,transparent 1px), linear-gradient(90deg,rgba(201,255,0,0.04) 1px,transparent 1px); background-size: 60px 60px; }
.showcase-glow { position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none; }
.showcase-glow-1 { width: 600px; height: 600px; background: rgba(201,255,0,0.06); top: -100px; left: -200px; }
.showcase-glow-2 { width: 400px; height: 400px; background: rgba(201,255,0,0.04); bottom: -80px; right: -100px; }
.showcase-container { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.showcase-eyebrow { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mws-green); margin-bottom: 16px; }
.showcase-title { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; line-height: 1.15; margin-bottom: 24px; }
.title-word { display: inline-block; margin-right: 0.25em; }
.title-word--accent { color: var(--mws-green); }
.showcase-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 48px; }
.showcase-pill { font-size: 0.75rem; padding: 5px 14px; border: 1px solid rgba(201,255,0,0.25); border-radius: 20px; color: rgba(213,213,213,0.7); transition: all 0.2s; }
.showcase-pill:hover { border-color: var(--mws-green); color: var(--mws-green); }
.showcase-body { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }
.showcase-cards { display: flex; flex-direction: column; gap: 20px; }
.showcase-card { position: relative; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 28px; overflow: hidden; transition: border-color 0.3s, transform 0.3s; }
.showcase-card:hover { border-color: rgba(201,255,0,0.25); transform: translateY(-3px); }
.showcase-card--primary { border-color: rgba(201,255,0,0.15); background: rgba(201,255,0,0.03); }
.showcase-card-border-glow { position: absolute; inset: 0; border-radius: 16px; background: conic-gradient(from 0deg, transparent 0%, rgba(201,255,0,0.2) 30%, transparent 60%); opacity: 0; transition: opacity 0.4s; pointer-events: none; }
.showcase-card:hover .showcase-card-border-glow { opacity: 1; }
.showcase-card-inner { position: relative; z-index: 1; }
.showcase-card-icon { display: inline-flex; color: var(--mws-green); margin-bottom: 14px; }
.showcase-card-title { font-family: var(--font-primary); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.showcase-card-desc { font-size: 0.85rem; color: rgba(213,213,213,0.65); line-height: 1.6; }
.showcase-carousel { position: relative; min-height: 320px; height: 100%; overflow: hidden; border-radius: 16px; border: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; }
.showcase-carousel-frame { position: relative; overflow: hidden; flex: 1; min-height: 0; }
.showcase-carousel-track { display: flex; height: 100%; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
.showcase-carousel-slide { position: relative; flex: 0 0 100%; height: 100%; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.showcase-carousel-slide-bg { position: absolute; inset: 0; z-index: 1; background-position: center; background-size: cover; }
.showcase-carousel-slide-bg--gradient-software { background: linear-gradient(135deg, #0d1117 0%, #1a2633 100%); }
.showcase-carousel-slide-bg--gradient-integraciones { background: linear-gradient(135deg, #0d1117 0%, #162114 100%); }
.showcase-carousel-slide-bg--gradient-ecommerce { background: linear-gradient(135deg, #0d1117 0%, #1a1614 100%); }
.showcase-carousel-slide-bg--gradient-ia { background: linear-gradient(135deg, #0d1117 0%, #131620 100%); }
.showcase-carousel-slide-bg--gradient-movil { background: linear-gradient(135deg, #0d1117 0%, #161426 100%); }
.showcase-carousel-slide-bg--over-video.showcase-carousel-slide-bg--gradient-integraciones {
  background: linear-gradient(135deg, rgba(13, 17, 23, 0.88) 0%, rgba(22, 33, 20, 0.85) 100%);
}
.showcase-carousel-slide-bg--over-video.showcase-carousel-slide-bg--gradient-movil {
  background: linear-gradient(135deg, rgba(13, 17, 23, 0.88) 0%, rgba(22, 20, 38, 0.85) 100%);
}
.showcase-carousel-slide-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.showcase-carousel-slide--active .showcase-carousel-slide-video {
  opacity: 1;
}
.showcase-carousel-slide-content { position: relative; z-index: 2; padding: 32px; text-align: center; display: flex; flex-direction: column; align-items: center; max-width: 420px; }
.showcase-carousel-slide-icon { width: 80px; height: 80px; color: var(--mws-green); opacity: 0.9; margin-bottom: 16px; flex-shrink: 0; }
.showcase-carousel-slide-icon svg { width: 100%; height: 100%; display: block; }
.showcase-carousel-slide--active .showcase-carousel-slide-icon { animation: showcase-icon-float 2.8s ease-in-out infinite; }
@keyframes showcase-icon-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.9; }
  50% { transform: translateY(-8px) scale(1.02); opacity: 1; }
}
.showcase-carousel-slide-title { font-family: var(--font-primary); font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.showcase-carousel-slide-subtitle { font-size: 0.85rem; color: rgba(213,213,213,0.6); line-height: 1.5; }
.showcase-carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(29,29,27,0.8); border: 1px solid rgba(255,255,255,0.1); color: rgba(213,213,213,0.7); width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; }
.showcase-carousel-btn:hover { border-color: var(--mws-green); color: var(--mws-green); }
.showcase-carousel-btn--prev { left: 10px; }
.showcase-carousel-btn--next { right: 10px; }
.showcase-carousel-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.showcase-carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.25); border: none; cursor: pointer; transition: all 0.2s; }
.showcase-carousel-dot--active { background: var(--mws-green); transform: scale(1.3); }
.showcase-footer { display: flex; justify-content: flex-end; margin-top: 40px; }
.showcase-cta { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; color: var(--mws-green); border-bottom: 1px solid transparent; padding-bottom: 2px; transition: border-color 0.2s; }
.showcase-cta:hover { border-color: var(--mws-green); }

/* ============================================
   Projects â€” Home Featured Work
   ============================================ */
.home-projects-section { padding: 100px 0; background: var(--mws-black); }
.home-projects-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.home-projects-header { display: grid; grid-template-columns: auto 1fr; gap: 32px 60px; align-items: start; margin-bottom: 60px; }
.home-projects-eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mws-green); display: block; margin-bottom: 8px; }
.home-projects-title { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; line-height: 1; font-family: var(--font-primary); color: #fff; }
.home-projects-subtitle { color: rgba(213,213,213,0.65); font-size: 0.9rem; line-height: 1.7; padding-top: 8px; }
.home-projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 48px; }
.home-project-card { position: relative; display: block; border-radius: 12px; overflow: hidden; aspect-ratio: 16/9; }
.home-project-card:nth-child(1) { grid-column: span 2; aspect-ratio: 16/8; }
.home-project-media { position: relative; width: 100%; height: 100%; }
.home-project-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.home-project-card:hover .home-project-media img { transform: scale(1.05); }
.home-project-media-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%); display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; opacity: 0.7; transition: opacity 0.3s; }
.home-project-card:hover .home-project-media-overlay { opacity: 1; }
.home-project-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mws-green); background: rgba(201,255,0,0.1); border: 1px solid rgba(201,255,0,0.2); padding: 3px 10px; border-radius: 20px; width: fit-content; margin-bottom: 8px; }
.home-project-name { font-family: var(--font-primary); font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.home-project-meta { font-size: 0.8rem; color: rgba(213,213,213,0.65); }
.home-projects-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Featured Work â€” horizontal scroll gallery */
.horiz-gallery-section.home-projects-section {
  padding-top: clamp(56px, 8vw, 80px);
  padding-bottom: 24px;
}
.featured-work-scroll-wrap {
  box-sizing: border-box;
}
.horiz-gallery-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 48px;
  max-width: 100%;
  /* Margen lateral estable al soltar el pin (safe-area en mÃ³viles con notch) */
  padding: 0 max(40px, env(safe-area-inset-right, 0px)) 0 max(40px, env(safe-area-inset-left, 0px));
  margin: 0 auto;
  box-sizing: border-box;
  flex: 0 0 auto;
  overflow: hidden;
}
@media (min-width: 901px) {
  .horiz-gallery-row {
    gap: 56px;
  }
}
.horiz-gallery-header-col {
  flex: 0 0 auto;
  width: 380px;
  max-width: 42%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 5;
  background: var(--mws-black);
  isolation: isolate;
  /* Refuerzo izquierdo por si el pin deja el bloque pegado al borde al final del efecto */
  padding-left: clamp(4px, 1.5vw, 16px);
  /* Aire y sombra para que el tÃ­tulo no compita con la 1.Âª imagen al hacer scroll horizontal */
  padding-right: clamp(28px, 4vw, 56px);
  box-shadow: 20px 0 36px -8px var(--mws-black), 12px 0 0 0 var(--mws-black);
}
.horiz-gallery-section .home-projects-header { margin-bottom: 0; }
/* Escritorio ancho (fila horizontal): el grid auto+1fr desborda ~380px y el texto se pinta encima de la galerÃ­a */
@media (min-width: 901px) {
  .horiz-gallery-section .home-projects-header {
    grid-template-columns: 1fr;
    gap: 18px 0;
    align-items: stretch;
    max-width: 100%;
    min-width: 0;
  }
  .horiz-gallery-section .home-projects-subtitle {
    padding-top: 0;
    max-width: 100%;
  }
  .horiz-gallery-header-col {
    width: min(440px, 44vw);
    max-width: 48%;
    min-width: 300px;
    flex-shrink: 0;
  }
}
/* CTA bajo el copy (antes estaba fuera del pin y subÃ­a encima de la galerÃ­a al hacer scroll) */
.horiz-gallery-cta {
  margin-top: 22px;
  align-self: flex-start;
  flex-shrink: 0;
  width: fit-content;
  max-width: 100%;
}
.horiz-gallery-section .horiz-gallery-outer {
  flex: 1 1 0;
  min-width: 0;
  padding-left: clamp(12px, 2vw, 28px);
  padding-right: 0;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 1;
  isolation: isolate;
}
.horiz-gallery-section .horiz-gallery-wrapper {
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
  align-items: center;
  flex: 1;
  min-height: 100%;
  width: 100%;
  overflow: hidden;
}
.horiz-gallery-strip {
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
  gap: 0;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 0;
}
.horiz-gallery-section .project-wrap {
  flex-shrink: 0;
  width: 38vw;
  min-width: 300px;
  max-width: 420px;
  padding: 0 1.125rem;
  box-sizing: border-box;
  display: block;
  text-decoration: none;
  color: inherit;
}
.horiz-gallery-section .project-wrap-media {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.horiz-gallery-section .project-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, opacity 0.25s ease;
}
.horiz-gallery-section .project-wrap:hover img { transform: scale(1.03); }
.horiz-gallery-section .project-wrap-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.horiz-gallery-section .project-wrap.has-hover-video.is-video-playing .project-wrap-video {
  opacity: 1;
}
.horiz-gallery-section .project-wrap.has-hover-video.is-video-playing .project-wrap-img {
  opacity: 0;
}
.horiz-gallery-section .project-wrap-category {
  display: block;
  margin-top: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mws-green);
}
.horiz-gallery-section .project-wrap-title {
  display: block;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-top: 4px;
}
@media (min-width: 768px) and (max-width: 900px) {
  .horiz-gallery-row {
    flex-direction: column;
    gap: 32px;
    padding: 0 max(24px, env(safe-area-inset-right, 0px)) 0 max(24px, env(safe-area-inset-left, 0px));
  }
  .horiz-gallery-header-col {
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    box-shadow: none;
  }
  .horiz-gallery-cta {
    margin-top: 20px;
  }
}

/* MÃ³vil: columna; galerÃ­a la mueve el scroll vertical vÃ­a GSAP (misma tira, overflow hidden) */
@media (max-width: 767px) {
  .horiz-gallery-section.home-projects-section { padding: 48px 0 32px; }
  .horiz-gallery-row {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    padding: 0 max(20px, env(safe-area-inset-right, 0px)) 0 max(20px, env(safe-area-inset-left, 0px));
    overflow: hidden;
  }
  .horiz-gallery-header-col {
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    box-shadow: none;
    z-index: 1;
  }
  .horiz-gallery-section .horiz-gallery-outer {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    padding-left: 0;
    overflow: hidden;
  }
  .horiz-gallery-section .horiz-gallery-wrapper {
    display: flex;
    width: 100%;
    min-height: 0;
    overflow: hidden;
  }
  .horiz-gallery-strip {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    padding: 4px 0 12px;
    align-items: stretch;
  }
  .horiz-gallery-section .project-wrap {
    width: 82vw;
    min-width: 268px;
    max-width: 320px;
    padding: 0;
  }
  .horiz-gallery-cta {
    margin-top: 18px;
  }
}

/* ============================================
   Wave Intro
   ============================================ */
.wave-intro-section { position: relative; padding: 100px 0; background: #0c0c0b; overflow: hidden; }

/* Puente de color + mensaje: #161616 (#mws-preshow) → #050608 (scrolly hero) */
.wave-to-preshow-gradient {
  width: 100%;
  min-height: clamp(240px, 32vh, 380px);
  padding: clamp(2.75rem, 7vw, 5rem) clamp(1.5rem, 5vw, 3rem);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #161616 0%, #0a0c0e 55%, #050608 100%);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: crosshair;
}
@media (prefers-reduced-motion: reduce) {
  .wave-to-preshow-gradient {
    cursor: auto;
  }
}
.wave-to-preshow-fx-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 0;
}
.wave-to-preshow-inner {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  margin: 0 auto;
  text-wrap: balance;
}
@media (min-width: 900px) {
  .wave-to-preshow-gradient {
    text-align: left;
    justify-content: flex-start;
  }
  .wave-to-preshow-inner {
    margin-left: max(1.5rem, 5vw);
    margin-right: auto;
  }
}
.wave-to-preshow-kicker {
  margin: 0 0 1.35rem;
}
.wave-to-preshow-kicker-inner {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--mws-green);
  padding: 0.55rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 255, 0, 0.45);
  background: linear-gradient(180deg, rgba(201, 255, 0, 0.14) 0%, rgba(201, 255, 0, 0.04) 100%);
  box-shadow: 0 0 32px rgba(201, 255, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.wave-to-preshow-headline {
  font-family: var(--font-primary);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: inherit;
  gap: 0.15em;
}
@media (min-width: 900px) {
  .wave-to-preshow-headline {
    align-items: flex-start;
  }
}
@media (max-width: 899px) {
  .wave-to-preshow-headline {
    align-items: center;
  }
}
.wave-to-preshow-line1 {
  display: block;
  font-size: clamp(0.95rem, 2.4vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.wave-to-preshow-line3 {
  display: block;
  font-size: clamp(2.35rem, 8vw, 4.25rem);
  color: #f4f4f2;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.45);
}
.wave-to-preshow-connector {
  font-weight: 700;
  margin-right: 0.2em;
  color: rgba(255, 255, 255, 0.88);
}
.wave-to-preshow-accent {
  font-style: normal;
  background: linear-gradient(118deg, #f5ff9a 0%, #c9ff00 38%, #9fcc00 88%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  filter: drop-shadow(0 0 28px rgba(201, 255, 0, 0.45));
}
.wave-to-preshow-sub {
  font-family: var(--font-secondary);
  font-size: clamp(1rem, 2.35vw, 1.2rem);
  line-height: 1.7;
  margin: 0;
  max-width: 38em;
  color: rgba(220, 220, 218, 0.78);
  border-left: 3px solid rgba(201, 255, 0, 0.55);
  padding-left: 1.25rem;
  text-align: left;
}
@media (max-width: 899px) {
  .wave-to-preshow-sub {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border-left: none;
    border-top: 3px solid rgba(201, 255, 0, 0.45);
    padding-left: 0;
    padding-top: 1.1rem;
  }
}
.wave-to-preshow-sub-lead {
  font-family: var(--font-primary);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05em;
}
.wave-to-preshow-sub-rest {
  font-weight: 400;
}
.wave-to-preshow-sub-rest em {
  font-style: normal;
  color: var(--mws-green);
  font-weight: 600;
}
.wave-intro-background { position: absolute; inset: 0; pointer-events: none; }
.wave-intro-line { position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent 0%, rgba(201,255,0,0.2) 50%, transparent 100%); }
.wave-intro-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.wave-intro-eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mws-green); display: block; margin-bottom: 16px; }
.wave-intro-title { font-family: var(--font-primary); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; line-height: 1.2; margin-bottom: 24px; }
.wave-intro-title .accent { color: var(--mws-green); display: block; }
.wave-intro-text { font-size: 0.9rem; color: rgba(213,213,213,0.7); line-height: 1.7; margin-bottom: 32px; }
.wave-intro-cta { display: inline-flex; align-items: center; gap: 8px; color: var(--mws-green); font-weight: 600; font-size: 0.9rem; border-bottom: 1px solid rgba(201,255,0,0.3); padding-bottom: 2px; transition: border-color 0.2s; }
.wave-intro-cta:hover { border-color: var(--mws-green); }
.wave-intro-video-shell { border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); aspect-ratio: 16/9; background: #111; }
.wave-intro-video { width: 100%; height: 100%; object-fit: cover; }
/* Shader WebGL (scroll velocity): el <video> alimenta la textura; el canvas se ve encima */
.wave-intro-gl-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
}
.wave-intro-video-shell--gl .wave-intro-video--source {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.wave-intro-video-shell--gl.wave-intro-video-shell--gl-active .wave-intro-video--source {
  opacity: 0;
  pointer-events: none;
}
.wave-intro-video-shell--gl .wave-intro-gl-frame canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
  z-index: 1;
  border-radius: inherit;
}

/* ============================================
   Services Bento
   ============================================ */
.services-preview-section { padding: 100px 0; background: var(--mws-black); }
.services-preview-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.services-bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 48px; }
.service-bento-card { position: relative; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 32px 28px; overflow: hidden; display: flex; flex-direction: column; gap: 12px; transition: all 0.3s; cursor: pointer; }
.service-bento-card:hover { border-color: rgba(201,255,0,0.25); transform: translateY(-4px); background: rgba(201,255,0,0.03); }
.service-bento-card::before { content:''; position:absolute; inset:0; border-radius:16px; background: radial-gradient(circle at 0% 0%, var(--card-primary,rgba(201,255,0,0.1)) 0%, transparent 60%); opacity:0; transition:opacity 0.4s; pointer-events:none; }
.service-bento-card:hover::before { opacity: 1; }
.service-bento-icon { font-size: 1.6rem; color: var(--card-primary, var(--mws-green)); }
.service-bento-title { font-family: var(--font-primary); font-size: 1rem; font-weight: 700; line-height: 1.3; }
.service-bento-desc { font-size: 0.82rem; color: rgba(213,213,213,0.6); line-height: 1.6; flex: 1; }
.service-bento-arrow { margin-top: auto; color: rgba(201,255,0,0.5); transition: color 0.2s, transform 0.2s; }
.service-bento-card:hover .service-bento-arrow { color: var(--mws-green); transform: translate(4px, -4px); }
.services-preview-cta { text-align: center; }

/* ============================================
   Automations Gallery
   ============================================ */
.automations-gallery-section { padding: 100px 0; background: #0c0c0b; }
.automations-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.automations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
.automation-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; padding: 28px; transition: all 0.3s; display: flex; flex-direction: column; gap: 12px; }
.automation-card:hover { border-color: rgba(201,255,0,0.2); transform: translateY(-4px); }
.automation-card--bots { border-left: 3px solid rgba(201,255,0,0.4); }
.automation-card--workflows { border-left: 3px solid rgba(0,150,255,0.3); }
.automation-card--support { border-left: 3px solid rgba(255,150,0,0.3); }
.automation-card--dashboards { border-left: 3px solid rgba(150,100,255,0.3); }
.automation-category { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mws-green); }
.automation-card-title { font-family: var(--font-primary); font-size: 0.95rem; font-weight: 700; line-height: 1.3; }
.automation-card-desc { font-size: 0.82rem; color: rgba(213,213,213,0.6); line-height: 1.6; flex: 1; }
.automation-card-footer { margin-top: auto; }
.automation-card-cta { font-size: 0.8rem; font-weight: 600; color: var(--mws-green); transition: gap 0.2s; }

/* ============================================
   Bento Gallery (GSAP Flip)
   ============================================ */
.bento-gallery-section {
  padding: 100px 0 0;
  margin-bottom: 0;
  background: var(--mws-black);
}
.bento-gallery-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.bento-gallery-fullbleed {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  margin-top: 40px;
}
.gallery-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gallery-wrap .gallery {
  position: relative;
  width: 100%;
  height: 100%;
  flex: none;
}
.gallery__item {
  background-position: 50% 50%;
  background-size: cover;
  flex: none;
  position: relative;
  overflow: hidden;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery--bento {
  display: grid;
  gap: 1vh;
  grid-template-columns: repeat(3, 32.5vw);
  grid-template-rows: repeat(4, 23vh);
  justify-content: center;
  align-content: center;
}
.gallery--final.gallery--bento {
  grid-template-columns: repeat(3, 100vw);
  grid-template-rows: repeat(4, 49.5vh);
  gap: 1vh;
}
/* grid-area como el demo (item 4 y 5 corregidos: /3/3 y /3/3 serÃ­an altura 0) */
.gallery--bento .gallery__item:nth-child(1) { grid-area: 1 / 1 / 3 / 2; }
.gallery--bento .gallery__item:nth-child(2) { grid-area: 1 / 2 / 2 / 3; }
.gallery--bento .gallery__item:nth-child(3) { grid-area: 2 / 2 / 4 / 3; }
.gallery--bento .gallery__item:nth-child(4) { grid-area: 1 / 3 / 3 / 4; }
.gallery--bento .gallery__item:nth-child(5) { grid-area: 3 / 1 / 4 / 2; }
.gallery--bento .gallery__item:nth-child(6) { grid-area: 3 / 3 / 5 / 4; }
.gallery--bento .gallery__item:nth-child(7) { grid-area: 4 / 1 / 5 / 2; }
.gallery--bento .gallery__item:nth-child(8) { grid-area: 4 / 2 / 5 / 3; }
.bento-gallery-copy {
  margin-top: 32px;
  max-width: 760px;
}
.bento-gallery-copy p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(213,213,213,0.7);
}

@media (min-width: 768px) and (max-width: 900px) {
  .gallery--bento {
    grid-template-columns: repeat(3, 30vw);
    grid-template-rows: repeat(4, 20vh);
    gap: 0.8vh;
  }
  .gallery--final.gallery--bento {
    grid-template-columns: repeat(3, 100vw);
    grid-template-rows: repeat(4, 45vh);
    gap: 0.8vh;
  }
}

@media (max-width: 767px) {
  /* Sin Flip (JS <768): mismo patrÃ³n 3 columnas, tracks mÃ¡s pequeÃ±os */
  .gallery-wrap {
    height: auto;
    min-height: 70vh;
    max-height: none;
  }
  .gallery--bento {
    grid-template-columns: repeat(3, 27vw);
    grid-template-rows: repeat(4, min(16vh, 100px));
    gap: 0.6vh;
  }
  .gallery--final.gallery--bento {
    grid-template-columns: repeat(3, 100vw);
    grid-template-rows: repeat(4, min(40vh, 280px));
    gap: 0.6vh;
  }
}

/* ============================================
   Process Section
   ============================================ */
.process-section { padding: 100px 0; background: var(--mws-black); }
.process-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.process-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 60px; align-items: start; }
.process-steps-list { display: flex; flex-direction: column; gap: 0; }
.process-step { display: flex; gap: 20px; padding: 20px; border-radius: 12px; cursor: pointer; transition: background 0.25s; border-left: 3px solid transparent; }
.process-step--active { background: rgba(201,255,0,0.05); border-left-color: var(--mws-green); }
.process-step-num { font-family: var(--font-primary); font-size: 1.8rem; font-weight: 900; color: rgba(201,255,0,0.2); line-height: 1; min-width: 40px; transition: color 0.25s; }
.process-step--active .process-step-num { color: var(--mws-green); }
.process-step-title { font-family: var(--font-primary); font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.process-step-desc { font-size: 0.82rem; color: rgba(213,213,213,0.6); line-height: 1.6; }
.process-image-panel { position: sticky; top: 100px; }
.process-image-slide { display: none; border-radius: 16px; overflow: hidden; position: relative; }
.process-image-slide--active { display: block; }
.process-image-slide img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.process-image-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%); }
.process-image-overlay h4 { font-family: var(--font-primary); font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.process-image-overlay p { font-size: 0.8rem; color: rgba(213,213,213,0.65); }

/* ============================================
   Trabajemos juntos (scroll horizontal + chars)
   ============================================ */
.together-horizontal {
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  /* Mismo fondo que reseÃ±as: sin â€œfranjaâ€ gris distinta al soltar el pin */
  background: #0c0c0b;
  border-top: none;
  border-bottom: none;
}
/* ScrollTrigger pin-spacer es transparente: sin esto se ve el body (#1D1D1B) entre franjas */
.pin-spacer:has(#together-horizontal) {
  background: #0c0c0b;
}
.together-horizontal__container {
  width: 100%;
  max-width: 100%;
  padding: 0;
}
.together-horizontal__text.heading-xl {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  white-space: nowrap;
  /* Empieza exactamente a mitad de pantalla: al entrar se ve la segunda mitad del texto */
  padding-left: 50vw;
  margin: 0;
  font-family: var(--font-primary, 'Montserrat', system-ui, sans-serif);
  font-size: clamp(2rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: rgba(255,255,255,0.94);
  letter-spacing: -0.02em;
}
.together-horizontal__char {
  display: inline-block;
  flex-shrink: 0;
  will-change: transform;
}
.together-horizontal__char--space {
  width: 0.35em;
}

@media (max-width: 600px) {
  .together-horizontal__text.heading-xl {
    font-size: clamp(1.5rem, 7vw, 2.4rem);
    padding-left: 50vw;
  }
}

/* Menos aire vacÃ­o entre franja horizontal y reseÃ±as */
.google-reviews-section.testimonials-section {
  padding-top: clamp(20px, 3vh, 48px);
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-section { padding: 100px 0; background: #0c0c0b; overflow: hidden; }
.testimonials-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.testimonials-track-wrap { overflow: hidden; margin: 48px 0; }
.testimonials-track { display: flex; gap: 0; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); will-change: transform; margin: 0; }
.testimonial-card { flex: 0 0 100%; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; padding: 40px; display: flex; flex-direction: column; gap: 24px; }
/* ReseÃ±as: cartas mÃ¡s chicas + margen entre ellas (desktop) */
.google-reviews-section .testimonials-track {
  gap: 28px;
}
.google-reviews-section .testimonial-card.google-review-card {
  flex: 0 0 min(420px, calc(100vw - 96px));
  max-width: min(420px, calc(100vw - 96px));
  padding: 26px 28px;
  border-radius: 16px;
  gap: 14px;
}
/* MÃ³vil: una reseÃ±a = ancho del carrusel (sin hueco al pasar; el JS fija px en cada card) */
@media (max-width: 768px) {
  .google-reviews-section .testimonials-track {
    gap: 0;
  }
  .google-reviews-section .testimonial-card.google-review-card {
    flex-shrink: 0;
    box-sizing: border-box;
  }
}
.google-reviews-section .testimonial-text { font-size: 0.92rem; line-height: 1.65; }
.google-reviews-section .testimonial-avatar { width: 40px; height: 40px; font-size: 0.75rem; }
.testimonial-text { font-size: 1rem; line-height: 1.7; color: rgba(213,213,213,0.85); font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--mws-green); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 0.8rem; color: var(--mws-black); flex-shrink: 0; font-family: var(--font-primary); }
.testimonial-name { display: block; font-weight: 700; font-size: 0.9rem; }
.testimonial-role { font-size: 0.8rem; color: rgba(213,213,213,0.5); }
.testimonial-metrics { display: flex; gap: 24px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06); }
.testimonial-metric-value { display: block; font-family: var(--font-primary); font-size: 1.5rem; font-weight: 900; color: var(--mws-green); }
.testimonial-metric-label { font-size: 0.75rem; color: rgba(213,213,213,0.55); }
.testimonials-nav { display: flex; justify-content: center; gap: 16px; }
.testimonials-btn { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); color: rgba(213,213,213,0.7); width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; }
.testimonials-btn:hover { border-color: var(--mws-green); color: var(--mws-green); }

/* ReseÃ±as Google (home) */
.google-reviews-section .section-header { max-width: 640px; }
.google-reviews-intro { margin-top: 0; margin-bottom: 20px; }
.google-reviews-summary {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}
.google-reviews-summary-stars {
  color: #fbbc04;
  font-size: 1rem;
  letter-spacing: 2px;
  line-height: 1;
}
.google-reviews-summary-text { font-size: 0.88rem; color: rgba(213,213,213,0.75); }
.google-reviews-summary-text strong { color: #fff; font-weight: 800; }
.google-review-card { gap: 16px; }
.google-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(213,213,213,0.55);
  letter-spacing: 0.02em;
}
.google-review-g { flex-shrink: 0; }
.google-review-stars {
  display: flex;
  gap: 2px;
  font-size: 1.15rem;
  line-height: 1;
  letter-spacing: 0;
}
.google-review-star { color: rgba(251,188,4,0.28); }
.google-review-star--on { color: #fbbc04; }
.google-review-text { margin: 0; }
.google-review-footer { margin-top: auto; }
.google-review-date { display: block; }
.google-review-avatar { background: rgba(255,255,255,0.08); color: rgba(213,213,213,0.9); }
.google-reviews-cta-wrap { text-align: center; margin-top: 28px; margin-bottom: 0; }
.google-reviews-cta { display: inline-flex; }

/* ============================================
   Section Header shared
   ============================================ */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section-label { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mws-green); margin-bottom: 12px; }
.section-title { font-family: var(--font-primary); font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 900; line-height: 1.2; margin-bottom: 14px; }
.section-description { font-size: 0.9rem; color: rgba(213,213,213,0.65); line-height: 1.7; }
.btn-tertiary { background: transparent; border: 1px solid rgba(255,255,255,0.1); color: rgba(213,213,213,0.7); padding: 12px 24px; border-radius: 8px; font-weight: 600; font-size: 0.85rem; transition: all 0.2s; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; }
.btn-tertiary:hover { border-color: rgba(201,255,0,0.3); color: var(--mws-green); }

/* ============================================
   Project Detail â€” Shared
   ============================================ */
.project-detail { --primary-color: var(--mws-green); }
.pd-back { padding: 20px 24px; position: relative; z-index: 10; }
.pd-back-btn { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: rgba(213,213,213,0.7); transition: color 0.2s; }
.pd-back-btn:hover { color: var(--mws-green); }
.pd-back-btn--light { color: rgba(255,255,255,0.8); }
.pd-cta-row { display: flex; gap: 16px; justify-content: center; padding: 60px 24px; flex-wrap: wrap; }
.btn-outline { background: transparent; border: 1px solid rgba(255,255,255,0.15); color: rgba(213,213,213,0.8); padding: 13px 28px; border-radius: 8px; font-weight: 600; font-size: 0.85rem; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-outline:hover { border-color: rgba(201,255,0,0.4); color: var(--mws-green); }
.pd-not-found { text-align: center; padding: 120px 24px; }

/* â”€â”€â”€â”€â”€â”€ ECOMMERCE theme â”€â”€â”€â”€â”€â”€ */
.theme-ecommerce { background: #0a0a0a; min-height: 100vh; }
.ec-orb { position: fixed; border-radius: 50%; pointer-events: none; filter: blur(100px); z-index: 0; }
.ec-orb-1 { width: 500px; height: 500px; background: rgba(201,255,0,0.06); top: -100px; right: -200px; }
.ec-orb-2 { width: 400px; height: 400px; background: rgba(0,100,255,0.04); bottom: 200px; left: -100px; }
.ec-hero { position: relative; height: 70vh; min-height: 500px; overflow: hidden; }
.ec-hero-media { position: absolute; inset: 0; }
.ec-hero-overlay {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.ec-hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 100%);
  pointer-events: none;
  z-index: 1;
}
.ec-hero-overlay > .ec-hero-zoom {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.ec-hero-overlay > .ec-hero-zoom > .ec-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}
.ec-hero-content { position: absolute; bottom: 48px; left: 48px; right: 48px; z-index: 2; }
.ec-badge { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mws-green); background: rgba(201,255,0,0.1); border: 1px solid rgba(201,255,0,0.2); padding: 4px 12px; border-radius: 20px; display: inline-block; margin-bottom: 14px; }
.ec-title { font-size: clamp(2rem,5vw,4rem); font-weight: 900; font-family: var(--font-primary); color: #fff; line-height: 1.1; margin-bottom: 14px; }
.ec-meta { display: flex; gap: 16px; }
.ec-meta-item { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.ec-meta-year { color: var(--mws-green); }
.ec-features-pin { padding: 60px 24px; overflow: hidden; }
.ec-features-tube-wrap { overflow: hidden; margin-bottom: 32px; }
.ec-features-tube { display: flex; flex-direction: column; gap: 0; }
.ec-tube-line { font-size: clamp(2.5rem,6vw,5rem); font-weight: 900; font-family: var(--font-primary); color: transparent; -webkit-text-stroke: 1px rgba(201,255,0,0.15); white-space: nowrap; line-height: 1.1; }
.ec-tube-line--2 { color: rgba(201,255,0,0.06); -webkit-text-stroke: 1px rgba(201,255,0,0.2); }
.ec-tube-line--3 { -webkit-text-stroke: 1px rgba(201,255,0,0.08); }
.ec-features-track { display: flex; gap: 20px; overflow-x: auto; padding: 16px 0 24px; cursor: grab; scrollbar-width: none; }
.ec-features-track::-webkit-scrollbar { display: none; }
.ec-feature-card { flex: 0 0 280px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 24px; display: flex; flex-direction: column; gap: 14px; transition: border-color 0.3s; }
.ec-feature-card:hover { border-color: rgba(201,255,0,0.25); }
.ec-feature-img-wrap { border-radius: 10px; overflow: hidden; height: 140px; }
.ec-feature-img { width: 100%; height: 100%; object-fit: cover; }
.ec-feature-num { font-family: var(--font-primary); font-size: 1.5rem; font-weight: 900; color: rgba(201,255,0,0.2); }
.ec-feature-check { color: var(--mws-green); }
.ec-feature-text { font-size: 0.85rem; color: rgba(213,213,213,0.75); line-height: 1.5; }
.ec-tech-section { padding: 60px 24px; }
.ec-container { max-width: 1100px; margin: 0 auto; }
.ec-section-heading { font-size: 1.8rem; font-weight: 900; margin-bottom: 28px; font-family: var(--font-primary); }
.ec-tech-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.ec-tech-tag { background: rgba(201,255,0,0.06); border: 1px solid rgba(201,255,0,0.15); color: rgba(213,213,213,0.8); padding: 6px 16px; border-radius: 20px; font-size: 0.82rem; }

/* â”€â”€â”€â”€â”€â”€ ERP theme â”€â”€â”€â”€â”€â”€ */
.theme-erp { background: #08080d; min-height: 100vh; }
.erp-lateral { position: fixed; left: 20px; top: 50%; transform: translateY(-50%); z-index: 100; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.erp-progress-track { width: 2px; height: 80px; background: rgba(255,255,255,0.06); border-radius: 1px; position: relative; margin-bottom: 8px; }
.erp-progress-fill { position: absolute; top: 0; left: 0; right: 0; background: var(--mws-green); transition: height 0.4s ease; border-radius: 1px; height: 0; }
.erp-nav-dot { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.erp-dot-ring { width: 10px; height: 10px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.2); transition: all 0.3s; }
.erp-nav-dot.active .erp-dot-ring { border-color: var(--mws-green); background: var(--mws-green); }
.erp-dot-label { font-size: 0.7rem; color: rgba(213,213,213,0.4); opacity: 0; transition: opacity 0.2s; white-space: nowrap; }
.erp-nav-dot:hover .erp-dot-label { opacity: 1; }
.erp-wrapper { padding-left: 60px; }
.erp-section { min-height: 100vh; display: flex; align-items: center; padding: 80px 48px; }
.erp-section:not(.erp-hero-section) {
  min-height: auto;
  align-items: flex-start;
  padding: 56px 48px;
}
.erp-hero-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.erp-badge { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mws-green); display: block; margin-bottom: 16px; }
.erp-title { font-size: clamp(2.5rem,5vw,4rem); font-weight: 900; font-family: var(--font-primary); color: #fff; line-height: 1.1; }
.erp-meta { display: flex; gap: 16px; margin-top: 16px; }
.erp-meta span { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.erp-hero-reveal {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.erp-hero-reveal .erp-hero-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.erp-section-title { font-size: 1.8rem; font-weight: 900; font-family: var(--font-primary); margin-bottom: 24px; }
.erp-desc-text { font-size: 0.9rem; color: rgba(213,213,213,0.7); line-height: 1.7; margin-bottom: 32px; }
.erp-data-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 4px; margin-top: 12px; }
.erp-grid-item { background: rgba(201,255,0,0.04); border: 1px solid rgba(201,255,0,0.08); border-radius: 4px; padding: 6px 4px; text-align: center; font-family: monospace; font-size: 0.8rem; color: rgba(201,255,0,0.4); }
.erp-features-list { display: flex; flex-direction: column; gap: 16px; }
.erp-feature-item { display: flex; gap: 20px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.erp-feature-idx { font-family: var(--font-primary); font-size: 1.2rem; font-weight: 900; color: var(--mws-green); min-width: 36px; }
.erp-feature-text { font-size: 0.9rem; color: rgba(213,213,213,0.75); line-height: 1.5; }
.erp-tech-list { display: flex; flex-wrap: wrap; gap: 12px; }
.erp-tech-item { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 8px; padding: 10px 18px; }
.erp-tech-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mws-green); }

/* =========================================================
   ABOUT — Scroll showcase (Empresa, Misión, Visión, Equipo)
========================================================= */
.about-scroll-showcase {
  position: relative;
  height: 100vh;
  margin: 0;
  overflow: hidden;
  background: #030303;
}

.about-scroll-stage {
  position: relative;
  width: 100%;
  height: 100%;
}

.about-scroll-panel {
  position: absolute;
  inset: 0;
  visibility: hidden;
}

.about-scroll-panel .outer,
.about-scroll-panel .inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.about-scroll-panel .bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5vw;
  background-size: cover;
  background-position: center;
}

.about-scroll-panel .section-heading {
  margin: 0;
  max-width: 1100px;
  width: 100%;
  text-align: center;
  font-family: var(--font-primary);
  font-size: clamp(1.6rem, 5vw, 5rem);
  line-height: 1.1;
  color: #fff;
  text-transform: none;
  letter-spacing: -0.02em;
}

.about-scroll-panel .section-heading .char {
  display: inline-block;
  will-change: transform, opacity;
}

.about-scroll-panel .bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.52) 12%, rgba(0,0,0,0.72) 100%);
}

.about-scroll-panel .section-heading {
  position: relative;
  z-index: 1;
}

/* Fondos: fotos cinematográficas (Unsplash). Sustituir por /static/images/about/*.png si quieres alojarlas locales. */
.about-scroll-panel.panel-empresa .bg {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.5), rgba(0,0,0,0.7)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=85"),
    linear-gradient(125deg, rgba(201,255,0,0.22), rgba(0,0,0,0) 50%),
    radial-gradient(circle at 20% 20%, rgba(35,130,255,0.35), rgba(0,0,0,0) 45%),
    linear-gradient(135deg, #0b0b0b, #171717);
}

.about-scroll-panel.panel-mision .bg {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.5), rgba(0,0,0,0.7)),
    url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1920&q=85"),
    linear-gradient(145deg, rgba(201,255,0,0.18), rgba(0,0,0,0) 48%),
    radial-gradient(circle at 78% 30%, rgba(255,140,0,0.25), rgba(0,0,0,0) 40%),
    linear-gradient(160deg, #0b1016, #111827);
}

.about-scroll-panel.panel-vision .bg {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.5), rgba(0,0,0,0.7)),
    url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1920&q=85"),
    linear-gradient(135deg, rgba(0,191,255,0.22), rgba(0,0,0,0) 52%),
    radial-gradient(circle at 25% 68%, rgba(201,255,0,0.18), rgba(0,0,0,0) 36%),
    linear-gradient(145deg, #111827, #030712);
}

.about-scroll-panel.panel-equipo .bg {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.5), rgba(0,0,0,0.7)),
    url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1920&q=85"),
    linear-gradient(125deg, rgba(201,255,0,0.2), rgba(0,0,0,0) 45%),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.12), rgba(0,0,0,0) 30%),
    linear-gradient(140deg, #0f172a, #111111);
}

@media (max-width: 900px) {
  .about-scroll-showcase {
    height: 72vh;
    min-height: 520px;
  }

  .about-scroll-panel .section-heading {
    font-size: clamp(1.35rem, 8vw, 2.4rem);
    line-height: 1.2;
  }
}

/* â”€â”€â”€â”€â”€â”€ MOBILE theme â”€â”€â”€â”€â”€â”€ */
.theme-mobile { background: #06060f; min-height: 100vh; }
.mob-glow { position: fixed; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(120,60,255,0.1) 0%, transparent 60%); pointer-events: none; }
.mob-hero { position: relative; height: 80vh; overflow: hidden; }
.mob-hero-inner { position: absolute; inset: 0; }
.mob-hero-overlay {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.mob-hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,6,15,0.95) 0%, rgba(6,6,15,0.3) 100%);
  pointer-events: none;
  z-index: 1;
}
.mob-hero-reveal {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.mob-hero-reveal > .mob-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}
.mob-hero-content { position: absolute; bottom: 60px; left: 48px; right: 48px; z-index: 2; }
.mob-badge { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #a78bfa; background: rgba(167,139,250,0.1); border: 1px solid rgba(167,139,250,0.2); padding: 4px 12px; border-radius: 20px; display: inline-block; margin-bottom: 12px; }
.mob-title { font-size: clamp(2rem,5vw,3.5rem); font-weight: 900; font-family: var(--font-primary); color: #fff; line-height: 1.1; margin-bottom: 12px; }
.mob-meta { display: flex; gap: 16px; }
.mob-meta span { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.mob-showcase { padding: 60px 0; }
.mob-container { max-width: 1100px; margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.mob-section-title { font-size: 1.5rem; font-weight: 900; font-family: var(--font-primary); margin-bottom: 20px; }
.mob-desc { font-size: 0.9rem; color: rgba(213,213,213,0.7); line-height: 1.7; }
.mob-phone { width: 160px; background: #12121f; border-radius: 24px; border: 1px solid rgba(167,139,250,0.2); padding: 12px 8px; box-shadow: 0 0 60px rgba(120,60,255,0.15); }
.mob-phone-notch { width: 50px; height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; margin: 0 auto 10px; }
.mob-phone-screen { border-radius: 16px; overflow: hidden; aspect-ratio: 9/16; }
.mob-phone-img { width: 100%; height: 100%; object-fit: cover; }
.mob-waypoints { display: flex; gap: 40px; justify-content: center; padding: 24px; }
.mob-waypoint { width: 6px; height: 6px; border-radius: 50%; background: rgba(167,139,250,0.4); }
.mob-features { padding: 40px 0; }
.mob-features .mob-container, .mob-tech .mob-container { display: block; }
.mob-features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.mob-feature { display: flex; align-items: flex-start; gap: 12px; padding: 16px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; }
.mob-feature-icon { color: #a78bfa; flex-shrink: 0; margin-top: 2px; }
.mob-feature span { font-size: 0.85rem; color: rgba(213,213,213,0.75); }
.mob-tech { padding: 40px 0 80px; }
.mob-tech-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.mob-tech-tag { background: rgba(167,139,250,0.06); border: 1px solid rgba(167,139,250,0.15); color: rgba(213,213,213,0.8); padding: 6px 16px; border-radius: 20px; font-size: 0.82rem; }

/* â”€â”€â”€â”€â”€â”€ ANALYTICS theme â”€â”€â”€â”€â”€â”€ */
.theme-analytics { background: #050810; min-height: 100vh; }
.an-matrix { position: fixed; inset: 0; display: grid; grid-template-columns: repeat(10, 1fr); align-content: start; gap: 8px; padding: 16px; pointer-events: none; overflow: hidden; z-index: 0; }
.an-matrix-cell { font-family: monospace; font-size: 0.65rem; color: rgba(0,200,100,0.15); text-align: center; line-height: 1.6; }
.an-nav, .an-hero, .an-desc-section, .an-features-section, .an-tech { position: relative; z-index: 1; }
.an-hero { position: relative; height: 80vh; overflow: hidden; }
.an-shader-overlay { position: absolute; inset: 0; background: repeating-linear-gradient(0deg,rgba(0,200,100,0.02) 0px,transparent 2px,transparent 4px); z-index: 1; pointer-events: none; }
.an-hero-media-slot {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.an-hero-media-slot > .an-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.an-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,8,16,0.95) 0%, rgba(5,8,16,0.4) 100%); z-index: 1; }
.an-hero-content { position: absolute; bottom: 60px; left: 48px; right: 48px; z-index: 2; }
.an-badge { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #00c864; background: rgba(0,200,100,0.08); border: 1px solid rgba(0,200,100,0.2); padding: 4px 12px; border-radius: 20px; display: inline-block; margin-bottom: 12px; }
.an-title { font-size: clamp(2rem,5vw,3.5rem); font-weight: 900; font-family: var(--font-primary); color: #fff; line-height: 1.1; margin-bottom: 12px; }
.an-meta { display: flex; gap: 16px; margin-bottom: 16px; }
.an-meta span { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.an-waypoints { display: flex; gap: 12px; }
.an-waypoint { width: 5px; height: 5px; border-radius: 50%; background: rgba(0,200,100,0.4); }
.an-desc-section, .an-features-section, .an-tech { padding: 60px 48px; }
.an-container { max-width: 1100px; margin: 0 auto; }
.an-section-title { font-size: 1.6rem; font-weight: 900; font-family: var(--font-primary); margin-bottom: 24px; color: #fff; }
.an-desc { font-size: 0.9rem; color: rgba(213,213,213,0.7); line-height: 1.7; }
.an-timeline-track { position: relative; padding-left: 32px; display: flex; flex-direction: column; gap: 24px; }
.an-track-svg { position: absolute; left: 0; top: 0; bottom: 0; width: 2px; height: 100%; }
.an-timeline-item { display: flex; gap: 20px; align-items: flex-start; }
.an-tl-dot { width: 28px; height: 28px; border-radius: 50%; background: rgba(0,200,100,0.1); border: 1px solid rgba(0,200,100,0.3); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; color: #00c864; flex-shrink: 0; }
.an-tl-content { font-size: 0.85rem; color: rgba(213,213,213,0.75); padding-top: 4px; }
.an-tech-row { display: flex; flex-wrap: wrap; gap: 10px; }
.an-tech-chip { background: rgba(0,200,100,0.05); border: 1px solid rgba(0,200,100,0.15); color: rgba(213,213,213,0.8); padding: 7px 18px; border-radius: 20px; font-size: 0.82rem; }

/* â”€â”€â”€â”€â”€â”€ BOOKING theme â”€â”€â”€â”€â”€â”€ */
.theme-booking { background: #08080e; min-height: 100vh; }
.bk-deco { position: fixed; top: 20%; right: 10%; pointer-events: none; z-index: 0; }
.bk-cal-ring { width: 200px; height: 200px; border-radius: 50%; border: 1px solid rgba(99,102,241,0.15); }
.bk-pulse { position: absolute; inset: -20px; border-radius: 50%; border: 1px solid rgba(99,102,241,0.08); }
.bk-nav, .bk-hero, .bk-desc-section, .bk-features-section, .bk-tech { position: relative; z-index: 1; }
.bk-hero { position: relative; height: 75vh; overflow: hidden; }
.bk-hero-media { position: absolute; inset: 0; }
.bk-hero-overlay {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.bk-hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,14,0.95) 0%, rgba(8,8,14,0.3) 100%);
  pointer-events: none;
  z-index: 1;
}
.bk-hero-overlay > .bk-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}
.bk-hero-content { position: absolute; bottom: 60px; left: 48px; right: 48px; z-index: 2; }
.bk-badge { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #6366f1; background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.2); padding: 4px 12px; border-radius: 20px; display: inline-block; margin-bottom: 12px; }
.bk-hero-title { font-size: clamp(2rem,5vw,3.5rem); font-weight: 900; font-family: var(--font-primary); color: #fff; line-height: 1.1; }
.bk-meta { display: flex; gap: 16px; margin-top: 12px; }
.bk-meta span { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.bk-desc-section, .bk-features-section, .bk-tech { padding: 60px 48px; }
.bk-container { max-width: 1100px; margin: 0 auto; }
.bk-split-title { font-size: 1.6rem; font-weight: 900; font-family: var(--font-primary); margin-bottom: 20px; }
.bk-section-title { font-size: 1.6rem; }
.bk-desc-text { font-size: 0.9rem; color: rgba(213,213,213,0.7); line-height: 1.7; }
.bk-timeline { position: relative; padding-left: 24px; display: flex; flex-direction: column; gap: 0; }
.bk-timeline-line { position: absolute; left: 16px; top: 0; bottom: 0; width: 2px; background: rgba(99,102,241,0.2); transform-origin: top; }
.bk-timeline-item { display: flex; gap: 20px; padding: 20px 0; }
.bk-timeline-node { width: 34px; height: 34px; border-radius: 50%; background: rgba(99,102,241,0.1); border: 2px solid rgba(99,102,241,0.3); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; color: #6366f1; flex-shrink: 0; position: relative; z-index: 1; }
.bk-timeline-content p { font-size: 0.85rem; color: rgba(213,213,213,0.75); padding-top: 6px; }
.bk-tech-row { display: flex; flex-wrap: wrap; gap: 10px; }
.bk-tech-tag { background: rgba(99,102,241,0.06); border: 1px solid rgba(99,102,241,0.15); color: rgba(213,213,213,0.8); padding: 6px 16px; border-radius: 20px; font-size: 0.82rem; }

/* â”€â”€â”€â”€â”€â”€ CORPORATE theme â”€â”€â”€â”€â”€â”€ */
.theme-corporate { background: #0a0a0a; min-height: 100vh; }
.corp-panel { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.corp-hero-panel { padding: 0; }
.corp-hero-media { position: absolute; inset: 0; overflow: hidden; }
.corp-parallax-wrap { position: absolute; inset: -20%; will-change: transform; }
.corp-parallax-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.corp-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0.3) 100%); }
.corp-hero-content { position: relative; z-index: 2; padding: 60px; max-width: 600px; }
.corp-badge { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; opacity: 0.6; display: block; margin-bottom: 14px; }
.corp-hero-title { font-size: clamp(2.5rem,5vw,5rem); font-weight: 900; font-family: var(--font-primary); color: #fff; line-height: 1.05; margin-bottom: 16px; }
.corp-meta { display: flex; gap: 16px; }
.corp-meta span { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.corp-desc-panel { background: #f5f5f0; color: #1a1a1a; }
.corp-desc-panel .corp-container { max-width: 800px; }
.corp-features-panel { background: #111; }
.corp-tech-panel { background: #0a0a0a; }
.corp-container { max-width: 1100px; margin: 0 auto; padding: 80px 60px; width: 100%; }
.corp-nav { position: absolute; top: 0; left: 0; padding: 24px 40px; z-index: 10; }
.corp-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.4; display: block; margin-bottom: 32px; }
.corp-desc-panel .corp-label { opacity: 0.5; color: #1a1a1a; }
.corp-desc { font-size: 1.1rem; line-height: 1.8; }
.corp-desc-panel .corp-desc { color: #333; }
.corp-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.corp-feature-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 24px; }
.corp-feature-num { font-size: 2rem; font-weight: 900; font-family: var(--font-primary); color: rgba(255,255,255,0.08); margin-bottom: 10px; }
.corp-feature-text { font-size: 0.85rem; color: rgba(213,213,213,0.75); line-height: 1.6; }
.corp-tech-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.corp-tech-tag { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); color: rgba(213,213,213,0.8); padding: 7px 18px; border-radius: 20px; font-size: 0.82rem; }

/* ============================================
   Responsive updates
   ============================================ */
@media (max-width: 1024px) {
  .home-projects-grid { grid-template-columns: repeat(2, 1fr); }
  .home-project-card:nth-child(1) { grid-column: span 1; }
  .showcase-body { grid-template-columns: 1fr; }
  .wave-intro-container { grid-template-columns: 1fr; gap: 40px; }
  .process-layout { grid-template-columns: 1fr; }
  .process-image-panel { position: static; }
  .automations-grid { grid-template-columns: repeat(2, 1fr); }
  .services-bento-grid { grid-template-columns: repeat(2, 1fr); }
  .erp-hero-section { grid-template-columns: 1fr; }
  .erp-wrapper { padding-left: 0; }
  .erp-lateral { display: none; }
  .home-projects-header { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 768px) {
  .home-projects-grid { grid-template-columns: 1fr; }
  .automations-grid { grid-template-columns: 1fr; }
  .services-bento-grid { grid-template-columns: 1fr; }
  .corp-features-grid { grid-template-columns: 1fr; }
  .mob-features-grid { grid-template-columns: 1fr; }
  .mob-container { grid-template-columns: 1fr; }
  .mob-phone-wrap { display: none; }
  .ec-hero-content { left: 24px; right: 24px; bottom: 24px; }
  .an-hero-content, .bk-hero-content, .mob-hero-content { left: 24px; right: 24px; bottom: 32px; }
  .erp-section { padding: 60px 24px; }
  .erp-section:not(.erp-hero-section) {
    padding: 36px 24px;
  }
  .bk-desc-section, .bk-features-section, .bk-tech { padding: 40px 24px; }
  .an-desc-section, .an-features-section, .an-tech { padding: 40px 24px; }
  .corp-container { padding: 48px 24px; }
  .corp-hero-content { padding: 80px 24px 40px; }
  .hero-content { padding: 0 20px; }
  .showcase-container { padding: 0 20px; }
  .home-projects-container { padding: 0 20px; }
  .wave-intro-container { padding: 0 20px; }
  .services-preview-container { padding: 0 20px; }
  .automations-container { padding: 0 20px; }
  .process-container { padding: 0 20px; }
  .testimonials-container { padding: 0 20px; }
  .testimonials-track { overflow-x: hidden; }
  /* ReseÃ±as mÃ³vil: ancho por JS (una tarjeta = visor); solo estilos, no flex fijo */
  .google-reviews-section .testimonial-card.google-review-card {
    padding: 22px 20px;
  }
}

/* Móvil: menos aire vertical entre secciones (home / mismas clases en landings) */
@media (max-width: 767px) {
  .wave-to-preshow-gradient {
    min-height: clamp(160px, 22vh, 280px);
    padding: clamp(1.35rem, 5vw, 2rem) clamp(1rem, 4vw, 1.35rem);
  }
  .wave-to-preshow-kicker {
    margin-bottom: 0.75rem;
  }
  .wave-to-preshow-headline {
    margin-bottom: 1rem;
  }
  .wave-intro-section {
    padding: 48px 0;
  }
  .wave-intro-container {
    gap: 28px;
  }
  .wave-intro-title {
    margin-bottom: 16px;
  }
  .wave-intro-text {
    margin-bottom: 22px;
  }
  .services-showcase {
    padding: 48px 0;
  }
  .showcase-title {
    margin-bottom: 16px;
  }
  .showcase-pills {
    margin-bottom: 28px;
  }
  .services-preview-section {
    padding: 48px 0;
  }
  .services-bento-grid {
    margin-bottom: 32px;
  }
  .automations-gallery-section {
    padding: 48px 0;
  }
  .automations-grid {
    margin-top: 36px;
  }
  .stats-section {
    padding: 32px 16px;
  }
  .home-projects-section {
    padding: 48px 0;
  }
  .horiz-gallery-section.home-projects-section {
    padding: 40px 0 24px;
  }
  .process-section {
    padding: 48px 0;
  }
  .process-layout {
    margin-top: 32px;
    gap: 32px;
  }
  .testimonials-section {
    padding: 48px 0;
  }
  .google-reviews-section.testimonials-section {
    padding-top: clamp(12px, 2vh, 28px);
  }
  .gallery-wrap {
    min-height: 52vh;
  }
  .hero-brand {
    margin-bottom: 12px;
  }
  .hero-title {
    margin-bottom: 16px;
  }
  .hero-stats--compact {
    margin-bottom: 18px;
  }
  .scroll-indicator {
    margin-top: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* â”€â”€ Copy oficial internas de proyecto (paralelo Angular) â”€â”€ */
.project-detail .pd-official-block--default {
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem);
}
.project-detail .pd-official-inner {
  max-width: 52rem;
  margin: 0 auto;
}
.project-detail .pd-official-h2 {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 1.25rem;
  color: var(--primary-theme, var(--mws-green));
}
.theme-ecommerce .pd-official-h2 { color: #ff9140; }
.theme-erp .pd-official-h2 { color: #9fd2ff; }
.theme-mobile .pd-official-h2 { color: #d8c3ff; }
.theme-analytics .pd-official-h2 { color: #b7ffc2; }
.theme-booking .pd-official-h2 { color: #c9ffd6; }
.theme-corporate .pd-official-h2 { color: #d6def0; }
.project-detail .pd-official-h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 1.5rem 0 0.65rem;
  opacity: 0.95;
}
.project-detail .pd-official-p {
  margin: 0 0 1rem;
  line-height: 1.65;
  opacity: 0.92;
}
.project-detail .pd-official-preline {
  white-space: pre-line;
}
.project-detail .pd-official-results-list {
  margin: 0;
  padding-left: 1.25rem;
  line-height: 1.65;
}
.project-detail .pd-official-results-list li {
  margin-bottom: 0.65rem;
  list-style: disc;
}
.project-detail .pd-official-cta-section {
  padding-bottom: clamp(3rem, 8vw, 6rem);
}
.project-detail .pd-official-cta-btn {
  display: inline-flex;
  margin-top: 1.5rem;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  color: #0a0a0a;
  background: var(--mws-green);
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.2s ease;
}
.project-detail .pd-official-cta-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.ec-hero-subtitle,
.erp-hero-subtitle,
.mob-hero-subtitle,
.an-hero-subtitle,
.bk-hero-subtitle,
.corp-hero-subtitle {
  font-family: var(--font-secondary);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  max-width: 40rem;
  margin: 0.75rem 0 0;
  font-weight: 500;
}
.corp-case-h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
}
.ec-tech-intro,
.mob-tech-intro,
.an-tech-intro,
.erp-tech-intro,
.bk-tech-intro,
.corp-tech-intro {
  font-family: var(--font-secondary);
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 42rem;
  margin: 0 0 1.5rem;
}

/* ============================================
   Vista XL (≥1536px): más ancho útil; en 1920px Full HD reduce bandas laterales.
   No aplica por debajo de 1536px.
   ============================================ */
@media (min-width: 1536px) {
  .header-content,
  .footer-content,
  .footer-bottom-content {
    max-width: 1740px;
    padding-left: 48px;
    padding-right: 48px;
  }

  .hero-content {
    max-width: 1740px;
    padding-left: 48px;
    padding-right: 48px;
  }

  .hero-title {
    font-size: clamp(2.25rem, 4vw, 4.5rem);
  }

  .showcase-container,
  .wave-intro-container,
  .services-preview-container,
  .bento-gallery-container,
  .process-container,
  .automations-container,
  .testimonials-container,
  .stats-container {
    max-width: 1740px;
    padding-left: 48px;
    padding-right: 48px;
  }

  .wave-intro-container {
    gap: 96px;
  }

  .showcase-body {
    gap: 40px;
  }

  .section-header {
    max-width: 900px;
  }

  .faq-container {
    max-width: 920px;
  }

  .horiz-gallery-row {
    padding-left: max(48px, env(safe-area-inset-left, 0px));
    padding-right: max(48px, env(safe-area-inset-right, 0px));
    gap: 64px;
  }

  .horiz-gallery-header-col {
    width: min(520px, 36vw);
    max-width: 40%;
    min-width: 320px;
  }

  .horiz-gallery-section .project-wrap {
    max-width: 520px;
    width: 36vw;
    min-width: 320px;
  }

  .google-reviews-section .section-header {
    max-width: 780px;
  }

  .google-reviews-section .testimonial-card.google-review-card {
    flex: 0 0 min(480px, calc(100vw - 140px));
    max-width: min(480px, calc(100vw - 140px));
  }

  .bento-gallery-copy {
    max-width: 900px;
  }
}



