/* Vertical /info — iteración 1: product studio cálido */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --web-bg: #FAF8F5;
  --web-bg-mesh-1: rgba(20, 184, 166, 0.08);
  --web-bg-mesh-2: rgba(99, 102, 241, 0.07);
  --web-bg-mesh-3: rgba(249, 115, 22, 0.06);
  --web-surface: #ffffff;
  --web-text: #0F172A;
  --web-text-soft: #334155;
  --web-muted: #64748B;
  --web-accent: #0D9488;
  --web-accent-warm: #EA580C;
  --web-gradient: linear-gradient(135deg, #0D9488 0%, #6366F1 100%);
  --web-gradient-soft: linear-gradient(135deg, rgba(13, 148, 136, 0.12) 0%, rgba(99, 102, 241, 0.12) 100%);
  --web-border: rgba(15, 23, 42, 0.08);
  --web-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  --web-shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --web-radius: 20px;
  --web-radius-sm: 12px;
  --web-font: "Plus Jakarta Sans", system-ui, sans-serif;
  --web-serif: "DM Serif Display", Georgia, serif;
  --web-max: 1180px;
}

body.web-vertical {
  font-family: var(--web-font);
  background: var(--web-bg);
  color: var(--web-text);
  margin: 0;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.web-vertical::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%, var(--web-bg-mesh-1), transparent 55%),
    radial-gradient(ellipse 60% 45% at 90% 10%, var(--web-bg-mesh-2), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, var(--web-bg-mesh-3), transparent 55%),
    var(--web-bg);
}

.nav-web {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--web-border);
  position: sticky;
  top: 0;
  z-index: 200;
}

.nav-web-inner {
  max-width: var(--web-max);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-web .logo-soft { height: 42px; width: auto; }

.nav-web-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.nav-web-links a {
  text-decoration: none;
  color: var(--web-muted);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.nav-web-links a:hover,
.nav-web-links a.nav-active {
  background: var(--web-gradient-soft);
  color: var(--web-accent);
}

.nav-web-links a.nav-cta {
  background: var(--web-gradient);
  color: #fff;
  box-shadow: var(--web-shadow-sm);
}

.nav-web-links a.nav-cta:hover {
  transform: translateY(-1px);
  color: #fff;
}

main.web-main {
  max-width: var(--web-max);
  margin: 0 auto;
  padding: 0 28px 80px;
}

.web-main h1,
.web-page-hero h1 {
  font-family: var(--web-serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.web-main h2,
.web-section-head h2 {
  font-family: var(--web-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  margin: 0 0 12px;
}

.web-main .lead,
.web-page-hero .lead {
  font-size: 1.125rem;
  color: var(--web-text-soft);
  margin: 0 0 28px;
  max-width: 34rem;
  line-height: 1.7;
}

.page-tag {
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--web-accent);
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--web-gradient-soft);
}

.web-hero-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0 72px;
}

@media (max-width: 900px) {
  .web-hero-split { grid-template-columns: 1fr; }
}

.web-hero-copy .hero-kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--web-accent-warm);
  margin-bottom: 12px;
}

.web-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 520px) {
  .web-hero-stats { grid-template-columns: 1fr; }
}

.web-hero-stats li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--web-text-soft);
}

.web-hero-stats .stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--web-gradient-soft);
  color: var(--web-accent);
  flex-shrink: 0;
  font-size: 18px;
}

.web-hero-visual { position: relative; }

.web-hero-visual .web-illo {
  width: 100%;
  height: auto;
  border-radius: var(--web-radius);
  box-shadow: var(--web-shadow);
}

.web-hero-visual::after {
  content: "";
  position: absolute;
  inset: 12% -8% -8% 12%;
  border-radius: var(--web-radius);
  background: var(--web-gradient);
  opacity: 0.12;
  z-index: -1;
}

.web-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

