/* ============================================================
   BICENTENARIX — SOY EMPRESA (B2B)
   Hoja de estilos independiente. No comparte nada con la landing
   pública (styles.css). Paleta corporativa sobria, más aire, menos
   ruido. Tipografías de marca: Chillax (títulos) + General Sans (cuerpo).
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Chillax:wght@400;500;600;700&family=General+Sans:wght@400;500;600&display=swap');

:root {
  /* Base corporativa: azul oscuro / azul / morado sobrio */
  --e-ink: #1A1B33;
  --e-navy: #303374;
  --e-blue: #3961A1;
  --e-violet: #5A3C86;

  /* Neutros / superficies */
  --e-bg: #F5F6FB;
  --e-bg-soft: #EEF0F8;
  --e-surface: #FFFFFF;
  --e-line: #E3E5F0;
  --e-line-strong: #CDD1E4;
  --e-text: #20223A;
  --e-muted: #5C6079;
  --e-faint: #8A8FA8;

  /* Acento (uso muy puntual: CTA y promoción) */
  --e-accent: #F2A33C;
  --e-accent-strong: #E07E1B;
  --e-accent-soft: #FCEFD9;

  --e-ok: #2E9E6B;

  --e-font-title: 'Chillax', 'Segoe UI', system-ui, sans-serif;
  --e-font-body: 'General Sans', 'Segoe UI', system-ui, sans-serif;

  --e-radius-sm: 10px;
  --e-radius-md: 16px;
  --e-radius-lg: 22px;
  --e-radius-xl: 30px;

  --e-shadow-sm: 0 1px 2px rgba(26, 27, 51, 0.06), 0 2px 8px rgba(26, 27, 51, 0.05);
  --e-shadow-md: 0 10px 30px rgba(26, 27, 51, 0.10);
  --e-shadow-lg: 0 24px 60px rgba(26, 27, 51, 0.16);

  --e-transition: 0.22s ease;
  --e-max: 1140px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--e-font-body);
  background: var(--e-bg);
  color: var(--e-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--e-blue); text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--e-font-title);
  font-weight: 700;
  line-height: 1.15;
  color: var(--e-ink);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

p { color: var(--e-muted); font-size: 1.02rem; }

/* --- Accesibilidad: foco visible --- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--e-blue);
  outline-offset: 2px;
  border-radius: 6px;
}

.e-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--e-ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 10px 0;
  z-index: 200;
}
.e-skip:focus { left: 0; }

.e-container {
  max-width: var(--e-max);
  margin: 0 auto;
  padding: 0 22px;
}
.e-container--narrow { max-width: 780px; }

.e-visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ============================================================
   NAVBAR B2B
============================================================ */
.e-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--e-line);
}
.e-nav__inner {
  max-width: var(--e-max);
  margin: 0 auto;
  padding: 13px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.e-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.e-brand__mark { width: 30px; height: 30px; border-radius: 8px; }
.e-brand__name {
  font-family: var(--e-font-title);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--e-ink);
  letter-spacing: -0.02em;
}
.e-brand__name span { color: var(--e-blue); }
.e-brand__tag {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 9px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--e-violet);
  background: var(--e-bg-soft);
  border: 1px solid var(--e-line);
  border-radius: 999px;
  vertical-align: middle;
}
.e-nav__switch {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--e-muted);
  padding: 8px 14px;
  border: 1px solid var(--e-line-strong);
  border-radius: 999px;
  transition: border-color var(--e-transition), color var(--e-transition);
  white-space: nowrap;
}
.e-nav__switch:hover { color: var(--e-ink); border-color: var(--e-blue); }

