/* ==========================================================================
   UNOMASENLAOFICINA — STYLES.CSS
   Archivo único con todo el CSS del sitio.
   Estructura:
     1.  Variables
     2.  Reset & Base
     3.  Navegación
     4.  Componentes globales (botones, secciones, CTA, footer)
     5.  INDEX
     6.  LUZIA
     7.  CÓMO FUNCIONA
     8.  EJEMPLOS DE USO
     9.  HARDWARE
     10. PRECIOS
     11. FAQ
     12. CONTACTO
     13. QUIÉNES SOMOS
     14. TÉRMINOS
     15. Responsive — móvil
   ========================================================================== */


/* ==========================================================================
   1. VARIABLES
   ========================================================================== */
:root {
  --azul-oscuro: #1E2A5A;
  --azul-principal: #1565D8;
  --azul-claro: #56CCF2;
  --teal: #00897B;
  --text: #1E2A5A;
  --muted: #5a6a8a;
  --faint: #f0f4fb;
  --faint2: #f7f9fc;
  --border: #d6e0f0;
  --white: #ffffff;
  --ff-head: 'Poppins', sans-serif;
  --ff-body: 'Inter', sans-serif;
}


/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--white);
  font-size: 15px;
  line-height: 1.6;
}

hr { border: none; border-top: 0.5px solid var(--border); }


/* ==========================================================================
   3. NAVEGACIÓN
   ========================================================================== */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.25s, backdrop-filter 0.25s, border-color 0.25s;
}
nav.scrolled {
  background: rgba(20,28,75,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: 880px; margin: 0 auto;
  padding: 0.9rem 0rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 1px; text-decoration: none; }
.nav-logo img { height: 44px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a {
  font-size: 13px; color: rgba(255,255,255,0.75);
  text-decoration: none; transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a::after {
  content: ''; width: 4px; height: 4px;
  border-right: 1.5px solid rgba(255,255,255,0.5);
  border-bottom: 1.5px solid rgba(255,255,255,0.5);
  transform: rotate(45deg); margin-top: -2px; transition: transform 0.15s;
}
.nav-dropdown.open > a::after { transform: rotate(-135deg); margin-top: 2px; }

.dropdown-menu {
  position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: 10px; padding: 0.4rem 0; min-width: 180px;
  opacity: 0; pointer-events: none;
  transform: translateY(-4px); transition: all 0.18s;
  box-shadow: 0 8px 24px rgba(30,42,90,0.12);
}
.nav-dropdown.open .dropdown-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 0.5rem 1rem; font-size: 13px; color: var(--muted); text-decoration: none; }
.dropdown-menu a.active { color: var(--azul-principal); font-weight: 500; }
.dropdown-menu a:hover { color: var(--text); background: var(--faint); }

.nav-cta {
  font-size: 13px; padding: 7px 18px;
  background: var(--azul-principal); color: var(--white);
  border-radius: 6px; text-decoration: none;
  font-weight: 600; font-family: var(--ff-head);
}

.nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--white); margin: 4px 0; transition: all 0.2s; }


/* ==========================================================================
   4. COMPONENTES GLOBALES
   ========================================================================== */

/* --- Secciones --- */
.section { padding: 4rem 2rem; max-width: 880px; margin: 0 auto; }
.section-bg { padding: 4rem 2rem; background: var(--faint2); }
.section-bg-inner { max-width: 880px; margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--azul-principal);
  margin-bottom: 0.6rem; font-family: var(--ff-head);
}
.section-title {
  font-family: var(--ff-head);
  font-size: clamp(20px,2.8vw,28px); font-weight: 600;
  line-height: 1.25; margin-bottom: 0.75rem;
  letter-spacing: -0.02em; color: var(--azul-oscuro);
}
.section-intro {
  font-size: 15px; color: var(--muted);
  line-height: 1.75; max-width: 560px;
  margin-bottom: 2.5rem; font-weight: 300;
}

/* --- Botones --- */
.btn-primary {
  padding: 12px 26px; background: var(--azul-principal);
  color: var(--white); border-radius: 8px;
  font-size: 14px; font-weight: 500;
  text-decoration: none; font-family: var(--ff-head);
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-primary:hover { opacity: 0.88; }

.btn-ghost {
  padding: 12px 26px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85);
  border: 0.5px solid rgba(255,255,255,0.2);
  border-radius: 8px; font-size: 14px;
  text-decoration: none; font-family: var(--ff-body);
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); }

.btn-ghost-white {
  padding: 12px 26px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8);
  border: 0.5px solid rgba(255,255,255,0.2);
  border-radius: 8px; font-size: 14px;
  text-decoration: none; font-family: var(--ff-body);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.14); }

.btn-white {
  padding: 12px 28px; background: var(--white);
  color: var(--azul-oscuro); border-radius: 8px;
  font-size: 14px; font-weight: 600;
  text-decoration: none; font-family: var(--ff-head);
  display: inline-block;
}
.btn-white:hover { opacity: 0.9; }

/* --- Hero base (fondo oscuro — reutilizado en páginas internas) --- */
.hero-wrap {
  background: var(--azul-oscuro);
  position: relative; overflow: hidden;
  padding: 8rem 2rem 5rem;
}
.hero-bg {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
  background-size: 32px 32px;
}
.hero-inner { max-width: 880px; margin: 0 auto; position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--azul-claro);
  margin-bottom: 1.25rem; font-family: var(--ff-head);
}
.hero-eyebrow-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); }
.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(26px,4vw,44px); font-weight: 600;
  line-height: 1.18; color: var(--white);
  margin-bottom: 1rem; letter-spacing: -0.02em;
}
.hero-title em { font-style: normal; color: var(--azul-claro); }
.hero-sub {
  font-size: 15px; color: rgba(255,255,255,0.6);
  line-height: 1.75; max-width: 520px;
  font-weight: 300;
}
.hero-glow {
  position: absolute; pointer-events: none;
}

/* --- CTA final --- */
.cta-section {
  background: var(--azul-oscuro);
  padding: 5rem 2rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
  background-size: 32px 32px;
}
.cta-inner { position: relative; z-index: 2; }
.cta-pill {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--azul-claro); background: rgba(86,204,242,0.1);
  border: 0.5px solid rgba(86,204,242,0.2);
  padding: 5px 14px; border-radius: 20px;
  margin-bottom: 1.25rem; font-family: var(--ff-head);
}
.cta-title {
  font-family: var(--ff-head);
  font-size: clamp(22px,3.5vw,32px); font-weight: 600;
  color: var(--white); margin-bottom: 0.75rem;
  letter-spacing: -0.02em; line-height: 1.25;
}
.cta-sub {
  font-size: 15px; color: rgba(255,255,255,0.5);
  max-width: 400px; margin: 0 auto 2rem;
  line-height: 1.75; font-weight: 300;
}
.cta-note { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 1rem; }

/* --- Footer --- */
footer {
  background: var(--azul-oscuro); color: rgba(255,255,255,0.7);
  padding: 3rem 2rem 2rem;
  border-top: 0.5px solid rgba(255,255,255,0.07);
}
.footer-inner {
  max-width: 880px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem;
}
.footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 0.75rem; }
.footer-logo img { height: 44px; width: auto; opacity: 0.8; }
.footer-desc { font-size: 12px; line-height: 1.65; max-width: 210px; font-weight: 300; }
.footer-col h4 {
  font-size: 10px; font-weight: 600; letter-spacing: 0.09em;
  text-transform: uppercase; color: rgba(255,255,255,0.75);
  margin-bottom: 0.85rem; font-family: var(--ff-head);
}
.footer-col a {
  display: block; font-size: 12px; color: rgba(255,255,255,0.7);
  text-decoration: none; margin-bottom: 0.45rem; transition: color 0.15s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 880px; margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 0.5px solid rgba(255,255,255,0.07);
  display: flex; justify-content: space-between; font-size: 11px;
}