.btn-web {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-web-primary {
  background: var(--web-gradient);
  color: #fff;
  box-shadow: 0 12px 32px rgba(13, 148, 136, 0.25);
}

.btn-web-primary:hover {
  transform: translateY(-2px);
  color: #fff;
}

.btn-web-outline {
  background: var(--web-surface);
  color: var(--web-text);
  border-color: var(--web-border);
}

.btn-web-outline:hover {
  border-color: var(--web-accent);
  color: var(--web-accent);
}

.web-band {
  border-radius: calc(var(--web-radius) + 4px);
  padding: 48px;
  margin: 56px 0;
  background: var(--web-surface);
  border: 1px solid var(--web-border);
  box-shadow: var(--web-shadow-sm);
}

.web-band-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 768px) {
  .web-band { padding: 28px 24px; }
  .web-band-split { grid-template-columns: 1fr; }
}

.web-band-split .web-illo {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: var(--web-radius-sm);
  margin: 0 auto;
  display: block;
}

/* Ilustración multi-asistente (HTML; avatares PNG) */
.web-multi-bots {
  background: #fffbeb;
  border-radius: var(--web-radius-sm);
  padding: 24px 20px 16px;
  max-width: 420px;
}

.web-multi-bots__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: end;
  margin-bottom: 16px;
}

.web-multi-bots__card {
  background: #fff;
  border-radius: 16px;
  padding: 16px 12px 14px;
  text-align: center;
  border: 2px solid var(--web-border);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.web-multi-bots__card--ventas {
  border-color: #f59e0b;
}

.web-multi-bots__card--soporte {
  border-color: #14b8a6;
  transform: translateY(-12px);
}

.web-multi-bots__card--catalogo {
  border-color: #6366f1;
  transform: translateY(-4px);
}

.web-multi-bots__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 10px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}

.web-multi-bots__title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--web-text);
}

