/* TuCM — landing pública. Tema claro, paleta azul→morado del logo. */

:root {
  --c-bg: #ffffff;
  --c-bg-alt: #f7f8fc;
  --c-bg-soft: #f1f3fb;
  --c-text: #0b1220;
  --c-text-soft: #4b5470;
  --c-text-muted: #7c849a;
  --c-border: #e6e8f1;
  --c-border-strong: #d6d9e6;

  --c-blue: #3b82f6;
  --c-blue-deep: #1d4ed8;
  --c-purple: #8b5cf6;
  --c-purple-deep: #6d28d9;

  --grad: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  --grad-soft: linear-gradient(135deg, rgba(59,130,246,0.08) 0%, rgba(139,92,246,0.08) 100%);

  --shadow-sm: 0 1px 2px rgba(15,23,42,0.04), 0 1px 3px rgba(15,23,42,0.06);
  --shadow-md: 0 4px 12px rgba(15,23,42,0.06), 0 2px 6px rgba(15,23,42,0.04);
  --shadow-lg: 0 24px 48px -12px rgba(59,130,246,0.18), 0 8px 24px rgba(139,92,246,0.10);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --container: 1180px;
  --transition: 200ms cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--c-blue-deep); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-purple-deep); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- HEADER / NAV ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--c-border);
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  color: var(--c-text);
  letter-spacing: -0.02em;
}
.brand:hover { color: var(--c-text); }
.brand-logo {
  width: 36px; height: 36px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.brand-name {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 8px;
}
.nav-links a {
  color: var(--c-text-soft);
  font-weight: 500;
  font-size: 14.5px;
  position: relative;
}
.nav-links a:hover { color: var(--c-text); }
.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang-switch {
  font-weight: 600;
  font-size: 13px;
  color: var(--c-text-soft);
  border: 1px solid var(--c-border);
  border-radius: 999px;
  padding: 6px 12px;
  letter-spacing: 0.04em;
}
.lang-switch:hover {
  color: var(--c-text);
  border-color: var(--c-border-strong);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 6px 18px rgba(99,102,241,0.28);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(99,102,241,0.36);
}
.btn-ghost {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-border);
}
.btn-ghost:hover { color: var(--c-text); border-color: var(--c-text); }
.btn-lg { padding: 14px 28px; font-size: 16px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ----- HERO ----- */
.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(1100px 500px at 85% -20%, rgba(139,92,246,0.18), transparent 60%),
    radial-gradient(900px 460px at 0% 10%,  rgba(59,130,246,0.18), transparent 60%),
    var(--c-bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-soft);
  color: var(--c-purple-deep);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(139,92,246,0.2);
  letter-spacing: 0.02em;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin: 22px 0 22px;
}
.hero h1 .grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 18.5px;
  color: var(--c-text-soft);
  max-width: 560px;
  margin: 0 0 22px;
}

/* 3 wins debajo del subtitle: los "OOOOO" rápidos */
.hero-wins {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-wins li {
  position: relative;
  padding-left: 30px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.5;
}
.hero-wins li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  background: var(--grad);
  padding: 6px;
  box-shadow: var(--shadow-lg);
}
.hero-visual-inner {
  position: relative;
  border-radius: calc(var(--radius-lg) - 6px);
  background: #fff;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  overflow: hidden;
}
.hero-logo {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

/* Burbuja Telegram flotante sobre el logo (pista visual: "se aprueba por chat") */
.tg-float {
  position: absolute;
  right: -14px;
  bottom: 24px;
  width: 260px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 45px -12px rgba(15, 23, 42, 0.25), 0 8px 18px rgba(59, 130, 246, 0.18);
  border: 1px solid var(--c-border);
  overflow: hidden;
  transform: rotate(-2deg);
  animation: tgFloat 4s ease-in-out infinite;
}
@keyframes tgFloat {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50%      { transform: rotate(-2deg) translateY(-6px); }
}
.tg-float__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #5b8def 0%, #7d6cf0 100%);
  color: #fff;
}
.tg-float__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  color: #5b8def;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.tg-float__name {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
}
.tg-float__status {
  font-size: 10px;
  opacity: 0.85;
  line-height: 1.1;
  margin-top: 2px;
}
.tg-float__bubble {
  margin: 12px;
  padding: 10px 12px;
  background: var(--c-bg-soft);
  border-radius: 12px;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--c-text);
}
.tg-float__btns {
  display: flex;
  gap: 8px;
  padding: 0 12px 12px;
}
.tg-float__btn {
  flex: 1;
  text-align: center;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: #fff;
  border: 1px solid var(--c-border);
  color: var(--c-text);
}
.tg-float__btn--primary {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
}
@media (max-width: 960px) {
  .tg-float { width: 220px; right: 8px; bottom: 12px; }
}

