/* ─── Container ──────────────────────────────── */
.servicios-tabs-container {
  --st-accent: #3B73D9;
  --st-ink: #0F172A;
  --st-muted: #64748B;
  --st-line: #E6E8EE;
  --st-radius: 18px;
  --st-radius-sm: 14px;
  width: 100%;
  font-family: 'Albert Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* ─── Grid ───────────────────────────────────── */
.st-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 14px;
  align-items: start;
}

/* ─── Left menu (card blanca) ────────────────── */
.st-menu {
  border: 1px solid var(--st-line);
  border-radius: var(--st-radius);
  padding: 14px;
  background: #fff;
}

/* ─── Tab button ─────────────────────────────── */
.st-tab {
  width: 100%;
  border: 1px solid var(--st-line);
  border-radius: var(--st-radius);
  padding: 14px;
  display: flex;
  gap: 12px;
  cursor: pointer;
  margin-top: 12px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  background: #fff;
  text-align: left;
  font-family: inherit;
  outline: none;
}

.st-tab:first-child {
  margin-top: 0;
}

.st-tab:hover {
  border-color: var(--st-accent);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .08);
}

.st-tab[aria-selected="true"] {
  border: 2px solid var(--st-accent);
}

/* ─── Tab icon ───────────────────────────────── */
.st-ico {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--st-line);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  flex: 0 0 auto;
  font-size: 20px;
}

.st-ico i {
  font-size: 20px;
  color: var(--st-accent);
}

.st-ico svg {
  width: 20px;
  height: 20px;
  fill: var(--st-accent);
}

.st-ico img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* ─── Tab text ───────────────────────────────── */
.st-tab h4 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 800;
  color: var(--st-ink);
}

.st-tab p {
  margin: 0;
  font-size: 13px;
  color: var(--st-muted);
  line-height: 1.45;
}

/* ─── Right panel ────────────────────────────── */
.st-panel {
  border: 1px solid var(--st-line);
  border-radius: var(--st-radius);
  padding: 16px;
  background: #fff;
  min-height: 320px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .06);
  transition: opacity .16s ease, transform .16s ease;
}

/* ═══════════════════════════════════════════════
   Helper CSS classes para contenido del panel
   (usá estas clases en el editor WYSIWYG)
   ═══════════════════════════════════════════════ */

/* Chip / badge */
.st-panel .st-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--st-line);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--st-ink);
  background: #fff;
}

.st-panel .st-chip i {
  width: 8px;
  height: 8px;
  background: var(--st-accent);
  border-radius: 50%;
  display: inline-block;
}

/* Headings inside panel */
.st-panel h3 {
  font-size: 22px;
  margin: 12px 0 0;
  font-weight: 900;
  color: var(--st-ink);
  letter-spacing: -.02em;
}

/* Description */
.st-panel > p,
.st-panel .st-desc {
  margin: 10px 0;
  color: var(--st-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Content block */
.st-panel .st-block {
  border: 1px solid var(--st-line);
  border-radius: var(--st-radius-sm);
  padding: 14px;
  margin-top: 14px;
  background: #fff;
}

/* Pill label */
.st-panel .st-pill {
  font-size: 12px;
  color: var(--st-muted);
  font-weight: 700;
  margin: 0 0 10px;
}

/* Checklist */
.st-panel .st-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.st-panel .st-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--st-ink);
  line-height: 1.45;
}

/* Check icon */
.st-panel .st-check {
  width: 20px;
  height: 20px;
  border-radius: 8px;
  border: 1px solid var(--st-line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--st-accent);
  font-weight: 900;
  font-size: 12px;
}

/* Buttons container */
.st-panel .st-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* Primary button */
.st-panel .st-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  background: var(--st-accent);
  color: #fff;
  box-shadow: 0 10px 25px rgba(59, 115, 217, .25);
  transition: transform .2s, filter .2s;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}

.st-panel .st-btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(0.9);
}

/* Outline button */
.st-panel .st-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  background: #fff;
  color: var(--st-accent);
  border: 2px solid var(--st-accent);
  transition: transform .2s, background .2s;
  cursor: pointer;
  white-space: nowrap;
}

.st-panel .st-btn-outline:hover {
  background: #f5f8ff;
  transform: translateY(-2px);
}

/* ─── Responsive ─────────────────────────────── */
@media (max-width: 920px) {
  .st-grid {
    grid-template-columns: 1fr;
  }

  .st-panels {
    margin-top: 12px;
  }

  .st-panel {
    min-height: auto;
  }

  .st-panel .st-btn-primary,
  .st-panel .st-btn-outline {
    width: 100%;
    justify-content: center;
  }
}