/* ==========================================================================
   5. INDEX
   ========================================================================== */

/* Hero con imagen de fondo */
.hero-wrap.hero-img-wrap {
  position: relative; min-height: 580px;
  overflow: hidden; display: flex; align-items: center;
  padding: 0;
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg,
    rgba(15,22,60,0.95) 0%,
    rgba(20,28,75,0.88) 40%,
    rgba(20,28,75,0.55) 70%,
    rgba(20,28,75,0.2) 100%);
}
.hero-inner.hero-img-inner {
  position: relative; z-index: 2;
  padding: 8rem 2.5rem 5rem;
  max-width: 880px; margin: 0 auto; width: 100%;
}
.hero-title-sub {
  font-family: var(--ff-head);
  font-size: clamp(18px,2.8vw,28px); font-weight: 300;
  color: var(--azul-claro); margin-bottom: 1.25rem;
  letter-spacing: -0.01em; line-height: 1.3;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  padding-top: 2rem; border-top: 0.5px solid rgba(255,255,255,0.12);
}
.hero-stat-num {
  font-family: var(--ff-head); font-size: 24px;
  font-weight: 600; color: var(--azul-claro); line-height: 1;
}
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 4px; font-weight: 300; }

/* Problema */
.problem-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 1px; background: var(--border);
  border: 0.5px solid var(--border); border-radius: 12px; overflow: hidden;
}
.problem-card { background: var(--white); padding: 1.75rem; transition: background 0.15s; }
.problem-card:hover { background: var(--faint); }
.prob-num { font-family: var(--ff-head); font-size: 11px; font-weight: 600; color: var(--azul-principal); letter-spacing: 0.06em; margin-bottom: 0.6rem; }
.prob-title { font-family: var(--ff-head); font-size: 14px; font-weight: 600; margin-bottom: 0.5rem; color: var(--azul-oscuro); }
.prob-text { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* Métricas */
.metrics-wrap { background: var(--azul-oscuro); padding: 4rem 2rem; position: relative; overflow: hidden; }
.metrics-bg {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
  background-size: 28px 28px;
}
.metrics-inner { max-width: 880px; margin: 0 auto; position: relative; z-index: 2; }
.metrics-wrap .section-label { color: var(--azul-claro); }
.metrics-wrap .section-title { color: var(--white); }
.metrics-wrap .section-intro { color: rgba(255,255,255,0.45); }
.metrics-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 1px; background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 12px; overflow: hidden; margin-bottom: 1.5rem;
}
.metric-card { background: rgba(255,255,255,0.03); padding: 1.75rem; transition: background 0.15s; }
.metric-card:hover { background: rgba(255,255,255,0.07); }
.metric-antes { font-size: 12px; color: rgba(255,255,255,0.35); margin-bottom: 0.4rem; }
.metric-arrow { font-size: 16px; color: var(--teal); margin: 0.3rem 0; line-height: 1; }
.metric-despues { font-family: var(--ff-head); font-size: 26px; font-weight: 600; color: var(--azul-claro); }
.metric-label { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 0.4rem; }
.metrics-note { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.65; max-width: 520px; font-weight: 300; }

/* Diferenciadores */
.dif-wrap { background: var(--faint2); padding: 4rem 2rem; }
.dif-inner { max-width: 880px; margin: 0 auto; }
.dif-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 1.25rem; margin-top: 2rem; }
.dif-card { background: var(--white); border: 0.5px solid var(--border); border-radius: 12px; padding: 1.5rem; transition: border-color 0.15s; }
.dif-card:hover { border-color: var(--azul-principal); }
.dif-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 16px; }
.dif-icon-1 { background: rgba(47,128,237,0.1); }
.dif-icon-2 { background: rgba(0,184,169,0.1); }
.dif-icon-3 { background: rgba(86,204,242,0.12); }
.dif-title { font-family: var(--ff-head); font-size: 14px; font-weight: 600; margin-bottom: 0.5rem; color: var(--azul-oscuro); }
.dif-text { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* Alberto (index) */
.alberto-section { padding: 4rem 2rem; max-width: 880px; margin: 0 auto; display: grid; grid-template-columns: 190px 1fr; gap: 3.5rem; align-items: start; }
.alberto-card { background: var(--faint); border: 0.5px solid var(--border); border-radius: 12px; padding: 1.5rem; text-align: center; }
.alberto-avatar { width: 60px; height: 60px; border-radius: 50%; background: var(--azul-oscuro); display: flex; align-items: center; justify-content: center; margin: 0 auto 0.75rem; font-family: var(--ff-head); font-size: 18px; font-weight: 600; color: var(--white); }
.alberto-name { font-family: var(--ff-head); font-size: 14px; font-weight: 600; color: var(--azul-oscuro); }
.alberto-role { font-size: 11px; color: var(--muted); margin-top: 0.2rem; line-height: 1.4; }
.alberto-years { display: inline-block; margin-top: 0.75rem; font-size: 11px; font-weight: 600; color: var(--azul-principal); background: rgba(47,128,237,0.08); padding: 3px 10px; border-radius: 20px; font-family: var(--ff-head); }
.alberto-label { font-size: 11px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--azul-principal); margin-bottom: 1rem; font-family: var(--ff-head); }
.alberto-right p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 1rem; font-weight: 300; }
.alberto-right p:last-child { margin-bottom: 0; }
.alberto-right strong { color: var(--azul-oscuro); font-weight: 500; }

/* Partners */
.partners-section { padding: 3rem 2rem; max-width: 880px; margin: 0 auto; text-align: center; }
.partners-label { font-size: 11px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.75rem; font-family: var(--ff-head); }
.partners-text { font-size: 13px; color: var(--muted); max-width: 460px; margin: 0 auto 2rem; line-height: 1.65; font-weight: 300; }
.partners-logos { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.partner-logo img { height: 64px; width: auto; max-width: 180px; object-fit: contain; transition: transform 0.2s; }
.partner-logo img:hover { transform: scale(1.05); }
.partner-name { font-size: 12px; color: var(--muted); margin-top: 10px; text-align: center; }


/* ==========================================================================
   6. LUZIA
   ========================================================================== */
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
  background-size: 32px 32px;
}
.hero-bg-glow { position: absolute; top: -120px; right: -80px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(47,128,237,0.25) 0%, transparent 65%); pointer-events: none; }
.hero-bg-glow2 { position: absolute; bottom: -100px; left: -60px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(0,184,169,0.15) 0%, transparent 65%); pointer-events: none; }