/* ----- SECTIONS ----- */
section {
  padding: 96px 0;
}
section.alt {
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 14px 0 10px;
}
.section-head p {
  font-size: 17px;
  color: var(--c-text-soft);
  margin: 0;
}

/* ----- HOW (3 steps) ----- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.step:hover {
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.step h3 {
  font-size: 20px;
  margin: 10px 0 10px;
  letter-spacing: -0.01em;
}
.step p {
  color: var(--c-text-soft);
  margin: 0;
  font-size: 15.5px;
}

/* ----- FEATURES grid ----- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.feature:hover {
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.feature .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad-soft);
  border: 1px solid rgba(139,92,246,0.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--c-purple-deep);
}
.feature .icon svg { width: 22px; height: 22px; }
.feature h3 {
  font-size: 18px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.feature p {
  color: var(--c-text-soft);
  margin: 0;
  font-size: 15px;
}

/* ----- WHO ----- */
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.who-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.who-card h3 {
  font-size: 17px;
  margin: 8px 0 6px;
}
.who-card p {
  color: var(--c-text-soft);
  font-size: 14.5px;
  margin: 0;
}
.who-card .who-emoji {
  font-size: 32px;
  display: inline-block;
  background: var(--grad-soft);
  width: 64px; height: 64px; line-height: 64px;
  border-radius: 18px;
  margin-bottom: 6px;
}