/* ============================================================
   BOTONES
============================================================ */
.e-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--e-font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--e-transition), background var(--e-transition),
              border-color var(--e-transition), box-shadow var(--e-transition), opacity var(--e-transition);
  text-decoration: none;
}
.e-btn--primary {
  background: var(--e-ink);
  color: #fff;
}
.e-btn--primary:hover { background: #2a2c4a; transform: translateY(-1px); }
.e-btn--accent {
  background: var(--e-accent);
  color: #2a1c06;
  box-shadow: 0 8px 20px rgba(224, 126, 27, 0.28);
}
.e-btn--accent:hover { background: var(--e-accent-strong); color: #fff; transform: translateY(-1px); }
.e-btn--ghost {
  background: transparent;
  color: var(--e-ink);
  border-color: var(--e-line-strong);
}
.e-btn--ghost:hover { border-color: var(--e-ink); }
.e-btn--lg { padding: 17px 32px; font-size: 1.05rem; }
.e-btn:disabled, .e-btn[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ============================================================
   HERO B2B
============================================================ */
.e-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 120% at 85% -10%, rgba(90, 60, 134, 0.55) 0%, rgba(90, 60, 134, 0) 45%),
    linear-gradient(135deg, #2a2c5e 0%, #303374 42%, #3961A1 100%);
  color: #fff;
}
.e-hero::after {
  /* trama geométrica muy sutil, sin ruido */
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.6;
  pointer-events: none;
}
.e-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--e-max);
  margin: 0 auto;
  padding: clamp(56px, 9vw, 104px) 22px clamp(64px, 9vw, 96px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 54px;
  align-items: center;
}
.e-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #dfe4f5;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  padding: 8px 16px;
  border-radius: 999px;
}
.e-kicker__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--e-accent); }
.e-hero h1 { color: #fff; margin: 22px 0 18px; max-width: 16ch; }
.e-hero h1 em { color: #FFD9A6; font-style: normal; }
.e-hero__sub {
  color: #d7dcf0;
  font-size: 1.12rem;
  max-width: 46ch;
  margin-bottom: 30px;
}
.e-hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.e-hero__ctas .e-btn--ghost { color: #fff; border-color: rgba(255, 255, 255, 0.45); }
.e-hero__ctas .e-btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }

/* Tarjeta lateral del hero: anticipo del agente */
.e-hero__card {
  background: rgba(255, 255, 255, 0.97);
  color: var(--e-text);
  border-radius: var(--e-radius-lg);
  padding: 26px;
  box-shadow: var(--e-shadow-lg);
}
.e-hero__card-head {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--e-line);
  margin-bottom: 16px;
}
.e-hero__card-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--e-violet), var(--e-blue));
  display: grid; place-items: center;
  color: #fff; font-weight: 700; font-family: var(--e-font-title);
  flex-shrink: 0;
}
.e-hero__card-head strong { font-family: var(--e-font-title); font-size: 1rem; color: var(--e-ink); }
.e-hero__card-head small { display: block; color: var(--e-faint); font-size: 0.78rem; }
.e-hero__bubble {
  background: var(--e-bg-soft);
  border-radius: 4px 14px 14px 14px;
  padding: 12px 15px;
  font-size: 0.94rem;
  color: var(--e-text);
  margin-bottom: 10px;
}
.e-hero__bubble:last-of-type { margin-bottom: 18px; }
.e-hero__card .e-btn { width: 100%; }

/* ============================================================
   SECCIONES GENÉRICAS
============================================================ */
.e-section { padding: clamp(60px, 8vw, 96px) 0; }
.e-section--soft { background: var(--e-bg-soft); }
.e-section__head { max-width: 640px; margin: 0 auto 46px; text-align: center; }
.e-eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--e-blue);
  margin-bottom: 14px;
}
.e-section__head p { margin-top: 14px; }

/* ============================================================
   AGENTE / DIAGNÓSTICO
============================================================ */
.e-agent {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 26px;
  align-items: start;
}
.e-agent__main {
  background: var(--e-surface);
  border: 1px solid var(--e-line);
  border-radius: var(--e-radius-lg);
  box-shadow: var(--e-shadow-md);
  padding: clamp(24px, 3.5vw, 40px);
}

/* Barra de progreso del agente */
.e-progress { margin-bottom: 30px; }
.e-progress__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.e-progress__step {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--e-violet);
  text-transform: uppercase;
}
.e-progress__pct { font-size: 0.8rem; color: var(--e-faint); }
.e-progress__track {
  height: 8px;
  background: var(--e-bg-soft);
  border-radius: 999px;
  overflow: hidden;
}
.e-progress__bar {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--e-violet), var(--e-blue));
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mensaje del agente */
.e-agent__say {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin-bottom: 26px;
}
.e-agent__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--e-violet), var(--e-blue));
  display: grid; place-items: center;
  color: #fff; font-weight: 700; font-family: var(--e-font-title);
}
.e-agent__say-body { flex: 1; }
.e-agent__say-body h3 { font-size: 1.28rem; margin-bottom: 4px; }
.e-agent__say-body p { font-size: 0.95rem; margin: 0; }