/* Metáfora */
.metaphor-wrap { background: linear-gradient(135deg,#1a2550 0%,#1E2A5A 60%,#162048 100%); padding: 4rem 2rem; position: relative; overflow: hidden; }
.metaphor-bg { position: absolute; inset: 0; opacity: 0.03; background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0); background-size: 28px 28px; }
.metaphor-inner { max-width: 880px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; position: relative; z-index: 2; }
.metaphor-label { font-size: 11px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--azul-claro); margin-bottom: 0.75rem; font-family: var(--ff-head); }
.metaphor-title { font-family: var(--ff-head); font-size: clamp(18px,2.4vw,24px); font-weight: 600; color: var(--white); line-height: 1.3; margin-bottom: 1rem; letter-spacing: -0.01em; }
.metaphor-text p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 0.85rem; font-weight: 300; }
.metaphor-text p:last-child { margin-bottom: 0; }
.metaphor-card { background: rgba(255,255,255,0.06); border: 0.5px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 1.5rem; }
.metaphor-card-title { font-family: var(--ff-head); font-size: 12px; font-weight: 600; color: var(--teal); margin-bottom: 1rem; letter-spacing: 0.04em; text-transform: uppercase; }
.metaphor-item { display: flex; gap: 10px; margin-bottom: 0.9rem; align-items: flex-start; }
.metaphor-item:last-child { margin-bottom: 0; }
.metaphor-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); flex-shrink: 0; margin-top: 7px; }
.metaphor-item-text { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.metaphor-item-text strong { color: rgba(255,255,255,0.9); font-weight: 500; }

/* Capacidades */
.caps-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 1px; background: var(--border); border: 0.5px solid var(--border); border-radius: 12px; overflow: hidden; }
.cap-card { background: var(--white); padding: 1.75rem; transition: background 0.15s; }
.cap-card:hover { background: var(--faint); }
.cap-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 16px; }
.cap-icon-1 { background: rgba(47,128,237,0.1); }
.cap-icon-2 { background: rgba(0,184,169,0.1); }
.cap-icon-3 { background: rgba(86,204,242,0.12); }
.cap-icon-4 { background: rgba(123,97,255,0.1); }
.cap-title { font-family: var(--ff-head); font-size: 14px; font-weight: 600; color: var(--azul-oscuro); margin-bottom: 0.4rem; }
.cap-text { font-size: 13px; color: var(--muted); line-height: 1.65; }
.cap-time { display: inline-block; margin-top: 0.75rem; font-size: 11px; font-weight: 600; color: var(--azul-principal); background: rgba(47,128,237,0.08); padding: 3px 10px; border-radius: 20px; font-family: var(--ff-head); }

/* Comparativa Luzia */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2rem; }
.compare-col { background: var(--white); border: 0.5px solid var(--border); border-radius: 12px; padding: 1.5rem; }
.compare-col.featured { border: 1.5px solid var(--azul-principal); }
.compare-badge { display: inline-block; font-size: 11px; font-weight: 600; color: var(--azul-principal); background: rgba(47,128,237,0.08); padding: 3px 10px; border-radius: 20px; margin-bottom: 0.75rem; font-family: var(--ff-head); }
.compare-col-title { font-family: var(--ff-head); font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 1rem; }
.compare-col.featured .compare-col-title { color: var(--azul-oscuro); }
.compare-item { display: flex; gap: 10px; margin-bottom: 0.8rem; align-items: flex-start; }
.compare-item:last-child { margin-bottom: 0; }
.ci-dot-no { width: 5px; height: 5px; border-radius: 50%; background: var(--border); flex-shrink: 0; margin-top: 7px; }
.ci-dot-si { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); flex-shrink: 0; margin-top: 7px; }
.compare-item span { font-size: 13px; color: var(--muted); line-height: 1.6; }
.compare-item.featured-item span { color: var(--text); }

/* IA Genérica */
.gen-box { background: var(--faint); border: 0.5px solid var(--border); border-radius: 12px; padding: 2rem; }
.gen-intro { font-size: 14px; color: var(--muted); line-height: 1.75; font-weight: 300; margin-bottom: 1.5rem; }
.gen-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.gen-col { background: var(--white); border: 0.5px solid var(--border); border-radius: 10px; padding: 1.25rem; }
.gen-col.gen-featured { border-color: var(--teal); }
.gen-col-label { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.75rem; font-family: var(--ff-head); color: var(--muted); }
.gen-col.gen-featured .gen-col-label { color: var(--teal); }
.gen-col-item { font-size: 13px; color: var(--muted); line-height: 1.6; padding: 0.35rem 0; border-bottom: 0.5px solid var(--border); }
.gen-col-item:last-child { border-bottom: none; }


/* ==========================================================================
   7. CÓMO FUNCIONA
   ========================================================================== */
.hero-glow2 { position: absolute; pointer-events: none; }

/* Timeline */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 12px; bottom: 12px; width: 1px; background: var(--border); }
.tl-item { position: relative; padding: 0 0 2.5rem 2rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot { position: absolute; left: -2rem; top: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--white); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; transform: translateX(calc(-50% + 0.5px)); }
.tl-dot-inner { width: 8px; height: 8px; border-radius: 50%; background: var(--border); }
.tl-item.active .tl-dot { border-color: var(--azul-principal); background: var(--azul-principal); }
.tl-item.active .tl-dot-inner { background: var(--white); }
.tl-item.teal .tl-dot { border-color: var(--teal); background: var(--teal); }
.tl-item.teal .tl-dot-inner { background: var(--white); }
.tl-item.special .tl-dot { border-color: var(--azul-claro); background: var(--azul-claro); }
.tl-item.special .tl-dot-inner { background: var(--azul-oscuro); }
.tl-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.35rem; font-family: var(--ff-head); }
.tl-item.active .tl-tag { color: var(--azul-principal); }
.tl-item.teal .tl-tag { color: var(--teal); }
.tl-item.special .tl-tag { color: var(--azul-claro); }
.tl-title { font-family: var(--ff-head); font-size: 16px; font-weight: 600; color: var(--azul-oscuro); margin-bottom: 0.5rem; }
.tl-text { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 300; max-width: 560px; }
.tl-text strong { color: var(--text); font-weight: 500; }
.tl-badge { display: inline-block; margin-top: 0.75rem; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; font-family: var(--ff-head); }
.tl-badge-blue { background: rgba(47,128,237,0.08); color: var(--azul-principal); }
.tl-badge-teal { background: rgba(0,184,169,0.08); color: var(--teal); }
.tl-badge-gray { background: var(--faint); color: var(--muted); }

/* Dicotomía */
.dichotomy-wrap { background: var(--azul-oscuro); padding: 4rem 2rem; position: relative; overflow: hidden; }
.dichotomy-bg { position: absolute; inset: 0; opacity: 0.03; background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0); background-size: 28px 28px; }
.dichotomy-inner { max-width: 880px; margin: 0 auto; position: relative; z-index: 2; }
.dichotomy-wrap .section-label { color: var(--azul-claro); }
.dichotomy-wrap .section-title { color: var(--white); }
.dichotomy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.dic-col { border-radius: 12px; padding: 1.5rem; }
.dic-col-no { background: rgba(255,255,255,0.04); border: 0.5px solid rgba(255,255,255,0.08); }
.dic-col-si { background: rgba(0,184,169,0.08); border: 0.5px solid rgba(0,184,169,0.2); }
.dic-col-title { font-family: var(--ff-head); font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1rem; }
.dic-col-no .dic-col-title { color: rgba(255,255,255,0.3); }
.dic-col-si .dic-col-title { color: var(--teal); }
.dic-item { display: flex; gap: 10px; margin-bottom: 0.85rem; align-items: flex-start; }
.dic-item:last-child { margin-bottom: 0; }
.dic-dot-no { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.15); flex-shrink: 0; margin-top: 7px; }
.dic-dot-si { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); flex-shrink: 0; margin-top: 7px; }
.dic-item span { font-size: 13px; line-height: 1.6; }
.dic-col-no .dic-item span { color: rgba(255,255,255,0.45); }
.dic-col-si .dic-item span { color: rgba(255,255,255,0.75); }