/* ----- TRUST ----- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.trust-card {
  display: flex;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.trust-card .icon {
  width: 44px; height: 44px;
  flex: 0 0 44px;
  border-radius: 12px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.trust-card .icon svg { width: 22px; height: 22px; }
.trust-card h3 { font-size: 17px; margin: 0 0 4px; }
.trust-card p { margin: 0; font-size: 14.5px; color: var(--c-text-soft); }

/* ----- FINAL CTA ----- */
.cta-final {
  background: var(--grad);
  border-radius: var(--radius-lg);
  padding: 64px 32px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.cta-final h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.cta-final p {
  font-size: 17px;
  opacity: 0.92;
  margin: 0 0 28px;
}
.cta-final .btn {
  background: #fff;
  color: var(--c-purple-deep);
  font-weight: 700;
}
.cta-final .btn:hover { color: var(--c-blue-deep); transform: translateY(-1px); }

/* ----- FOOTER ----- */
.site-footer {
  background: #0b1220;
  color: #c8cdde;
  padding: 64px 0 28px;
  margin-top: 80px;
}
.site-footer h4 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .brand-logo { width: 44px; height: 44px; border-radius: 10px; }
.footer-tagline {
  margin-top: 14px;
  font-size: 14.5px;
  color: #9aa1b8;
  max-width: 260px;
}
.footer-saas-note {
  margin: 0 0 10px;
  font-size: 13px;
  color: #9aa1b8;
  line-height: 1.5;
  font-style: italic;
}
.footer-col address {
  font-style: normal;
  font-size: 14px;
  color: #c8cdde;
  line-height: 1.7;
}
.footer-col address strong { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: #c8cdde;
  font-size: 14px;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: #7e8499;
}
.back-top {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: #c8cdde;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.back-top:hover { color: #fff; border-color: #fff; }

/* ----- LEGAL PAGES ----- */
.legal-hero {
  padding: 64px 0 32px;
  background:
    radial-gradient(800px 400px at 80% -10%, rgba(139,92,246,0.12), transparent 60%),
    radial-gradient(700px 360px at 0% 0%, rgba(59,130,246,0.12), transparent 60%),
    var(--c-bg);
  border-bottom: 1px solid var(--c-border);
}
.legal-hero h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 14px 0 8px;
}
.legal-hero p.lead {
  color: var(--c-text-soft);
  font-size: 17px;
  max-width: 720px;
  margin: 0;
}
.legal-hero .updated {
  display: inline-block;
  font-size: 13px;
  color: var(--c-text-muted);
  margin-top: 12px;
}
.legal {
  padding: 48px 0 80px;
}
.legal .container {
  max-width: 820px;
}
.legal h2 {
  font-size: 24px;
  letter-spacing: -0.01em;
  margin: 48px 0 12px;
  padding-top: 8px;
  border-top: 1px solid var(--c-border);
  color: var(--c-text);
}
.legal h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 16px; }
.legal h3 { font-size: 18px; margin: 28px 0 8px; }
.legal p, .legal li {
  color: var(--c-text-soft);
  font-size: 15.5px;
  line-height: 1.75;
}
.legal p strong, .legal li strong { color: var(--c-text); }
.legal ul, .legal ol { padding-left: 22px; }
.legal li { margin-bottom: 6px; }
.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14.5px;
}
.legal th, .legal td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--c-border);
  vertical-align: top;
}
.legal th {
  background: var(--c-bg-soft);
  color: var(--c-text);
  font-weight: 600;
}
.legal .toc {
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0 40px;
}
.legal .toc h4 {
  margin: 0 0 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-muted);
}
.legal .toc ol { margin: 0; padding-left: 20px; column-count: 2; column-gap: 24px; }
.legal .toc li { margin-bottom: 4px; font-size: 14.5px; }
.legal .callout {
  background: var(--grad-soft);
  border: 1px solid rgba(139,92,246,0.18);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 20px 0;
}
.legal .callout p { margin: 0; }

.deletion-form {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 24px 0;
}
.deletion-form label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--c-text);
  margin-bottom: 6px;
}
.deletion-form input, .deletion-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--c-border-strong);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  margin-bottom: 16px;
  background: #fff;
  color: var(--c-text);
}
.deletion-form input:focus, .deletion-form textarea:focus {
  outline: 2px solid rgba(99,102,241,0.4);
  border-color: var(--c-blue);
}
.status-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 24px 0;
}
.status-card .badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.badge-pending { background: #fef3c7; color: #92400e; }
.badge-done    { background: #d1fae5; color: #065f46; }
.badge-error   { background: #fee2e2; color: #991b1b; }

/* ----- RESPONSIVE ----- */
@media (max-width: 960px) {
  .hero { padding: 64px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  section { padding: 64px 0; }
  .steps { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .legal .toc ol { column-count: 1; }
  .nav-links, .nav-actions .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    background: #fff;
    padding: 18px 24px;
    gap: 14px;
    border-bottom: 1px solid var(--c-border);
    box-shadow: var(--shadow-md);
  }
  .features-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ───────────────────────────────────────────────────────────────────
   Planes / Precios
   ─────────────────────────────────────────────────────────────────── */

.planes-intro {
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-text-soft);
  max-width: 760px;
  margin: 16px auto 0;
  text-align: center;
}
.planes-intro strong { color: var(--c-text); font-weight: 600; }

.planes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.plan-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-border-strong);
}

.plan-card--featured {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--c-bg), var(--c-bg)) padding-box,
    var(--grad) border-box;
  box-shadow: var(--shadow-lg);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(139,92,246,0.35);
}