/* Steps */
.e-step { display: none; }
.e-step.is-active { display: block; animation: e-fade 0.35s ease; }
@keyframes e-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* Opciones tipo "chips/cards" seleccionables */
.e-choices {
  display: grid;
  gap: 12px;
  margin-bottom: 8px;
}
.e-choices--2 { grid-template-columns: repeat(2, 1fr); }
.e-choices--3 { grid-template-columns: repeat(3, 1fr); }

.e-choice {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 18px;
  border: 1.5px solid var(--e-line-strong);
  border-radius: var(--e-radius-md);
  background: var(--e-surface);
  cursor: pointer;
  transition: border-color var(--e-transition), background var(--e-transition), box-shadow var(--e-transition);
}
.e-choice:hover { border-color: var(--e-blue); }
.e-choice input { position: absolute; opacity: 0; pointer-events: none; }
.e-choice__title { font-weight: 600; color: var(--e-ink); font-size: 1rem; }
.e-choice__hint { font-size: 0.84rem; color: var(--e-muted); }
.e-choice__check {
  position: absolute;
  top: 14px; right: 14px;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--e-line-strong);
  transition: var(--e-transition);
}
.e-choice input:checked ~ .e-choice__check {
  border-color: var(--e-blue);
  background: var(--e-blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12.5l4 4 9-10'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.e-choice:has(input:checked) {
  border-color: var(--e-blue);
  background: #F3F6FC;
  box-shadow: 0 0 0 3px rgba(57, 97, 161, 0.12);
}

/* Inputs (texto / contacto) */
.e-field { margin-bottom: 18px; }
.e-field > label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--e-ink);
  margin-bottom: 7px;
}
.e-req { color: var(--e-accent-strong); }
.e-input, .e-textarea, .e-select {
  width: 100%;
  font-family: var(--e-font-body);
  font-size: 1rem;
  color: var(--e-text);
  background: var(--e-surface);
  border: 1.5px solid var(--e-line-strong);
  border-radius: var(--e-radius-sm);
  padding: 13px 15px;
  transition: border-color var(--e-transition), box-shadow var(--e-transition);
}
.e-input:focus, .e-textarea:focus, .e-select:focus {
  outline: none;
  border-color: var(--e-blue);
  box-shadow: 0 0 0 3px rgba(57, 97, 161, 0.14);
}
.e-textarea { resize: vertical; min-height: 96px; }
.e-hint { font-size: 0.82rem; color: var(--e-faint); margin-top: 6px; }

/* Navegación de pasos */
.e-step__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}
.e-step__nav .e-btn { min-width: 120px; }
.e-step__nav--end { justify-content: flex-end; }

.e-inline-error {
  background: #FCEDED;
  border: 1px solid #F1C9C9;
  color: #A12C2C;
  font-size: 0.9rem;
  padding: 11px 14px;
  border-radius: var(--e-radius-sm);
  margin-top: 16px;
}