/* FAQ list inline (cómo-funciona) */
.faq-list { margin-top: 2rem; }
.faq-item { border-bottom: 0.5px solid var(--border); padding: 1.25rem 0; }
.faq-item:first-child { border-top: 0.5px solid var(--border); }
.faq-q-simple { font-family: var(--ff-head); font-size: 14px; font-weight: 600; color: var(--azul-oscuro); margin-bottom: 0.6rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; user-select: none; }
.faq-q-simple::after { content: '+'; font-size: 18px; font-weight: 300; color: var(--muted); flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-q-simple::after { transform: rotate(45deg); }
.faq-a-simple { font-size: 14px; color: var(--muted); line-height: 1.75; font-weight: 300; display: none; }
.faq-item.open .faq-a-simple { display: block; }
.faq-a-simple strong { color: var(--text); font-weight: 500; }

/* Hero pills */
.hero-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-pill { font-size: 12px; padding: 6px 14px; border-radius: 20px; border: 0.5px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.6); font-family: var(--ff-body); }
.hero-pill.active { background: rgba(0,184,169,0.15); border-color: rgba(0,184,169,0.4); color: var(--teal); }


/* ==========================================================================
   8. EJEMPLOS DE USO
   ========================================================================== */
.filter-btn { font-size: 13px; padding: 8px 18px; border-radius: 20px; border: 0.5px solid var(--border); background: var(--white); color: var(--muted); cursor: pointer; font-family: var(--ff-body); transition: all 0.15s; }
.filter-btn:hover { border-color: var(--azul-principal); color: var(--azul-principal); }
.filter-btn.selected { background: var(--azul-oscuro); color: var(--white); border-color: var(--azul-oscuro); }

.problem-section { padding: 3rem 2rem; max-width: 880px; margin: 0 auto; }
.problem-section + .problem-section { padding-top: 0; }
.ps-header { display: flex; align-items: center; gap: 12px; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 0.5px solid var(--border); }
.ps-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.ps-icon-1 { background: rgba(47,128,237,0.1); }
.ps-icon-2 { background: rgba(0,184,169,0.1); }
.ps-icon-3 { background: rgba(86,204,242,0.12); }
.ps-label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-family: var(--ff-head); margin-bottom: 2px; }
.ps-title { font-family: var(--ff-head); font-size: 16px; font-weight: 600; color: var(--azul-oscuro); }

.examples-grid { display: grid; gap: 1rem; }
.example-card { border: 0.5px solid var(--border); border-radius: 12px; overflow: hidden; background: var(--white); transition: border-color 0.15s; }
.example-card:hover { border-color: var(--azul-principal); }
.example-top { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.ex-problem { padding: 1.25rem 1.5rem; background: var(--faint2); border-right: 0.5px solid var(--border); }
.ex-result { padding: 1.25rem 1.5rem; background: var(--white); }
.ex-col-label { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.5rem; font-family: var(--ff-head); }
.ex-problem .ex-col-label { color: var(--muted); }
.ex-result .ex-col-label { color: var(--teal); }
.ex-col-title { font-family: var(--ff-head); font-size: 13px; font-weight: 600; color: var(--azul-oscuro); margin-bottom: 0.4rem; }
.ex-col-text { font-size: 13px; color: var(--muted); line-height: 1.6; }
.ex-time { display: inline-flex; align-items: center; gap: 5px; margin-top: 0.6rem; font-size: 11px; font-weight: 600; color: var(--teal); background: rgba(0,184,169,0.08); padding: 3px 10px; border-radius: 20px; font-family: var(--ff-head); }
.ex-interaction { border-top: 0.5px solid var(--border); padding: 1rem 1.5rem; background: var(--azul-oscuro); display: flex; align-items: flex-start; gap: 12px; }
.ex-int-label { font-size: 10px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--azul-claro); margin-bottom: 0.35rem; font-family: var(--ff-head); white-space: nowrap; }
.ex-int-bubble { background: rgba(255,255,255,0.07); border: 0.5px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 0.6rem 1rem; font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.5; font-style: italic; flex: 1; }

.custom-wrap { background: var(--faint2); padding: 3.5rem 2rem; }
.custom-inner { max-width: 880px; margin: 0 auto; }
.custom-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 1rem; margin-top: 1.5rem; }
.custom-card { background: var(--white); border: 0.5px solid var(--border); border-radius: 10px; padding: 1.25rem; }
.custom-card-icon { font-size: 20px; margin-bottom: 0.6rem; }
.custom-card-title { font-family: var(--ff-head); font-size: 13px; font-weight: 600; color: var(--azul-oscuro); margin-bottom: 0.3rem; }
.custom-card-text { font-size: 12px; color: var(--muted); line-height: 1.6; }


/* ==========================================================================
   9. HARDWARE
   ========================================================================== */
.infra-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.infra-card { border-radius: 14px; overflow: hidden; border: 0.5px solid var(--border); }
.infra-card.featured { border: 1.5px solid var(--azul-principal); }
.infra-card-header { padding: 1.5rem; background: var(--faint2); }
.infra-card.featured .infra-card-header { background: rgba(47,128,237,0.06); }
.infra-badge { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; margin-bottom: 0.75rem; font-family: var(--ff-head); }
.infra-badge-blue { background: rgba(47,128,237,0.1); color: var(--azul-principal); }
.infra-badge-teal { background: rgba(0,184,169,0.1); color: var(--teal); }
.infra-card-icon { font-size: 28px; margin-bottom: 0.75rem; }
.infra-card-title { font-family: var(--ff-head); font-size: 17px; font-weight: 600; color: var(--azul-oscuro); margin-bottom: 0.4rem; }
.infra-card-sub { font-size: 13px; color: var(--muted); line-height: 1.6; font-weight: 300; }
.infra-card-body { padding: 1.5rem; background: var(--white); }
.infra-item { display: flex; gap: 10px; margin-bottom: 0.85rem; align-items: flex-start; }
.infra-item:last-child { margin-bottom: 0; }
.infra-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.infra-dot-blue { background: var(--azul-principal); }
.infra-dot-teal { background: var(--teal); }
.infra-item-text { font-size: 13px; color: var(--muted); line-height: 1.6; }
.infra-item-text strong { color: var(--text); font-weight: 500; }
.infra-card-footer { padding: 1rem 1.5rem; border-top: 0.5px solid var(--border); background: var(--white); }
.infra-spec { display: flex; justify-content: space-between; align-items: center; font-size: 12px; }
.infra-spec-label { color: var(--muted); }
.infra-spec-value { font-weight: 500; color: var(--azul-oscuro); font-family: var(--ff-head); }

.privacy-wrap { background: var(--azul-oscuro); padding: 4rem 2rem; position: relative; overflow: hidden; }
.privacy-bg { position: absolute; inset: 0; opacity: 0.03; background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0); background-size: 28px 28px; }
.privacy-inner { max-width: 880px; margin: 0 auto; position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.privacy-label { font-size: 11px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--azul-claro); margin-bottom: 0.75rem; font-family: var(--ff-head); }
.privacy-title { font-family: var(--ff-head); font-size: clamp(20px,2.5vw,26px); font-weight: 600; color: var(--white); line-height: 1.25; margin-bottom: 1rem; letter-spacing: -0.01em; }
.privacy-text { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.75; font-weight: 300; }
.privacy-text p { margin-bottom: 0.75rem; }
.privacy-text p:last-child { margin-bottom: 0; }
.privacy-items { display: flex; flex-direction: column; gap: 1rem; }
.privacy-item { background: rgba(255,255,255,0.05); border: 0.5px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 1.25rem; display: flex; gap: 12px; align-items: flex-start; }
.privacy-item-icon { font-size: 18px; flex-shrink: 0; }
.privacy-item-title { font-family: var(--ff-head); font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 0.25rem; }
.privacy-item-text { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.6; }