.plan-name {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-text-soft);
  margin-bottom: 12px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.plan-price__num {
  font-size: 38px;
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -1px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.plan-price__per {
  font-size: 14px;
  color: var(--c-text-muted);
  font-weight: 500;
}

.plan-price-iva {
  font-size: 12px;
  color: var(--c-text-muted);
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.plan-price-iva__total { font-size: 11px; color: var(--c-text-muted); opacity: 0.85; }

.plan-minimos-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--c-text-soft);
  margin-bottom: 8px;
}

.plan-minimos {
  list-style: none;
  padding: 0;
  margin: 0 0 8px 0;
}
.plan-minimos li {
  font-size: 14px;
  color: var(--c-text);
  padding: 6px 0;
  border-bottom: 1px solid var(--c-bg-soft);
  position: relative;
  padding-left: 20px;
}
.plan-minimos li:last-child { border-bottom: 0; }
.plan-minimos li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 12px;
  background: var(--grad);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='currentColor'><path d='M13.5 4l-7.5 7.5L2.5 8' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='currentColor'><path d='M13.5 4l-7.5 7.5L2.5 8' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center;
}

.plan-extra {
  font-size: 12.5px;
  color: var(--c-purple-deep);
  font-style: italic;
  margin: 0 0 20px;
  padding: 8px 0;
}

.plan-para-quien {
  font-size: 13px;
  color: var(--c-text-soft);
  line-height: 1.55;
  margin-bottom: 22px;
  padding: 14px;
  background: var(--grad-soft);
  border-radius: var(--radius-sm);
}
.plan-para-quien__label {
  font-weight: 700;
  color: var(--c-text);
  display: block;
  margin-bottom: 4px;
  text-transform: uppercase;
  font-size: 10.5px;
  letter-spacing: 0.5px;
}

.plan-cta {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

.planes-detalle-link {
  text-align: center;
  margin-top: 32px;
}
.planes-detalle-link a {
  color: var(--c-purple-deep);
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
}
.planes-detalle-link a:hover { color: var(--c-blue-deep); }

/* Hero reducido para páginas secundarias (precios, futuro) */
.hero--small {
  padding: 60px 0 30px;
  text-align: center;
}
.hero--small h1 {
  font-size: 38px;
  margin: 12px 0 8px;
}
.hero--small .lead {
  max-width: 640px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--c-text-soft);
}

/* ── Tabla comparativa (/precios) ───────────────────────────────── */
.compara-wrap {
  overflow-x: auto;
  margin-top: 32px;
}
.compara-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compara-table th,
.compara-table td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid var(--c-border);
}
.compara-table thead th {
  background: var(--grad-soft);
  border-bottom: 2px solid var(--c-border-strong);
  vertical-align: top;
}
.compara-table thead th:first-child,
.compara-table tbody td:first-child { text-align: left; }
.compara-th__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-text);
}
.compara-th__price {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-top: 4px;
}
.compara-td__label {
  font-weight: 600;
  color: var(--c-text-soft);
  text-transform: capitalize;
}
.compara-td__cant {
  font-weight: 600;
  color: var(--c-text);
  font-size: 15px;
}
.compara-table tbody tr:last-child td { border-bottom: 0; }
.compara-foot {
  text-align: center;
  font-size: 13px;
  color: var(--c-purple-deep);
  font-style: italic;
  margin-top: 16px;
}

/* ── FAQ ────────────────────────────────────────────────────────── */
.faq-list {
  max-width: 820px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: var(--c-border-strong); box-shadow: var(--shadow-sm); }
.faq-item summary {
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 32px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--c-purple);
  transition: transform var(--transition);
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-answer {
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--c-text-soft);
}
.faq-answer strong { color: var(--c-text); }