/* Panel lateral: lectura en vivo del diagnóstico */
.e-readout {
  position: sticky;
  top: 86px;
  background: var(--e-ink);
  color: #fff;
  border-radius: var(--e-radius-lg);
  padding: 26px;
  box-shadow: var(--e-shadow-md);
}
.e-readout__title {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #aeb4d6;
  margin-bottom: 18px;
}
.e-readout__list { list-style: none; display: grid; gap: 2px; }
.e-readout__item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 0.9rem;
}
.e-readout__item:last-child { border-bottom: 0; }
.e-readout__k { color: #a9aed0; }
.e-readout__v { font-weight: 600; color: #fff; text-align: right; }
.e-readout__v[data-empty="true"] { color: #6a6f93; font-weight: 400; }
.e-readout__gauge {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.e-readout__gauge-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #c5cae6;
  margin-bottom: 9px;
}
.e-readout__gauge-track {
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}
.e-readout__gauge-bar {
  height: 100%;
  width: 8%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--e-accent), #FFD9A6);
  transition: width 0.5s ease;
}

/* ============================================================
   COTIZADOR EN 1 MINUTO
============================================================ */
.e-quoter {
  background: var(--e-surface);
  border: 1px solid var(--e-line);
  border-radius: var(--e-radius-lg);
  box-shadow: var(--e-shadow-md);
  padding: clamp(22px, 3.5vw, 38px);
}
.e-quoter__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
}

/* Panel de estimación en vivo */
.e-estimate {
  margin-top: 26px;
  background: var(--e-bg-soft);
  border: 1px solid var(--e-line);
  border-radius: var(--e-radius-md);
  padding: clamp(20px, 3vw, 30px);
}
.e-estimate__label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--e-blue);
  margin-bottom: 8px;
}
.e-estimate__amount { display: flex; align-items: baseline; gap: 8px; }
.e-estimate__cur {
  font-family: var(--e-font-title);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--e-ink);
}
.e-estimate__value {
  font-family: var(--e-font-title);
  font-size: clamp(2.6rem, 7vw, 3.4rem);
  font-weight: 700;
  color: var(--e-ink);
  line-height: 1;
}
.e-estimate__tier {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--e-accent-strong);
  background: var(--e-accent-soft);
  border: 1px solid #F3D7AC;
  padding: 5px 12px;
  border-radius: 999px;
}
.e-estimate__recap {
  list-style: none;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed var(--e-line-strong);
}
.e-estimate__recap li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 0;
  font-size: 0.92rem;
  color: var(--e-muted);
  border-bottom: 1px solid var(--e-line);
}
.e-estimate__recap li:last-child { border-bottom: 0; }
.e-estimate__recap b { color: var(--e-blue); font-weight: 600; text-align: right; }
.e-estimate__note {
  font-size: 0.84rem;
  color: var(--e-accent-strong);
  margin-top: 16px;
}
.e-estimate__cta {
  margin-top: 20px;
}
.e-estimate__cta .e-btn { width: 100%; }
.e-estimate__bullets {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 18px;
}
.e-estimate__bullets li {
  position: relative;
  padding-left: 18px;
  font-size: 0.82rem;
  color: var(--e-muted);
}
.e-estimate__bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--e-ok);
}

/* Refinar cotización — colapsable */
.e-refine {
  margin-top: 20px;
  border: 1px solid var(--e-line);
  border-radius: var(--e-radius-md);
  background: var(--e-surface);
}
.e-refine__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--e-font-body);
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--e-ink);
  border-radius: var(--e-radius-md);
}
.e-refine__chevron {
  width: 11px; height: 11px;
  border-right: 2px solid var(--e-muted);
  border-bottom: 2px solid var(--e-muted);
  transform: rotate(45deg);
  transition: transform var(--e-transition);
  flex-shrink: 0;
}
.e-refine__toggle[aria-expanded="true"] .e-refine__chevron { transform: rotate(-135deg); }
.e-refine__panel {
  padding: 4px 20px 22px;
  border-top: 1px solid var(--e-line);
}
.e-refine__hint { font-size: 0.84rem; color: var(--e-faint); margin: 14px 0 16px; }

/* Datos de contacto integrados en el panel "Refinar cotización" */
.e-refine__contact {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--e-line);
}
.e-refine__contact-title {
  font-family: var(--e-font-title);
  font-weight: 700;
  font-size: 1rem;
  color: var(--e-ink);
  margin: 0;
}
.e-refine__contact .e-field { margin-top: 14px; }
.e-refine__contact-submit { width: 100%; margin-top: 18px; }

/* ============================================================
   RECOMENDACIÓN (equipo recomendado para el caso)
============================================================ */
.e-result { display: none; scroll-margin-top: 80px; }
.e-result.is-visible { display: block; animation: e-fade 0.45s ease; }

.e-reco {
  position: relative;
  background: var(--e-surface);
  border: 1px solid var(--e-line);
  border-radius: var(--e-radius-xl);
  box-shadow: var(--e-shadow-lg);
  overflow: hidden;
}
.e-reco__top {
  background: linear-gradient(135deg, #2a2c5e, #3961A1);
  color: #fff;
  padding: 28px clamp(24px, 4vw, 42px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.e-reco__level-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #cfd5ef;
}
.e-reco__level {
  font-family: var(--e-font-title);
  font-size: 1.7rem;
  color: #fff;
  margin-top: 4px;
}
.e-reco__match {
  text-align: right;
}
.e-reco__match b {
  font-family: var(--e-font-title);
  font-size: 2rem;
  display: block;
  line-height: 1;
}
.e-reco__match span { font-size: 0.78rem; color: #cfd5ef; }

.e-reco__body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
}
.e-reco__plan { padding: clamp(24px, 4vw, 40px); }
.e-reco__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--e-violet);
  background: var(--e-bg-soft);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.e-reco__plan h3 { font-size: 1.7rem; margin-bottom: 8px; }
.e-reco__plan-claim { color: var(--e-muted); margin-bottom: 22px; }
.e-reco__team-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--e-faint);
  margin-bottom: 12px;
}
.e-reco__team { list-style: none; display: grid; gap: 11px; }
.e-reco__team li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.96rem;
  color: var(--e-text);
}
.e-reco__team li::before {
  content: "";
  width: 20px; height: 20px;
  margin-top: 1px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #E7F1EA url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%232E9E6B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12.5l4 4 9-10'/%3E%3C/svg%3E") center / 13px no-repeat;
}