.hardware-wrap { background: var(--faint2); padding: 4rem 2rem; }
.hardware-inner { max-width: 880px; margin: 0 auto; }
.hardware-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 1px; background: var(--border); border: 0.5px solid var(--border); border-radius: 12px; overflow: hidden; margin-top: 2rem; }
.hw-card { background: var(--white); padding: 1.5rem; }
.hw-card:hover { background: var(--faint); }
.hw-icon { font-size: 22px; margin-bottom: 0.75rem; }
.hw-title { font-family: var(--ff-head); font-size: 13px; font-weight: 600; color: var(--azul-oscuro); margin-bottom: 0.4rem; }
.hw-text { font-size: 13px; color: var(--muted); line-height: 1.6; }
.hw-callout { margin-top: 2rem; background: var(--white); border: 0.5px solid var(--border); border-left: 3px solid var(--azul-principal); border-radius: 0 10px 10px 0; padding: 1.25rem 1.5rem; }
.hw-callout-text { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 300; }
.hw-callout-text strong { color: var(--azul-oscuro); font-weight: 500; }

.table-wrap { padding: 4rem 2rem; max-width: 880px; margin: 0 auto; }
.compare-table { width: 100%; border-collapse: collapse; border: 0.5px solid var(--border); border-radius: 12px; overflow: hidden; font-size: 13px; }
.compare-table th { background: var(--azul-oscuro); color: rgba(255,255,255,0.7); padding: 0.85rem 1.25rem; text-align: left; font-family: var(--ff-head); font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.compare-table th:first-child { color: rgba(255,255,255,0.4); }
.compare-table td { padding: 0.85rem 1.25rem; border-bottom: 0.5px solid var(--border); color: var(--muted); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--faint2); }
.compare-table td:first-child { font-weight: 500; color: var(--azul-oscuro); font-family: var(--ff-head); font-size: 12px; }
.check-teal { color: var(--teal); font-weight: 600; }
.check-blue { color: var(--azul-principal); font-weight: 600; }


/* ==========================================================================
   10. PRECIOS
   ========================================================================== */
.hero-steps { display: inline-flex; gap: 0; background: rgba(255,255,255,0.08); border: 0.5px solid rgba(255,255,255,0.15); border-radius: 30px; padding: 4px; font-size: 12px; }
.hs { padding: 6px 14px; border-radius: 24px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 5px; }
.hs.active { background: rgba(255,255,255,0.15); color: var(--white); font-weight: 500; }
.hs-arr { color: rgba(255,255,255,0.25); font-size: 10px; }

.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 0.5px solid var(--border); border-radius: 12px; overflow: hidden; }
.value-card { background: var(--white); padding: 1.5rem; }
.value-card:hover { background: var(--faint); }
.value-icon { font-size: 22px; margin-bottom: 0.75rem; }
.value-title { font-family: var(--ff-head); font-size: 14px; font-weight: 600; color: var(--azul-oscuro); margin-bottom: 0.4rem; }
.value-text { font-size: 13px; color: var(--muted); line-height: 1.65; }
.value-tag { display: inline-block; margin-top: 0.75rem; font-size: 11px; font-weight: 600; color: var(--azul-principal); background: rgba(47,128,237,0.08); padding: 3px 10px; border-radius: 20px; font-family: var(--ff-head); }

.arranque-box { background: var(--white); border: 1.5px solid var(--azul-principal); border-radius: 12px; padding: 1.75rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-bottom: 2.5rem; }
.ar-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--azul-principal); margin-bottom: 0.4rem; font-family: var(--ff-head); }
.ar-title { font-family: var(--ff-head); font-size: 15px; font-weight: 600; color: var(--azul-oscuro); margin-bottom: 0.3rem; }
.ar-text { font-size: 13px; color: var(--muted); line-height: 1.65; max-width: 480px; }
.ar-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 0.6rem; }
.ar-chip { font-size: 11px; background: var(--faint); border: 0.5px solid var(--border); border-radius: 4px; padding: 3px 8px; color: var(--muted); }
.ar-price { flex-shrink: 0; text-align: center; }
.ar-amount { font-family: var(--ff-head); font-size: 32px; font-weight: 600; color: var(--azul-oscuro); letter-spacing: -0.03em; line-height: 1; display: block; }
.ar-unit { font-size: 12px; color: var(--muted); margin-top: 3px; display: block; }

.tiers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-bottom: 1.5rem; }
.tier-card { border-radius: 12px; border: 0.5px solid var(--border); overflow: hidden; transition: box-shadow 0.2s; }
.tier-card:hover { box-shadow: 0 4px 20px rgba(30,42,90,0.08); }
.tier-card.featured { border: 1.5px solid var(--azul-principal); position: relative; }
.tier-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--azul-principal); color: var(--white); font-size: 10px; font-weight: 600; padding: 2px 12px; border-radius: 20px; white-space: nowrap; font-family: var(--ff-head); letter-spacing: 0.04em; }
.tier-header { padding: 1.5rem 1.25rem 1.25rem; background: var(--faint2); text-align: center; }
.tier-card.featured .tier-header { background: rgba(47,128,237,0.05); }
.tier-tag { font-size: 10px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--azul-principal); margin-bottom: 0.3rem; font-family: var(--ff-head); }
.tier-name { font-family: var(--ff-head); font-size: 15px; font-weight: 600; color: var(--azul-oscuro); margin-bottom: 0.75rem; }
.tier-price { font-family: var(--ff-head); font-size: 30px; font-weight: 600; color: var(--azul-oscuro); letter-spacing: -0.03em; line-height: 1; }
.tier-price-unit { font-size: 13px; font-weight: 400; color: var(--muted); }
.tier-cuota { font-size: 11px; color: var(--muted); margin: 3px 0 0.75rem; }
.tier-card.featured .tier-cuota { color: var(--azul-principal); background: rgba(47,128,237,0.08); border-radius: 4px; padding: 2px 8px; display: inline-block; }
.tier-dias { font-size: 12px; font-weight: 600; background: var(--faint); border-radius: 6px; padding: 4px 12px; display: inline-block; color: var(--azul-oscuro); }
.tier-card.featured .tier-dias { background: #eef4ff; color: var(--azul-principal); }
.tier-body { padding: 1.25rem; }
.tier-cta { display: block; text-align: center; padding: 9px; border-radius: 7px; font-size: 13px; font-weight: 600; text-decoration: none; font-family: var(--ff-head); transition: opacity 0.15s; }
.tier-cta-outline { border: 1.5px solid var(--azul-principal); color: var(--azul-principal); }
.tier-cta-outline:hover { background: var(--faint); }
.tier-cta-fill { background: var(--azul-principal); color: var(--white); }
.tier-cta-fill:hover { opacity: 0.88; }

.comp-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.comp-table thead th { padding: 0.75rem 1rem; border-bottom: 2px solid var(--border); font-family: var(--ff-head); font-size: 11px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); }
.comp-table thead th:first-child { text-align: left; background: var(--faint2); color: var(--muted); }
.comp-table thead th.col-feat { color: var(--azul-principal); border-left: 1.5px solid var(--azul-principal); border-right: 1.5px solid var(--azul-principal); background: rgba(47,128,237,0.04); }
.comp-table tbody tr.group-row td { background: var(--faint2); font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--azul-oscuro); padding: 0.5rem 1rem; border-top: 0.5px solid var(--border); }
.comp-table tbody tr.group-row td.col-feat { background: #eef4ff; border-left: 1.5px solid var(--azul-principal); border-right: 1.5px solid var(--azul-principal); }
.comp-table tbody td { padding: 0.6rem 1rem; border-bottom: 0.5px solid var(--border); color: var(--muted); border-left: 0.5px solid var(--border); }
.comp-table tbody td:first-child { color: var(--text); font-weight: 500; border-left: 0.5px solid var(--border); }
.comp-table tbody td.col-feat { background: rgba(47,128,237,0.03); border-left: 1.5px solid var(--azul-principal); border-right: 1.5px solid var(--azul-principal); text-align: center; }
.comp-table tbody td:not(:first-child):not(.col-feat) { text-align: center; }
.check-yes { color: var(--teal); font-weight: 700; font-size: 15px; }
.check-no { color: var(--border); font-size: 15px; }
.chip-blue { font-size: 10px; font-weight: 600; background: rgba(47,128,237,0.1); color: var(--azul-principal); border-radius: 4px; padding: 2px 7px; white-space: nowrap; }
.chip-green { font-size: 10px; font-weight: 600; background: rgba(0,184,169,0.1); color: var(--teal); border-radius: 4px; padding: 2px 7px; white-space: nowrap; }
.comp-table tfoot td { padding: 1rem; border-top: 2px solid var(--border); text-align: center; border-left: 0.5px solid var(--border); }
.comp-table tfoot td.col-feat { background: #eef4ff; border-left: 1.5px solid var(--azul-principal); border-right: 1.5px solid var(--azul-principal); border-top: 2px solid var(--azul-principal); }

.amedida-box { background: var(--faint); border: 0.5px solid var(--border); border-radius: 12px; padding: 1.5rem 2rem; margin-top: 1.5rem; display: grid; grid-template-columns: auto 1fr; gap: 1.25rem; align-items: start; }
.am-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--azul-oscuro); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.am-title { font-family: var(--ff-head); font-size: 14px; font-weight: 600; color: var(--azul-oscuro); margin-bottom: 0.3rem; }
.am-text { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 0.75rem; }
.am-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 1rem; }
.am-item { font-size: 12px; color: var(--muted); display: flex; gap: 5px; }
.am-item-check { color: var(--teal); flex-shrink: 0; }