/* Responsive planes */
@media (max-width: 980px) {
  .planes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .planes-grid { grid-template-columns: 1fr; }
  .hero--small h1 { font-size: 28px; }
  .compara-table th, .compara-table td { padding: 10px 8px; font-size: 13px; }
}

/* ───────────────────────────────────────────────────────────────────
   Hero: línea de precio + gratis
   ─────────────────────────────────────────────────────────────────── */

.hero-price-line {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-purple-deep);
  background: var(--grad-soft);
  padding: 8px 16px;
  border-radius: 999px;
  margin: 16px 0 22px;
  border: 1px solid rgba(139, 92, 246, 0.18);
}

/* ───────────────────────────────────────────────────────────────────
   Por qué TuCM (diferenciales)
   ─────────────────────────────────────────────────────────────────── */

.porque-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.porque-card--highlight {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--c-bg), var(--c-bg)) padding-box,
    var(--grad) border-box;
  box-shadow: var(--shadow-lg);
}
.porque-card--highlight h3 { color: var(--c-purple-deep); -webkit-background-clip: initial; background-clip: initial; background: none; }

.porque-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.porque-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-border-strong);
}
.porque-emoji {
  font-size: 36px;
  flex-shrink: 0;
  line-height: 1;
}
.porque-card h3 {
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--c-text);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.porque-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--c-text-soft);
  margin: 0;
}

/* Bloque "Especialistas en Instagram" */
.especial-block {
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--grad-soft);
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: var(--radius);
  display: flex;
  gap: 22px;
  align-items: center;
}
.especial-icon { font-size: 40px; line-height: 1; flex-shrink: 0; }
.especial-block h3 {
  font-size: 19px;
  margin: 0 0 6px;
  color: var(--c-text);
}
.especial-block p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--c-text-soft);
}

/* Nota freemium / lista de espera bajo cards */
.planes-freemium-note {
  margin: 32px auto 0;
  max-width: 780px;
  text-align: center;
  font-size: 14.5px;
  color: var(--c-text-soft);
  background: var(--grad-soft);
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 720px) {
  .porque-grid { grid-template-columns: 1fr; }
  .porque-card { flex-direction: column; gap: 12px; }
  .especial-block { flex-direction: column; text-align: center; gap: 14px; padding: 22px; }
}

/* ───────────────────────────────────────────────────────────────────
   Día a día (sección "Qué te llevas cada día")
   ─────────────────────────────────────────────────────────────────── */

.dia-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.dia-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.dia-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-border-strong);
}
.dia-card h3,
.dia-card h4 {
  font-size: 17px;
  margin: 0 0 12px;
  color: var(--c-text);
  line-height: 1.35;
}
.dia-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--c-text-soft);
  margin: 0;
}

@media (max-width: 980px) {
  .dia-grid { grid-template-columns: 1fr; }
}

/* Día a día integrado dentro de Features (sub-bloque) */
.dia-inline {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px dashed var(--c-border);
}
.dia-inline__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-text);
  margin: 0 0 22px;
  text-align: center;
}
.dia-inline .dia-grid { margin-top: 0; }

/* ───────────────────────────────────────────────────────────────────
   Trust strip (debajo del hero) — señales above-fold
   ─────────────────────────────────────────────────────────────────── */
.trust-strip {
  padding: 18px 0;
  background: linear-gradient(180deg, rgba(56,82,255,0.04), rgba(143,56,255,0.04));
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.trust-strip__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 32px;
}
.trust-strip__list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text-soft);
  white-space: nowrap;
}
.trust-strip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}
@media (max-width: 720px) {
  .trust-strip { padding: 14px 0; }
  .trust-strip__list { gap: 10px 18px; }
  .trust-strip__list li { font-size: 13px; }
}

/* ───────────────────────────────────────────────────────────────────
   FAQ home (objeciones de clasificación)
   ─────────────────────────────────────────────────────────────────── */