/* Lado del precio con ancla S/3000 */
.e-reco__price {
  background: var(--e-bg-soft);
  border-left: 1px solid var(--e-line);
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
}
.e-reco__urgency {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--e-accent-strong);
  background: var(--e-accent-soft);
  border: 1px solid #F3D7AC;
  padding: 7px 13px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.e-reco__urgency::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--e-accent-strong);
  animation: e-pulse 1.6s infinite;
}
@keyframes e-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.e-anchor { margin-bottom: 6px; }
.e-anchor__label { font-size: 0.84rem; color: var(--e-muted); }
.e-anchor__value {
  font-size: 1.1rem;
  color: var(--e-faint);
  text-decoration: line-through;
  font-weight: 600;
}
.e-reco__now {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 4px 0 4px;
}
.e-reco__now .e-cur { font-size: 1.3rem; font-weight: 600; color: var(--e-ink); font-family: var(--e-font-title); }
.e-reco__now .e-amt { font-size: 3rem; font-weight: 700; color: var(--e-ink); font-family: var(--e-font-title); line-height: 1; }
.e-reco__now .e-from { font-size: 0.86rem; color: var(--e-muted); }
.e-reco__save {
  font-size: 0.92rem;
  color: var(--e-ok);
  font-weight: 600;
  margin-bottom: 20px;
}
.e-reco__price .e-btn { width: 100%; margin-top: auto; }
.e-reco__note { font-size: 0.78rem; color: var(--e-faint); text-align: center; margin-top: 12px; }

/* ============================================================
   ENVÍO DE LA SOLICITUD (WhatsApp / correo) — cierre del diagnóstico
============================================================ */
.e-send {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--e-line);
}
.e-send__head { text-align: center; max-width: 640px; margin: 0 auto 26px; }
.e-send__head h3 { margin-bottom: 8px; }
.e-send__summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.e-send__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.e-send__opt {
  display: flex;
  flex-direction: column;
  background: var(--e-surface);
  border: 1px solid var(--e-line);
  border-radius: var(--e-radius-lg);
  box-shadow: var(--e-shadow-sm);
  padding: clamp(22px, 3vw, 30px);
}
.e-send__opt--wa { border-color: #BFE6C9; background: #F5FBF7; }
.e-send__opt h4 { font-size: 1.2rem; margin-bottom: 8px; }
.e-send__opt > p { font-size: 0.92rem; margin-bottom: 18px; }
.e-send__opt .e-field { margin-bottom: 14px; }
.e-send__opt .e-btn { width: 100%; margin-top: auto; }
.e-send__opt form .e-check { margin-bottom: 16px; }
.e-send__badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--e-violet);
  background: var(--e-bg-soft);
  border: 1px solid var(--e-line);
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.e-send__badge--wa { color: var(--e-ok); background: #E7F1EA; border-color: #BFE6C9; }

/* ============================================================
   FORMULARIO EMPRESA
============================================================ */
.e-form-wrap { display: none; scroll-margin-top: 80px; }
.e-form-wrap.is-visible { display: block; animation: e-fade 0.45s ease; }

.e-form-card {
  background: var(--e-surface);
  border: 1px solid var(--e-line);
  border-radius: var(--e-radius-lg);
  box-shadow: var(--e-shadow-md);
  padding: clamp(24px, 4vw, 44px);
  max-width: 760px;
  margin: 0 auto;
}
.e-form-card__head { margin-bottom: 26px; }
.e-form-card__head h3 { margin-bottom: 8px; }
.e-form-card__summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.e-pill {
  font-size: 0.8rem;
  color: var(--e-text);
  background: var(--e-bg-soft);
  border: 1px solid var(--e-line);
  padding: 6px 12px;
  border-radius: 999px;
}
.e-pill b { color: var(--e-ink); font-weight: 600; }

.e-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.e-grid .e-col-2 { grid-column: 1 / -1; }

.e-check {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin: 6px 0 22px;
  font-size: 0.9rem;
  color: var(--e-muted);
}
.e-check input { margin-top: 3px; width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--e-blue); }