.mant-wrap { background: var(--azul-oscuro); padding: 4rem 2rem; position: relative; overflow: hidden; }
.mant-bg { position: absolute; inset: 0; opacity: 0.03; background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0); background-size: 28px 28px; }
.mant-inner { max-width: 880px; margin: 0 auto; position: relative; z-index: 2; }
.mant-wrap .section-label { color: var(--azul-claro); }
.mant-wrap .section-title { color: var(--white); }
.mant-wrap .section-intro { color: rgba(255,255,255,0.45); }
.mant-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2rem; }
.mant-card { background: rgba(255,255,255,0.05); border: 0.5px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 1.5rem; text-align: center; }
.mant-card.featured-mant { background: rgba(47,128,237,0.1); border-color: rgba(47,128,237,0.3); }
.mant-icon { font-size: 22px; margin-bottom: 0.6rem; }
.mant-name { font-family: var(--ff-head); font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 0.75rem; }
.mant-price { font-family: var(--ff-head); font-size: 24px; font-weight: 600; color: var(--azul-claro); letter-spacing: -0.02em; line-height: 1; }
.mant-unit { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 3px; }
.mant-items { margin-top: 1rem; text-align: left; }
.mant-item { font-size: 12px; color: rgba(255,255,255,0.55); display: flex; gap: 6px; margin-bottom: 0.4rem; align-items: flex-start; }
.mant-dot { color: var(--teal); flex-shrink: 0; }
.mant-nota { margin-top: 1.5rem; background: rgba(255,255,255,0.05); border: 0.5px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 1rem 1.25rem; font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.65; }
.mant-nota strong { color: rgba(255,255,255,0.75); }

/* CTA especial precios (con box redondeado) */
.cta-section.cta-box-section { padding: 5rem 2rem; text-align: center; background: transparent; }
.cta-section.cta-box-section .cta-inner { max-width: 880px; margin: 0 auto; }
.cta-box { background: var(--azul-oscuro); border-radius: 16px; padding: 3.5rem 2.5rem; position: relative; overflow: hidden; }
.cta-box-bg { position: absolute; inset: 0; opacity: 0.03; background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0); background-size: 28px 28px; }
.cta-box-inner { position: relative; z-index: 2; }


/* ==========================================================================
   11. FAQ
   ========================================================================== */
.faq-wrap { padding: 4rem 2rem; max-width: 880px; margin: 0 auto; }
.faq-layout { display: grid; grid-template-columns: 200px 1fr; gap: 3rem; align-items: start; }

.faq-index { position: sticky; top: 2rem; }
.faq-index-title { font-size: 11px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; font-family: var(--ff-head); }
.faq-index-item { display: block; font-size: 13px; color: var(--muted); text-decoration: none; padding: 5px 0 5px 10px; border-left: 2px solid var(--border); margin-bottom: 4px; transition: all 0.15s; }
.faq-index-item:hover { color: var(--azul-principal); border-left-color: var(--azul-principal); }
.faq-index-item.active { color: var(--azul-principal); border-left-color: var(--azul-principal); font-weight: 500; }

.faq-group { margin-bottom: 3rem; }
.faq-group:last-child { margin-bottom: 0; }
.faq-group-title { font-family: var(--ff-head); font-size: 13px; font-weight: 600; color: var(--azul-principal); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 0.5px solid var(--border); }

.faq-item { border-bottom: 0.5px solid var(--border); }
.faq-item:first-of-type { border-top: 0.5px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 1.1rem 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; font-family: var(--ff-head); font-size: 14px; font-weight: 600; color: var(--azul-oscuro); line-height: 1.4; }
.faq-q:hover { color: var(--azul-principal); }
.faq-icon { width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; color: var(--muted); transition: all 0.2s; font-style: normal; }
.faq-item.open .faq-icon { background: var(--azul-principal); border-color: var(--azul-principal); color: var(--white); transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 1.25rem; font-size: 14px; color: var(--muted); line-height: 1.75; font-weight: 300; }
.faq-item.open .faq-a { display: block; }
.faq-a strong { color: var(--text); font-weight: 500; }
.faq-a ul { margin: 0.75rem 0 0.75rem 1rem; }
.faq-a ul li { margin-bottom: 0.35rem; }
.faq-a .highlight { background: var(--faint); border-left: 3px solid var(--azul-principal); border-radius: 0 6px 6px 0; padding: 0.75rem 1rem; margin: 0.75rem 0; font-size: 13px; }
.faq-a .highlight-teal { background: rgba(0,184,169,0.05); border-left: 3px solid var(--teal); border-radius: 0 6px 6px 0; padding: 0.75rem 1rem; margin: 0.75rem 0; font-size: 13px; }


/* ==========================================================================
   12. CONTACTO
   ========================================================================== */
.main-wrap { padding: 4rem 2rem; max-width: 880px; margin: 0 auto; }
.main-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 3.5rem; align-items: start; }

.why-label { font-size: 11px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--azul-principal); margin-bottom: 0.6rem; font-family: var(--ff-head); }
.why-title { font-family: var(--ff-head); font-size: clamp(18px,2.4vw,22px); font-weight: 600; color: var(--azul-oscuro); line-height: 1.25; margin-bottom: 1rem; letter-spacing: -0.01em; }
.why-text { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 1.75rem; font-weight: 300; }

.vl-card { background: var(--azul-oscuro); border-radius: 12px; padding: 1.5rem; margin-bottom: 1.75rem; position: relative; overflow: hidden; }
.vl-card-bg { position: absolute; inset: 0; opacity: 0.04; background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0); background-size: 20px 20px; }
.vl-card-inner { position: relative; z-index: 2; }
.vl-tag { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.5rem; font-family: var(--ff-head); }
.vl-title { font-family: var(--ff-head); font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 0.75rem; }
.vl-items { display: flex; flex-direction: column; gap: 0.5rem; }
.vl-item { display: flex; gap: 8px; align-items: flex-start; }
.vl-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); flex-shrink: 0; margin-top: 6px; }
.vl-item-text { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.55; }
.vl-note { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 1rem; padding-top: 0.75rem; border-top: 0.5px solid rgba(255,255,255,0.08); }