.web-multi-bots__card--ventas .web-multi-bots__title { color: #92400e; }
.web-multi-bots__card--soporte .web-multi-bots__title { color: #0f766e; }
.web-multi-bots__card--catalogo .web-multi-bots__title { color: #4338ca; }

.web-multi-bots__skeleton {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: stretch;
}

.web-multi-bots__skeleton span {
  display: block;
  height: 8px;
  border-radius: 4px;
  background: rgba(15, 23, 42, 0.08);
}

.web-multi-bots__skeleton span:last-child {
  width: 75%;
  margin: 0 auto;
}

.web-multi-bots__card--ventas .web-multi-bots__skeleton span { background: #fef3c7; }
.web-multi-bots__card--soporte .web-multi-bots__skeleton span { background: #ccfbf1; }
.web-multi-bots__card--catalogo .web-multi-bots__skeleton span { background: #e0e7ff; }

.web-multi-bots__foot {
  margin: 0;
  padding: 12px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: #1e293b;
  border-radius: 12px;
}

@media (max-width: 480px) {
  .web-multi-bots__cards {
    gap: 8px;
  }

  .web-multi-bots__card {
    padding: 12px 8px;
  }

  .web-multi-bots__avatar {
    width: 44px;
    height: 44px;
  }

  .web-multi-bots__title {
    font-size: 11px;
  }

  .web-multi-bots__foot {
    font-size: 11px;
    padding: 10px 12px;
  }
}

.web-band-split.reverse .web-band-media { order: 2; }
.web-band-split.reverse .web-band-copy { order: 1; }

.web-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.web-pill-list li {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: #fff;
  color: var(--web-text-soft);
  border: 1px solid var(--web-border);
}

.web-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.web-section-head .lead { margin-left: auto; margin-right: auto; }

.preset-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .preset-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .preset-grid { grid-template-columns: 1fr; }
}

.preset-card {
  background: var(--web-surface);
  border: 2px solid var(--web-border);
  border-radius: var(--web-radius);
  padding: 0;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  overflow: hidden;
  font-family: inherit;
}

.preset-card:hover { transform: translateY(-4px); box-shadow: var(--web-shadow-sm); }

.preset-card.is-active {
  border-color: var(--preset-accent, var(--web-accent));
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

.preset-card-thumb {
  height: 100px;
  background: var(--web-gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.preset-card-thumb img {
  max-height: 88px;
  width: auto;
  max-width: 100%;
}

.preset-card-body { padding: 16px 18px 20px; }

.preset-card-body strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.preset-card-body span {
  font-size: 13px;
  color: var(--web-muted);
}

.preset-panel {
  display: none;
  margin-top: 28px;
  border-radius: var(--web-radius);
  overflow: hidden;
  border: 1px solid var(--web-border);
  background: var(--web-surface);
  box-shadow: var(--web-shadow);
}

.preset-panel.is-open { display: grid; grid-template-columns: minmax(280px, 360px) 1fr; }

@media (max-width: 768px) {
  .preset-panel.is-open { grid-template-columns: 1fr; }
}

.preset-panel-visual {
  position: relative;
  background: var(--web-gradient-soft);
  padding: 20px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 240px;
}

.preset-panel-visual .web-bubble-preview {
  width: 100%;
  max-width: 320px;
}

.preset-panel-visual img { width: 100%; max-width: 240px; height: auto; }

.preset-panel-body { padding: 32px 36px; }

.preset-panel-body h3 {
  font-family: var(--web-serif);
  font-size: 1.5rem;
  margin: 0 0 12px;
  font-weight: 400;
}

.preset-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 24px;
}

.preset-chips span {
  background: var(--web-gradient-soft);
  color: var(--web-accent);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
}

.embed-snippet {
  background: #0F172A;
  color: #E2E8F0;
  padding: 18px 20px;
  border-radius: var(--web-radius-sm);
  font-family: ui-monospace, monospace;
  font-size: 12px;
  overflow-x: auto;
  margin: 16px 0;
}

.web-page-hero {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: center;
  padding: 48px 0 56px;
  border-bottom: 1px solid var(--web-border);
  margin-bottom: 48px;
}

@media (max-width: 900px) {
  .web-page-hero { grid-template-columns: 1fr; }
}

.web-page-hero .web-illo-hero {
  width: 100%;
  border-radius: var(--web-radius);
  box-shadow: var(--web-shadow-sm);
}

.web-page-hero-bubble {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
}

.web-content-block { max-width: 720px; margin-bottom: 40px; }

.web-content-block p { color: var(--web-text-soft); font-size: 17px; }

.web-faq-hero {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: center;
  padding: 40px 0 48px;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .web-faq-hero { grid-template-columns: 1fr; }
}

.web-faq-list { display: grid; gap: 16px; }

.web-faq-item {
  background: var(--web-surface);
  border: 1px solid var(--web-border);
  border-radius: var(--web-radius-sm);
  padding: 24px 28px;
}

.web-faq-item h2 {
  font-family: var(--web-font);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.web-faq-item p {
  margin: 0;
  color: var(--web-text-soft);
  font-size: 15px;
}

.web-trial-section {
  margin-top: 64px;
  padding: 56px;
  border-radius: calc(var(--web-radius) + 8px);
  background: var(--web-gradient);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.web-trial-section h2 {
  color: #fff;
  font-family: var(--web-serif);
  font-size: 2rem;
  margin-bottom: 12px;
}

.web-trial-section > p {
  opacity: 0.92;
  max-width: 520px;
  margin-bottom: 28px;
}

.web-trial-wrap { max-width: 480px; position: relative; z-index: 1; }

.web-trial-wrap .access-card {
  background: #fff;
  border-radius: var(--web-radius);
  padding: 28px;
  box-shadow: var(--web-shadow);
  color: var(--web-text);
}

.web-trial-wrap .access-card-tag {
  background: var(--web-gradient-soft);
  color: var(--web-accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.web-trial-wrap .access-card > p {
  font-size: 15px;
  color: var(--web-text-soft);
  line-height: 1.6;
  margin: 0 0 20px;
}

/* Formulario trial: apariencia alineada con Bootstrap form-control */
.web-trial-wrap .form-soft {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.web-trial-wrap .input-group-soft {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.web-trial-wrap .input-label-soft {
  margin-bottom: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--web-text);
}

.web-trial-wrap .input-wrapper-soft {
  position: relative;
}

.web-trial-wrap .input-icon-soft {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  transform: translateY(-50%);
  color: var(--web-muted);
  font-size: 1rem;
  line-height: 1;
  pointer-events: none;
  z-index: 1;
}

.web-trial-wrap .input-soft {
  display: block;
  width: 100%;
  padding: 0.625rem 0.875rem 0.625rem 2.5rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  font-family: inherit;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  appearance: none;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.web-trial-wrap .input-soft::placeholder {
  color: #6c757d;
  opacity: 1;
}

.web-trial-wrap .input-soft:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.web-trial-wrap .input-wrapper-soft:focus-within .input-icon-soft {
  color: #0d6efd;
}

.web-trial-wrap .error-soft {
  display: none;
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  color: #842029;
  background-color: #f8d7da;
  border: 1px solid #f5c2c7;
}

.web-trial-wrap .hint-soft {
  color: var(--web-muted);
}

.web-trial-wrap .btn-premium-soft {
  background: var(--web-gradient);
  border: none;
  color: #fff;
  width: 100%;
  border-radius: 999px;
  padding: 14px;
  font-weight: 700;
  cursor: pointer;
}

.web-trial-wrap .btn-premium-soft:hover {
  filter: brightness(1.05);
}

.web-trial-wrap .btn-premium-soft.is-loading {
  opacity: 0.88;
  pointer-events: none;
}

.web-trial-wrap .error-soft.is-visible {
  display: flex;
}

.site-footer-marketing {
  text-align: center;
  padding: 40px 28px;
  font-size: 14px;
  color: var(--web-muted);
  border-top: 1px solid var(--web-border);
  background: rgba(255,255,255,0.6);
}

.site-footer-marketing a {
  color: var(--web-accent);
  text-decoration: none;
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  background: var(--web-gradient);
  color: #fff;
  font-size: 14px;
}

.btn-cta.outline {
  background: var(--web-surface);
  color: var(--web-text);
  border: 2px solid var(--web-border);
}

.web-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}

@media (max-width: 768px) {
  .web-steps { grid-template-columns: 1fr; }
}

.web-step-card {
  background: var(--web-surface);
  border: 1px solid var(--web-border);
  border-radius: var(--web-radius-sm);
  padding: 24px;
}

.web-step-card-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.web-step-card h2 {
  font-family: var(--web-font);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 4px;
}

.web-step-subtitle {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--web-accent);
}

.web-step-card > p {
  margin: 0;
  color: var(--web-text-soft);
  font-size: 15px;
}

.web-step-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--web-gradient-soft);
  color: var(--web-accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 18px;
}

.web-band-lead { margin-bottom: 0; }

.web-embed-label {
  margin: 16px 0 0;
  font-size: 14px;
  color: var(--web-muted);
}

.web-platform-hero { padding-top: 32px; }

.web-platform-hero-simple {
  display: block;
  max-width: 820px;
  padding: 40px 0 48px;
  border-bottom: 1px solid var(--web-border);
  margin-bottom: 48px;
}

.web-platform-intro {
  margin: 0 0 24px;
  font-size: 17px;
  color: var(--web-text-soft);
  max-width: 680px;
}

.web-platform-para {
  margin: 0 0 14px;
  font-size: 16px;
  color: var(--web-text-soft);
  max-width: 540px;
}

.web-platform-channels {
  margin: 64px 0 48px;
  padding-top: 48px;
  border-top: 1px solid var(--web-border);
}

.web-channels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .web-channels-grid { grid-template-columns: 1fr; }
}

.web-channel-card {
  background: var(--web-surface);
  border: 1px solid var(--web-border);
  border-radius: var(--web-radius-sm);
  padding: 28px;
  box-shadow: var(--web-shadow-sm);
}

.web-channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--web-gradient-soft);
  color: var(--web-accent);
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 14px;
}

.web-channel-card h3 {
  font-family: var(--web-font);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.web-channel-card p {
  margin: 0;
  font-size: 15px;
  color: var(--web-text-soft);
  line-height: 1.55;
}

.web-platform-channels-cta {
  justify-content: center;
}

.web-platform-examples {
  margin: 64px 0 48px;
  padding-top: 48px;
  border-top: 1px solid var(--web-border);
}

.web-example-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .web-example-grid { grid-template-columns: 1fr; }
}

.web-example-card {
  background: var(--web-surface);
  border: 1px solid var(--web-border);
  border-radius: var(--web-radius-sm);
  padding: 28px;
  box-shadow: var(--web-shadow-sm);
}

.web-example-context {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--web-muted);
  margin-bottom: 14px;
}

.web-example-question {
  font-family: var(--web-serif);
  font-size: 1.25rem;
  line-height: 1.35;
  margin: 0 0 12px;
  color: var(--web-text);
}

.web-example-answer {
  margin: 0;
  font-size: 15px;
  color: var(--web-text-soft);
}

.web-platform-cta {
  margin-top: 16px;
  padding-top: 48px;
  border-top: 1px solid var(--web-border);
}

.web-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--web-gradient);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.web-illo { display: block; max-width: 100%; height: auto; }

/* Vista previa burbuja del asistente (como en la web del cliente) */
.web-bubble-preview { width: 100%; }

.web-bubble-preview-browser {
  background: var(--web-surface);
  border-radius: var(--web-radius);
  border: 1px solid var(--web-border);
  box-shadow: var(--web-shadow);
  overflow: hidden;
}

.web-bubble-preview-chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  background: #f1f5f9;
  border-bottom: 1px solid var(--web-border);
}

.web-bubble-preview-chrome span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  flex-shrink: 0;
}

.web-bubble-preview-chrome span:nth-child(1) { background: #fca5a5; }
.web-bubble-preview-chrome span:nth-child(2) { background: #fde047; }
.web-bubble-preview-chrome span:nth-child(3) { background: #86efac; }

.web-bubble-preview-url {
  flex: 1;
  height: 22px;
  margin-left: 8px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--web-border);
}

.web-bubble-preview-page {
  position: relative;
  min-height: 200px;
  padding: 20px 18px 72px;
  background: linear-gradient(165deg, #f8fafc 0%, #f1f5f9 55%, #eef2ff 100%);
}

.web-bubble-preview--hero .web-bubble-preview-page {
  min-height: 280px;
  padding-bottom: 88px;
}

.web-bubble-preview-skeleton .web-bubble-preview-bar {
  height: 14px;
  width: 42%;
  border-radius: 6px;
  background: rgba(148, 163, 184, 0.35);
  margin-bottom: 16px;
}

.web-bubble-preview-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(148, 163, 184, 0.22);
  margin-bottom: 10px;
}

.web-bubble-preview-line.w80 { width: 80%; }
.web-bubble-preview-line.w70 { width: 70%; }
.web-bubble-preview-line.w60 { width: 60%; }

.web-bubble-preview-blocks {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.web-bubble-preview-blocks span {
  flex: 1;
  height: 48px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.web-bubble-widget {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  max-width: calc(100% - 24px);
  z-index: 2;
}

.web-bubble-speech {
  position: relative;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 999px;
  padding: 11px 18px;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.12);
  margin-right: -8px;
  z-index: 1;
}

.web-bubble-speech::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 7px solid transparent;
  border-left-color: #fff;
  filter: drop-shadow(1px 0 0 rgba(148, 163, 184, 0.25));
}

.web-bubble-speech p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--web-text-soft);
  max-width: 220px;
}

.web-bubble-preview--hero .web-bubble-speech p {
  font-size: 15px;
  max-width: 260px;
}

.web-bubble-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.14);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  z-index: 2;
}

.web-bubble-preview--hero .web-bubble-avatar {
  width: 60px;
  height: 60px;
}

.web-bubble-preview-caption {
  margin: 12px 0 0;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--web-muted);
}

@media (max-width: 768px) {
  .web-bubble-speech p {
    font-size: 12px;
    max-width: 160px;
  }

  .web-bubble-avatar {
    width: 46px;
    height: 46px;
  }
}