.faq-home-list {
  max-width: 820px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-home-item {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-home-item[open] {
  border-color: var(--c-border-strong);
  box-shadow: var(--shadow-sm);
}
.faq-home-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px;
  font-weight: 600;
  font-size: 16px;
  color: var(--c-text);
  position: relative;
  padding-right: 50px;
}
.faq-home-item summary::-webkit-details-marker { display: none; }
.faq-home-item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--c-text-soft);
  transition: transform var(--transition);
}
.faq-home-item[open] summary::after { content: '−'; }
.faq-home-item p {
  margin: 0;
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-text-soft);
}

/* ───────────────────────────────────────────────────────────────────
   Registro / Lista de espera
   ─────────────────────────────────────────────────────────────────── */

.reg-container {
  max-width: 720px;
  margin: 0 auto;
}

.reg-form {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.reg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.reg-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.reg-row .reg-field { margin-bottom: 0; }

.reg-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-soft);
  margin-bottom: 6px;
}
.reg-field input,
.reg-field select,
.reg-field textarea {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  background: var(--c-bg);
  color: var(--c-text);
  padding: 11px 14px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color var(--transition);
}
.reg-field input:focus,
.reg-field select:focus,
.reg-field textarea:focus {
  outline: none;
  border-color: var(--c-purple);
}
.reg-field textarea { resize: vertical; min-height: 80px; }

/* Honeypot oculto (visible solo para bots) */
.reg-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.reg-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.reg-legal {
  text-align: center;
  font-size: 12px;
  color: var(--c-text-muted);
  margin: 16px 0 0;
  line-height: 1.6;
}
.reg-legal a { color: var(--c-purple-deep); text-decoration: none; }
.reg-legal a:hover { text-decoration: underline; }

.reg-msg {
  margin: 8px 0 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  line-height: 1.5;
  display: none;
}
.reg-msg:not(:empty) { display: block; }
.reg-msg--ok {
  background: rgba(74, 222, 128, 0.1);
  color: #16a34a;
  border: 1px solid rgba(74, 222, 128, 0.3);
}
.reg-msg--err {
  background: rgba(248, 113, 113, 0.1);
  color: #dc2626;
  border: 1px solid rgba(248, 113, 113, 0.3);
}

@media (max-width: 720px) {
  .reg-form { padding: 24px 20px; }
  .reg-row { grid-template-columns: 1fr; gap: 0; }
  .reg-row .reg-field { margin-bottom: 18px; }
}

/* ───────────────────────────────────────────────────────────────────
   Nav: CTA primario + login como link de texto
   ─────────────────────────────────────────────────────────────────── */
.nav-login-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text-soft);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-login-link:hover {
  color: var(--c-text);
  background: var(--c-bg-soft);
}
.nav-cta {
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
}

/* ───────────────────────────────────────────────────────────────────
   Barra de integraciones (sustituye al trust strip)
   Señal "esto es un software con stack" para humanos y LLMs en vistazo
   ─────────────────────────────────────────────────────────────────── */
.integra-bar {
  padding: 22px 0 26px;
  background: linear-gradient(180deg, rgba(56,82,255,0.04), rgba(143,56,255,0.04));
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.integra-bar__title {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  text-align: center;
}
.integra-bar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 22px;
}
.integra-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
  box-shadow: var(--shadow-sm);
}
.integra-chip__logo {
  width: 18px;
  height: 18px;
  color: var(--c-purple-deep);
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .integra-bar { padding: 16px 0 20px; }
  .integra-bar__list { gap: 8px 12px; }
  .integra-chip { padding: 6px 12px; font-size: 13px; }
}

/* ───────────────────────────────────────────────────────────────────
   Números técnicos (above-fold, refuerza "producto")
   ─────────────────────────────────────────────────────────────────── */