.contact-data { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-item { display: flex; align-items: center; gap: 10px; }
.contact-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--faint); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.contact-item-text { font-size: 13px; color: var(--muted); }
.contact-item-text a { color: var(--azul-principal); text-decoration: none; font-weight: 500; }
.contact-item-text a:hover { text-decoration: underline; }

.form-card { background: var(--white); border: 0.5px solid var(--border); border-radius: 14px; padding: 2rem; }
.form-title { font-family: var(--ff-head); font-size: 16px; font-weight: 600; color: var(--azul-oscuro); margin-bottom: 0.3rem; }
.form-sub { font-size: 13px; color: var(--muted); margin-bottom: 1.5rem; font-weight: 300; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 12px; font-weight: 500; color: var(--azul-oscuro); font-family: var(--ff-head); }
.form-input { padding: 10px 14px; border: 0.5px solid var(--border); border-radius: 8px; font-size: 14px; font-family: var(--ff-body); color: var(--text); background: var(--white); transition: border-color 0.15s, box-shadow 0.15s; outline: none; }
.form-input:focus { border-color: var(--azul-principal); box-shadow: 0 0 0 3px rgba(47,128,237,0.1); }
.form-input::placeholder { color: #b0bdd0; }
textarea.form-input { resize: vertical; min-height: 110px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6a8a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.form-submit { width: 100%; padding: 13px; background: var(--azul-principal); color: var(--white); border: none; border-radius: 8px; font-size: 14px; font-weight: 600; font-family: var(--ff-head); cursor: pointer; transition: opacity 0.15s; margin-top: 0.5rem; }
.form-submit:hover { opacity: 0.88; }
.form-privacy { font-size: 11px; color: var(--muted); text-align: center; margin-top: 0.75rem; line-height: 1.5; }
.form-privacy a { color: var(--azul-principal); text-decoration: none; }

.guarantees { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 0.5px solid var(--border); }
.guarantee { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); }
.guarantee-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

.response-wrap { padding: 0 2rem 4rem; max-width: 880px; margin: 0 auto; }
.response-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 0.5px solid var(--border); border-radius: 12px; overflow: hidden; }
.response-card { background: var(--white); padding: 1.5rem; text-align: center; }
.response-icon { font-size: 22px; margin-bottom: 0.6rem; }
.response-title { font-family: var(--ff-head); font-size: 13px; font-weight: 600; color: var(--azul-oscuro); margin-bottom: 0.3rem; }
.response-text { font-size: 12px; color: var(--muted); line-height: 1.6; }
.response-time { display: inline-block; margin-top: 0.5rem; font-size: 11px; font-weight: 600; color: var(--teal); background: rgba(0,184,169,0.08); padding: 2px 8px; border-radius: 20px; font-family: var(--ff-head); }


/* ==========================================================================
   13. QUIÉNES SOMOS
   ========================================================================== */

/* Hero 2 columnas */
.hero-inner.hero-qs { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; }
.hero-avatar { width: 140px; height: 140px; border-radius: 50%; background: linear-gradient(135deg, rgba(47,128,237,0.3), rgba(0,184,169,0.3)); border: 3px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-avatar-inner { width: 120px; height: 120px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-family: var(--ff-head); font-size: 42px; font-weight: 600; color: rgba(255,255,255,0.9); }

/* SCE */
.sce-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-top: 2.5rem; }
.sce-text p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 1rem; font-weight: 300; }
.sce-text p:last-child { margin-bottom: 0; }
.sce-text strong { color: var(--azul-oscuro); font-weight: 500; }
.sce-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 0.5px solid var(--border); border-radius: 12px; overflow: hidden; }
.sce-stat { background: var(--white); padding: 1.5rem; text-align: center; }
.sce-stat-num { font-family: var(--ff-head); font-size: 28px; font-weight: 600; color: var(--azul-oscuro); letter-spacing: -0.02em; line-height: 1; }
.sce-stat-label { font-size: 12px; color: var(--muted); margin-top: 4px; line-height: 1.4; }
.sce-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500; color: var(--azul-principal); background: rgba(47,128,237,0.08); border: 0.5px solid rgba(47,128,237,0.15); padding: 5px 12px; border-radius: 20px; margin-top: 1.25rem; font-family: var(--ff-head); }

/* Alberto (quiénes somos) */
.alberto-wrap { background: var(--azul-oscuro); padding: 4rem 2rem; position: relative; overflow: hidden; }
.alberto-bg { position: absolute; inset: 0; opacity: 0.03; background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0); background-size: 28px 28px; }
.alberto-inner { max-width: 880px; margin: 0 auto; position: relative; z-index: 2; }
.alberto-header { display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: center; margin-bottom: 2.5rem; }
.alberto-avatar-lg { width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-family: var(--ff-head); font-size: 28px; font-weight: 600; color: var(--white); flex-shrink: 0; }
.alberto-name-lg { font-family: var(--ff-head); font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 0.2rem; letter-spacing: -0.01em; }
.alberto-role-lg { font-size: 13px; color: rgba(255,255,255,0.5); }
.alberto-chips { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 0.6rem; }
.alberto-chip { font-size: 11px; font-weight: 500; padding: 3px 10px; border-radius: 20px; font-family: var(--ff-head); }
.chip-blue { background: rgba(47,128,237,0.2); color: var(--azul-claro); }
.chip-teal { background: rgba(0,184,169,0.2); color: var(--teal); }
.chip-white { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); }

.alberto-timeline { display: flex; flex-direction: column; gap: 0; }
.atl-item { display: grid; grid-template-columns: 100px 1fr; gap: 1.5rem; padding-bottom: 2rem; position: relative; }
.atl-item:last-child { padding-bottom: 0; }
.atl-item::before { content: ''; position: absolute; left: 99px; top: 8px; bottom: 0; width: 1px; background: rgba(255,255,255,0.08); }
.atl-item:last-child::before { display: none; }
.atl-year { font-family: var(--ff-head); font-size: 12px; font-weight: 600; color: var(--azul-claro); padding-top: 2px; text-align: right; }
.atl-dot { position: absolute; left: 94px; top: 6px; width: 10px; height: 10px; border-radius: 50%; background: var(--azul-oscuro); border: 2px solid rgba(255,255,255,0.2); }
.atl-item.highlight .atl-dot { background: var(--teal); border-color: var(--teal); }
.atl-title { font-family: var(--ff-head); font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 0.3rem; }
.atl-text { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.65; font-weight: 300; }