.e-form-error {
  background: #FCEDED;
  border: 1px solid #F1C9C9;
  color: #A12C2C;
  font-size: 0.92rem;
  padding: 12px 15px;
  border-radius: var(--e-radius-sm);
  margin-bottom: 18px;
  display: none;
}

/* Confirmación */
.e-done { display: none; text-align: center; max-width: 620px; margin: 0 auto; }
.e-done.is-visible { display: block; animation: e-fade 0.45s ease; }
.e-done__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: #E7F1EA url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%232E9E6B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M5 12.5l4 4 9-10'/%3E%3C/svg%3E") center / 34px no-repeat;
}
.e-done h3 { font-size: 1.8rem; margin-bottom: 12px; }

/* ============================================================
   POR QUÉ / GARANTÍAS
============================================================ */
.e-why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.e-why__card {
  position: relative;
  overflow: hidden;
  background: var(--e-surface);
  border: 1px solid var(--e-line);
  border-radius: var(--e-radius-md);
  padding: 30px 26px 28px;
  transition: transform var(--e-transition), box-shadow var(--e-transition), border-color var(--e-transition);
}
/* Efecto de fondo: halo de marca en la esquina, alineado a la paleta */
.e-why__card::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 150px; height: 150px;
  background: radial-gradient(circle at center, rgba(90, 60, 134, 0.16) 0%, rgba(90, 60, 134, 0) 70%);
  pointer-events: none;
}
.e-why__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--e-shadow-md);
  border-color: var(--e-line-strong);
}
.e-why__card h4 { font-size: 1.12rem; margin-bottom: 8px; color: var(--e-ink); }
.e-why__card p { font-size: 0.94rem; margin: 0; }
.e-why__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 50px; height: 50px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--e-violet), var(--e-blue));
  box-shadow: 0 8px 18px rgba(48, 51, 116, 0.22);
}
.e-why__icon svg { width: 26px; height: 26px; }
.e-why__num {
  position: absolute;
  top: 20px; right: 22px;
  font-family: var(--e-font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--e-line-strong);
  letter-spacing: 0.02em;
}

/* CTA del bloque "Cómo funciona" */
.e-howto-cta {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 30px;
  padding: clamp(24px, 4vw, 34px) clamp(24px, 4vw, 40px);
  border-radius: var(--e-radius-lg);
  background:
    radial-gradient(120% 140% at 90% -20%, rgba(90, 60, 134, 0.45) 0%, rgba(90, 60, 134, 0) 55%),
    linear-gradient(135deg, #2a2c5e 0%, #303374 55%, #3961A1 100%);
  color: #fff;
  box-shadow: var(--e-shadow-md);
}
.e-howto-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.6;
  pointer-events: none;
}
.e-howto-cta__text { position: relative; z-index: 1; max-width: 62ch; }
.e-howto-cta__text h3 { color: #fff; margin-bottom: 6px; }
.e-howto-cta__text p { color: #d7dcf0; font-size: 0.98rem; margin: 0; }
.e-howto-cta .e-btn { position: relative; z-index: 1; flex-shrink: 0; }

/* ============================================================
   FOOTER
============================================================ */
.e-footer {
  background: var(--e-ink);
  color: #c8cce4;
  padding: 40px 0;
}
.e-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.e-footer a { color: #fff; }
.e-footer__legal { font-size: 0.86rem; color: #9499bd; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 940px) {
  .e-hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .e-agent { grid-template-columns: 1fr; }
  .e-readout { position: static; }
  .e-reco__body { grid-template-columns: 1fr; }
  .e-reco__price { border-left: 0; border-top: 1px solid var(--e-line); }
  .e-send__options { grid-template-columns: 1fr; }
  .e-why { grid-template-columns: 1fr; }
  .e-howto-cta { flex-direction: column; align-items: flex-start; text-align: left; }
  .e-howto-cta .e-btn { width: 100%; }
}

@media (max-width: 560px) {
  .e-choices--3 { grid-template-columns: 1fr; }
  .e-grid { grid-template-columns: 1fr; }
  .e-quoter__grid { grid-template-columns: 1fr; }
  .e-brand__tag { display: none; }
  .e-reco__match { text-align: left; }
  .e-step__nav .e-btn { min-width: 0; flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