.numeros { padding: 48px 0; }
.numeros-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.numero-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 24px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  text-align: left;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.numero-card:hover {
  border-color: var(--c-border-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.numero-value {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.numero-label {
  font-size: 14px;
  line-height: 1.5;
  color: var(--c-text-soft);
}
@media (max-width: 900px) { .numeros-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .numeros-grid { grid-template-columns: 1fr; } }

/* ───────────────────────────────────────────────────────────────────
   Stack técnico (al final del home, vocabulario de software puro)
   ─────────────────────────────────────────────────────────────────── */
.stack-section { padding: 64px 0; }
.stack-intro {
  max-width: 640px;
  margin: 12px auto 0;
  text-align: center;
  color: var(--c-text-soft);
}
.stack-grid {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
}
.stack-item {
  padding: 10px 18px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 999px;
  font-family: 'Inter', monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: 0.01em;
}

/* ───────────────────────────────────────────────────────────────────
   "Lo que publica por ti" — 4 formatos IG (fija la categoría)
   ─────────────────────────────────────────────────────────────────── */
.formatos { padding: 80px 0; }
.formatos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.formato-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.formato-card:hover {
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.formato-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.formato-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--c-text-soft);
  margin: 0;
}
@media (max-width: 960px) { .formatos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .formatos-grid { grid-template-columns: 1fr; } }

/* ───────────────────────────────────────────────────────────────────
   Footer compacto: 1 línea trust + 1 línea stack
   Mantiene las señales para LLMs sin saturar above-fold
   ─────────────────────────────────────────────────────────────────── */
.footer-trust-line,
.footer-stack-line {
  margin-top: 18px;
  padding: 12px 0;
  text-align: center;
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-trust-line {
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.85);
}
.footer-stack-line {
  font-family: 'Inter', monospace;
  letter-spacing: 0.01em;
}
.footer-stack-line__label {
  font-weight: 700;
  color: #fff;
  margin-right: 8px;
}

/* ───────────────────────────────────────────────────────────────────
   Flujo "Así trabaja la IA por ti" — 6 pasos con numeración
   ─────────────────────────────────────────────────────────────────── */
.flujo-section { padding: 88px 0; }
.flujo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.flujo-card {
  position: relative;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px 26px 26px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.flujo-card:hover {
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.flujo-step {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--grad-soft);
  color: var(--c-purple-deep);
  margin-bottom: 14px;
}
.flujo-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.flujo-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--c-text-soft);
  margin: 0;
}
@media (max-width: 960px) { .flujo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .flujo-grid { grid-template-columns: 1fr; } }

/* ───────────────────────────────────────────────────────────────────
   Participas — 3 cards (¿tienes foto? ¿vídeo? ¿algo que decir?)
   ─────────────────────────────────────────────────────────────────── */
.participas { padding: 88px 0; }
.parti-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.parti-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.parti-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 350ms cubic-bezier(.2,.7,.2,1);
}
.parti-card:hover {
  border-color: var(--c-border-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.parti-card:hover::before { transform: scaleX(1); }
.parti-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.parti-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-text-soft);
  margin: 0;
}
@media (max-width: 880px) { .parti-grid { grid-template-columns: 1fr; } }

/* ───────────────────────────────────────────────────────────────────
   "Seguro para tu cuenta" — mata objeción de bloqueo/scraping
   Lista vertical con check gradiente, no grid — denso pero legible
   ─────────────────────────────────────────────────────────────────── */
.seguro-section { padding: 88px 0; }
.seguro-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.seguro-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 22px 26px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.seguro-item:hover {
  border-color: var(--c-border-strong);
  box-shadow: var(--shadow-sm);
}
.seguro-item__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}
.seguro-item h3 {
  font-size: 16.5px;
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: -0.005em;
  color: var(--c-text);
}
.seguro-item p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--c-text-soft);
  margin: 0;
}
@media (max-width: 560px) {
  .seguro-item { padding: 18px 20px; gap: 14px; }
  .seguro-item__check { width: 28px; height: 28px; font-size: 13px; }
}