/* Por qué importa */
.why-wrap { background: var(--faint2); padding: 4rem 2rem; }
.why-inner { max-width: 880px; margin: 0 auto; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.why-card { background: var(--white); border: 0.5px solid var(--border); border-radius: 12px; padding: 1.5rem; transition: border-color 0.15s; }
.why-card:hover { border-color: var(--azul-principal); }
.why-card-icon { font-size: 22px; margin-bottom: 0.75rem; }
.why-card-title { font-family: var(--ff-head); font-size: 14px; font-weight: 600; color: var(--azul-oscuro); margin-bottom: 0.5rem; }
.why-card-text { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* Valores */
.values-section { padding: 4rem 2rem; max-width: 880px; margin: 0 auto; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 0.5px solid var(--border); border-radius: 12px; overflow: hidden; margin-top: 2rem; }
.value-num { font-family: var(--ff-head); font-size: 11px; font-weight: 600; color: var(--azul-claro); letter-spacing: 0.06em; margin-bottom: 0.6rem; }


/* ==========================================================================
   14. TÉRMINOS
   ========================================================================== */

/* Hero compacto */
.hero-wrap.hero-compact { padding: 7rem 2rem 3.5rem; }
.hero-meta { font-size: 13px; color: rgba(255,255,255,0.4); display: flex; gap: 1.5rem; flex-wrap: wrap; }
.hero-meta span { display: flex; align-items: center; gap: 5px; }

/* Layout documento */
.doc-wrap { padding: 3.5rem 2rem 4rem; max-width: 880px; margin: 0 auto; display: grid; grid-template-columns: 200px 1fr; gap: 3.5rem; align-items: start; }
.doc-index { position: sticky; top: 5rem; }
.doc-index-title { font-size: 11px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; font-family: var(--ff-head); }
.doc-index-item { display: block; font-size: 12px; color: var(--muted); text-decoration: none; padding: 4px 0 4px 10px; border-left: 2px solid var(--border); margin-bottom: 3px; transition: all 0.15s; line-height: 1.4; }
.doc-index-item:hover { color: var(--azul-principal); border-left-color: var(--azul-principal); }

.doc-section { margin-bottom: 2.5rem; }
.doc-section:last-child { margin-bottom: 0; }
.doc-section-num { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--azul-principal); margin-bottom: 0.4rem; font-family: var(--ff-head); }
.doc-section-title { font-family: var(--ff-head); font-size: 17px; font-weight: 600; color: var(--azul-oscuro); margin-bottom: 1rem; letter-spacing: -0.01em; padding-bottom: 0.6rem; border-bottom: 0.5px solid var(--border); }
.doc-sub-title { font-family: var(--ff-head); font-size: 14px; font-weight: 600; color: var(--azul-oscuro); margin: 1.25rem 0 0.5rem; }
.doc-p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 0.75rem; font-weight: 300; }
.doc-p:last-child { margin-bottom: 0; }
.doc-p strong { color: var(--text); font-weight: 500; }
.doc-list { margin: 0.5rem 0 0.75rem 1.25rem; }
.doc-list li { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 0.25rem; font-weight: 300; }

.empresa-card { background: var(--faint2); border: 0.5px solid var(--border); border-radius: 10px; padding: 1.25rem 1.5rem; margin-bottom: 1rem; }
.empresa-row { display: flex; gap: 1rem; padding: 0.4rem 0; border-bottom: 0.5px solid var(--border); font-size: 13px; }
.empresa-row:last-child { border-bottom: none; }
.empresa-label { color: var(--muted); width: 130px; flex-shrink: 0; font-weight: 400; }
.empresa-value { color: var(--text); font-weight: 500; }

.doc-table { width: 100%; border-collapse: collapse; font-size: 13px; margin: 0.75rem 0; }
.doc-table th { background: var(--azul-oscuro); color: rgba(255,255,255,0.7); padding: 0.6rem 0.85rem; text-align: left; font-family: var(--ff-head); font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.doc-table td { padding: 0.6rem 0.85rem; border-bottom: 0.5px solid var(--border); color: var(--muted); font-weight: 300; vertical-align: top; }
.doc-table tr:last-child td { border-bottom: none; }
.doc-table tr:nth-child(even) td { background: var(--faint2); }

.highlight-box { background: rgba(47,128,237,0.05); border: 0.5px solid rgba(47,128,237,0.2); border-left: 3px solid var(--azul-principal); border-radius: 0 8px 8px 0; padding: 1rem 1.25rem; margin: 0.75rem 0; font-size: 13px; color: var(--muted); line-height: 1.7; }
.highlight-box strong { color: var(--azul-oscuro); font-weight: 500; }
.highlight-teal { background: rgba(0,184,169,0.05); border: 0.5px solid rgba(0,184,169,0.2); border-left: 3px solid var(--teal); border-radius: 0 8px 8px 0; padding: 1rem 1.25rem; margin: 0.75rem 0; font-size: 13px; color: var(--muted); line-height: 1.7; }
.highlight-teal strong { color: var(--azul-oscuro); font-weight: 500; }

.derechos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 0.75rem; }
.derecho-item { background: var(--white); border: 0.5px solid var(--border); border-radius: 8px; padding: 0.85rem 1rem; }
.derecho-title { font-family: var(--ff-head); font-size: 12px; font-weight: 600; color: var(--azul-oscuro); margin-bottom: 0.2rem; }
.derecho-text { font-size: 12px; color: var(--muted); line-height: 1.5; }

.contacto-legal { background: var(--faint); border: 0.5px solid var(--border); border-radius: 10px; padding: 1.25rem 1.5rem; margin-top: 0.75rem; }
.cl-row { display: flex; gap: 10px; align-items: center; margin-bottom: 0.5rem; font-size: 13px; }
.cl-row:last-child { margin-bottom: 0; }
.cl-icon { width: 28px; height: 28px; background: var(--white); border: 0.5px solid var(--border); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.cl-text { color: var(--muted); }
.cl-text a { color: var(--azul-principal); text-decoration: none; font-weight: 500; }


/* ==========================================================================
   15. RESPONSIVE — MÓVIL (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {

  /* Nav */
  .nav-mobile-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(20,28,75,0.97); padding: 1rem 2rem;
    flex-direction: column; gap: 0.75rem;
    border-bottom: 0.5px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }

  /* Móvil: aplanar dropdown — ocultar trigger "LuzIA" y mostrar items inline */
  .nav-dropdown > a { display: none; }
  .nav-dropdown .dropdown-menu {
    position: static; opacity: 1; pointer-events: all;
    transform: none; box-shadow: none; border: none;
    background: transparent; padding: 0;
    display: flex; flex-direction: column; gap: 0.75rem;
  }
  .nav-dropdown .dropdown-menu a {
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    padding: 0;
  }
  .nav-dropdown .dropdown-menu a:hover,
  .nav-dropdown .dropdown-menu a.active { color: var(--white); }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }

  /* Index */
  .alberto-section { grid-template-columns: 1fr; gap: 2rem; }

  /* Luzia */
  .metaphor-inner { grid-template-columns: 1fr; gap: 2rem; }
  .compare-grid { grid-template-columns: 1fr; gap: 1rem; }
  .gen-cols { grid-template-columns: 1fr; gap: 1rem; }

  /* Cómo funciona */
  .dichotomy-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Ejemplos de uso */
  .example-top { grid-template-columns: 1fr; }
  .ex-problem { border-right: none; border-bottom: 0.5px solid var(--border); }

  /* Hardware */
  .infra-grid { grid-template-columns: 1fr; }
  .privacy-inner { grid-template-columns: 1fr; gap: 2rem; }

  /* Precios */
  .tiers-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .mant-grid { grid-template-columns: 1fr; }
  .arranque-box { flex-direction: column; gap: 1rem; }
  .hero-steps { flex-wrap: wrap; }

  /* FAQ */
  .faq-layout { grid-template-columns: 1fr !important; }
  .faq-index { display: none; }

  /* Contacto */
  .main-grid { grid-template-columns: 1fr !important; }
  .response-grid { grid-template-columns: 1fr; }

  /* Quiénes somos */
  .hero-inner.hero-qs { grid-template-columns: 1fr !important; }
  .hero-avatar { display: none; }
  .sce-grid { grid-template-columns: 1fr !important; }
  .alberto-header { grid-template-columns: 1fr !important; }
  .why-grid { grid-template-columns: 1fr !important; }
  .values-grid { grid-template-columns: 1fr !important; }

  /* Términos */
  .doc-wrap { grid-template-columns: 1fr; }
  .doc-index { display: none; }
  .derechos-grid { grid-template-columns: 1fr; }
  .doc-table { font-size: 12px; }
  .doc-table th, .doc-table td { padding: 0.5rem 0.6rem; }
  .empresa-row { flex-direction: column; gap: 0.2rem; }
  .empresa-label { width: auto; }
}
