@font-face {
  font-family: 'Inter';
  src: url('../../fonts/Inter-Variable.ttf') format('truetype');
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

.sp-page {
  --bg: #f3f6fb;
  --text: #0f1728;
  --muted: #667796;
  --line: #d8e2f2;
  --primary: #1173ff;
  --primary-strong: #0a5de0;
  --hero-a: #061531;
  --hero-b: #0c2f69;
  --hero-c: #165fbf;
  --hero-d: #1ec8d5;
  --radius: 14px;
  --shadow: 0 20px 50px rgba(17, 74, 170, 0.22);
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
}

.sp-page * {
  box-sizing: border-box;
}

.sp-container {
  width: min(1100px, calc(100% - 38px));
  margin-inline: auto;
}

.sp-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(247, 250, 255, 0.86);
  border-bottom: 1px solid rgba(16, 83, 190, 0.12);
  backdrop-filter: blur(10px);
}

.sp-nav-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.sp-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #18263f;
  font-weight: 800;
  font-size: 0.95rem;
}

.sp-brand img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.sp-brand img.sp-imagotipo {
  width: 150px;
  height: auto;
  max-width: min(200px, 100%);
}

.sp-nav-links {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.sp-nav-links a,
.sp-foot-links a,
.sp-link {
  text-decoration: none;
  color: #6a7791;
  font-size: 0.83rem;
  font-weight: 600;
}

.sp-nav-links a:hover,
.sp-foot-links a:hover,
.sp-link:hover {
  color: var(--primary);
}

.sp-nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.sp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 10px 16px;
  border: 1px solid transparent;
  font-size: 0.83rem;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
}

.sp-btn-primary {
  background: linear-gradient(135deg, var(--primary), #1f8eff);
  color: #fff;
  box-shadow: 0 10px 24px rgba(17, 115, 255, 0.26);
}

.sp-btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
}

.sp-btn-light {
  background: #fff;
  color: #1b3f78;
  border-color: rgba(255, 255, 255, 0.45);
}

.sp-hero {
  padding: 116px 0 86px;
  background:
    radial-gradient(circle at 12% 20%, rgba(38, 130, 255, 0.28), transparent 35%),
    radial-gradient(circle at 86% 14%, rgba(23, 210, 227, 0.28), transparent 37%),
    linear-gradient(125deg, var(--hero-a), var(--hero-b) 48%, var(--hero-c) 78%, var(--hero-d));
}

.sp-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sp-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  border-radius: 999px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.74rem;
  font-weight: 700;
}

.sp-hero h1 {
  margin: 18px 0 12px;
  color: #fff;
  font-size: clamp(2rem, 4.7vw, 3.75rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.sp-hero h1 span {
  background: linear-gradient(90deg, #4fd5ff, #16a4ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sp-hero-sub {
  margin: 0;
  max-width: 760px;
  color: rgba(232, 240, 255, 0.9);
  font-family: 'Inter', sans-serif;
  font-size: 1.02rem;
  line-height: 1.55;
}

.sp-hero-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.sp-mockup {
  width: min(860px, 100%);
  margin-top: 30px;
  border-radius: 10px;
  padding: 14px;
  background: linear-gradient(135deg, #1367f5, #1ecad8);
  box-shadow: var(--shadow);
}

.sp-mockup-shell {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  min-height: 330px;
  display: grid;
  grid-template-columns: 170px 1fr;
}

.sp-mockup-side {
  background: #0b1325;
  color: #8ea4ce;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sp-mockup-side strong {
  color: #fff;
  font-size: 0.85rem;
}

.sp-mockup-side span {
  height: 10px;
  border-radius: 999px;
  background: rgba(142, 164, 206, 0.26);
}

.sp-mockup-main {
  padding: 18px;
  background: #f8fbff;
}

.sp-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.sp-metrics article {
  border-radius: 10px;
  border: 1px solid #e6eefc;
  background: #fff;
  padding: 10px;
}

.sp-metrics p {
  margin: 0 0 4px;
  font-family: 'Inter', sans-serif;
  color: #7384a2;
  font-size: 0.73rem;
}

.sp-metrics strong {
  font-size: 1.22rem;
  color: #101c34;
}

.sp-table {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.sp-table span {
  display: block;
  height: 32px;
  border-radius: 8px;
  border: 1px solid #e8eef8;
  background: linear-gradient(90deg, #ffffff, #f4f8ff);
}

.sp-section {
  padding: 88px 0;
}

.sp-section-alt {
  background: #eaf0fa;
}

.sp-section-inner {
  text-align: center;
}

.sp-eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.75rem;
  font-weight: 800;
  color: #0f70ff;
}

.sp-section h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3.6vw, 2.75rem);
  line-height: 1.16;
}

.sp-section-sub {
  margin: 12px auto 0;
  max-width: 720px;
  font-family: 'Inter', sans-serif;
  color: var(--muted);
  font-size: 0.98rem;
}

.sp-grid {
  margin-top: 30px;
  display: grid;
  gap: 12px;
}

.sp-grid-problem {
  grid-template-columns: repeat(3, 1fr);
}

.sp-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.sp-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.sp-chip,
.sp-mini-card,
.sp-feature-card,
.sp-list-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.sp-chip,
.sp-mini-card {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  font-size: 0.87rem;
  font-weight: 600;
}

.sp-chip {
  box-shadow: 0 8px 22px rgba(27, 60, 130, 0.08);
}

.sp-closing {
  margin: 26px 0 0;
  font-size: 1.06rem;
  font-weight: 700;
}

.sp-closing span {
  color: var(--primary);
}

.sp-list {
  margin-top: 30px;
  display: grid;
  gap: 10px;
}

.sp-list-item {
  padding: 14px 16px;
  text-align: left;
  font-size: 0.93rem;
  font-weight: 600;
}

.sp-feature-card {
  text-align: left;
  padding: 22px;
}

.sp-feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.24rem;
}

.sp-feature-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  color: #5d6f8d;
  font-size: 0.93rem;
}

.sp-feature-card li {
  position: relative;
  padding-left: 16px;
}

.sp-feature-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.sp-cta {
  padding: 92px 0;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 14% 18%, rgba(44, 136, 255, 0.24), transparent 40%),
    radial-gradient(circle at 84% 16%, rgba(34, 212, 224, 0.26), transparent 40%),
    linear-gradient(122deg, #061531, #0b2961 44%, #124b9b 72%, #1c8097);
}

.sp-cta-inner h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 3.15rem);
  line-height: 1.08;
}

.sp-cta-inner p {
  margin: 12px 0 0;
  color: rgba(237, 244, 255, 0.9);
  font-family: 'Inter', sans-serif;
}

.sp-footer {
  border-top: 1px solid rgba(19, 83, 195, 0.14);
  background: #f8fbff;
  padding: 24px 0;
}

.sp-footer-inner {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.sp-foot-links {
  display: inline-flex;
  gap: 14px;
}

.sp-footer p {
  margin: 0;
  color: #6a7791;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .62s ease, transform .62s ease;
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .sp-nav-links {
    display: none;
  }

  .sp-grid-problem,
  .sp-grid-3,
  .sp-grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .sp-mockup-shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .sp-mockup-side {
    display: none;
  }
}

@media (max-width: 680px) {
  .sp-container {
    width: min(1100px, calc(100% - 26px));
  }

  .sp-nav-actions .sp-link {
    display: none;
  }

  .sp-nav-actions .sp-btn {
    padding-inline: 12px;
    font-size: .78rem;
  }

  .sp-hero {
    padding-top: 104px;
  }

  .sp-grid-problem,
  .sp-grid-3,
  .sp-grid-2,
  .sp-metrics {
    grid-template-columns: 1fr;
  }

  .sp-chip,
  .sp-mini-card,
  .sp-list-item {
    text-align: left;
    justify-content: flex-start;
  }
}



/* Landing overrides to avoid shared heading font and match problem cards from reference */
.sp-page,
.sp-page p,
.sp-page a,
.sp-page li,
.sp-page span,
.sp-page button,
.sp-page input,
.sp-page textarea {
  font-family: 'Inter', sans-serif;
}

.sp-page h1,
.sp-page h2,
.sp-page h3,
.sp-page h4,
.sp-page h5,
.sp-page h6 {
  font-family: 'Inter', sans-serif !important;
}

.sp-grid-problem {
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 16px;
  margin-top: 26px;
}

.sp-chip {
  min-height: 82px;
  border-radius: 15px;
  border: 1px solid #d4dde9;
  background: #f8fbff;
  box-shadow: 0 8px 18px rgba(27, 46, 88, 0.06);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  text-align: left;
}

.sp-chip > span:last-child {
  font-size: 1.02rem;
  line-height: 1.34;
  font-weight: 700;
  color: #10203d;
}

.sp-chip-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: #f8e9ec;
  color: #f34a56;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f2d8dd;
}

.sp-chip-icon svg {
  font-size: 21px;
}

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

@media (max-width: 680px) {
  .sp-grid-problem {
    grid-template-columns: 1fr;
  }

  .sp-chip {
    min-height: 74px;
    padding: 12px 14px;
  }

  .sp-chip > span:last-child {
    font-size: 0.96rem;
  }
}

/* Solution section cards tuned to reference */
#solucion .sp-list {
  width: min(760px, 100%);
  margin: 28px auto 0;
  display: grid;
  gap: 14px;
}

#solucion .sp-list-item {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 15px;
  border: 1px solid #d4dde9;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(27, 46, 88, 0.06);
  padding: 16px 18px;
  text-align: left;
  font-size: 1.03rem;
  line-height: 1.25;
  font-weight: 700;
  color: #0f213f;
}

#solucion .sp-list-item span:last-child {
  font-family: 'Inter', sans-serif;
}

#solucion .sp-list-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 999px;
  border: 2px solid #28c2a8;
  color: #17b39a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#solucion .sp-list-icon svg {
  font-size: 14px;
  font-weight: 800;
}

/* Versatility section cards tuned to reference */
#versatilidad .sp-section-sub {
  max-width: 760px;
}

#versatilidad .sp-versatility-grid {
  margin-top: 34px;
  gap: 16px;
}

#versatilidad .sp-mini-card {
  min-height: 84px;
  border-radius: 15px;
  border: 1px solid #d4dde9;
  background: #f8fbff;
  box-shadow: 0 8px 18px rgba(27, 46, 88, 0.06);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  text-align: left;
}

#versatilidad .sp-mini-card span:last-child {
  font-size: 1.03rem;
  line-height: 1.3;
  font-weight: 700;
  color: #10203d;
}

#versatilidad .sp-mini-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  border: 1px solid #d5e2f7;
  background: #eaf1fd;
  color: #0f70ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#versatilidad .sp-mini-icon svg {
  font-size: 21px;
}

@media (max-width: 980px) {
  #versatilidad .sp-versatility-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  #versatilidad .sp-versatility-grid {
    grid-template-columns: 1fr;
  }

  #versatilidad .sp-mini-card {
    min-height: 76px;
    padding: 13px 14px;
  }

  #versatilidad .sp-mini-card span:last-child {
    font-size: 0.97rem;
  }
}

/* Functionalities cards tuned to reference */
#funcionalidades .sp-feature-grid {
  margin-top: 34px;
  gap: 24px;
}

#funcionalidades .sp-feature-card {
  border-radius: 16px;
  border: 1px solid #d3ddea;
  background: #f8fbff;
  box-shadow: 0 10px 20px rgba(24, 45, 88, 0.06);
  padding: 24px 28px;
  text-align: left;
}

#funcionalidades .sp-feature-head-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6d7481;
}

#funcionalidades .sp-feature-head-icon svg {
  font-size: 24px;
}

#funcionalidades .sp-feature-card h3 {
  margin: 10px 0 16px;
  font-size: 2rem;
  letter-spacing: -0.01em;
}

#funcionalidades .sp-feature-card ul {
  gap: 10px;
}

#funcionalidades .sp-feature-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 3px 0;
  color: #516289;
  font-family: 'Inter', sans-serif;
  font-size: 1.06rem;
  line-height: 1.35;
}

#funcionalidades .sp-feature-card li::before {
  display: none;
}

#funcionalidades .sp-feature-card li svg {
  color: #0f70ff;
  font-size: 19px;
  min-width: 19px;
}

@media (max-width: 980px) {
  #funcionalidades .sp-feature-card {
    padding: 20px 20px;
  }

  #funcionalidades .sp-feature-card h3 {
    font-size: 1.75rem;
  }
}

@media (max-width: 680px) {
  #funcionalidades .sp-feature-grid {
    grid-template-columns: 1fr;
  }

  #funcionalidades .sp-feature-card h3 {
    font-size: 1.55rem;
  }

  #funcionalidades .sp-feature-card li {
    font-size: 0.98rem;
  }
}

/* Pricing section */
#precios .sp-pricing-highlight {
  margin: 0 auto;
  max-width: 780px;
  padding: 28px 24px;
  text-align: center;
}

#precios .sp-pricing-highlight-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(15, 112, 255, 0.1);
  color: #0a5de0;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

#precios .sp-pricing-highlight-text {
  margin: 14px 0 0;
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f1f3a;
}

@media (max-width: 680px) {
  #precios .sp-pricing-highlight {
    padding: 22px 16px;
  }

  #precios .sp-pricing-highlight-text {
    font-size: 1.45rem;
  }
}

/* Final CTA buttons tuned to reference */
#contacto .sp-hero-actions {
  margin-top: 34px;
  gap: 16px;
}

#contacto .sp-btn {
  min-width: 226px;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 12px;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

#contacto .sp-btn-primary {
  box-shadow: 0 12px 28px rgba(17, 115, 255, 0.28);
}

#contacto .sp-btn-light {
  color: #0f70ff;
  background: #ffffff;
  border-color: rgba(16, 83, 190, 0.18);
}

#contacto .sp-btn svg {
  font-size: 19px;
  min-width: 19px;
}

#contacto .sp-btn-primary svg {
  margin-left: 2px;
}

@media (max-width: 680px) {
  #contacto .sp-hero-actions {
    width: 100%;
    gap: 10px;
  }

  #contacto .sp-btn {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    font-size: 0.96rem;
  }
}


/* Legal page layout */
.sp-page-legal {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

/* Landing/contact popovers: siempre en estilo claro */
.sp-page .popover,
.sp-page .field-error {
  --popover-border: rgba(15, 23, 42, 0.28);
  --popover-icon: rgba(15, 23, 42, 0.55);
  color: var(--popover-border);
  background: #ffffff;
}

.sp-page .popover::after,
.sp-page .field-error::after {
  background: #ffffff;
  border-left-color: rgba(15, 23, 42, 0.28);
  border-top-color: rgba(15, 23, 42, 0.28);
}

.sp-page-legal .sp-legal-main {
  flex: 1;
  padding-top: 82px;
}

.sp-page-legal .sp-legal-section {
  padding: 44px 0 76px;
}

.sp-page-legal .sp-legal-inner {
  text-align: left;
}

.sp-page-legal h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0f1f3a;
}

.sp-legal-content {
  margin-top: 18px;
  border: 1px solid #d3ddea;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(19, 46, 99, 0.06);
  padding: 24px 26px;
  color: #334567;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

.sp-legal-content p {
  margin: 0;
}

.sp-contact-shell {
  display: flex;
  justify-content: center;
}

.sp-contact-card {
  width: min(460px, 100%);
  padding: 34px 30px;
  border-color: rgba(15, 23, 42, 0.14);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.62) 55%, rgba(255,255,255,0.5) 100%),
    rgba(255, 255, 255, 0.72);
}

.sp-contact-card .contact-header {
  text-align: center;
  margin-bottom: 22px;
}

.sp-contact-card .contact-title {
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.sp-contact-card .contact-subtitle {
  font-size: 14px;
  color: rgba(15, 23, 42, 0.62);
}

.sp-contact-card .form-label {
  color: #0f172a;
}

.sp-contact-card .contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sp-contact-card .form-input {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.14);
  color: #0f172a;
}

.sp-contact-card .form-input:focus {
  border-color: #2952ff;
  background: rgba(41, 82, 255, 0.08);
}

.sp-contact-card .form-input::placeholder {
  color: rgba(15, 23, 42, 0.45);
}

.sp-contact-message {
  min-height: 110px;
  resize: vertical;
}

.sp-contact-card .contact-btn {
  width: auto;
  min-width: 130px;
  margin-top: 8px;
  align-self: flex-end;
  justify-content: center;
  text-align: center;
}

.sp-contact-alert {
  margin: 0 0 14px;
  border-radius: 10px;
  padding: 11px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
}

.sp-contact-alert-success {
  border: 1px solid #b8e3ce;
  background: #ebf9f2;
  color: #155a3d;
}

.sp-contact-alert-error {
  border: 1px solid #e8c1c1;
  background: #fff1f1;
  color: #842029;
}

.sp-contact-alert-info {
  border: 1px solid #b9d4f3;
  background: #eef6ff;
  color: #174782;
}

.sp-contact-alert-info a {
  color: #174782;
  text-decoration: underline;
  font-weight: 700;
}

.sp-plan-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sp-plan-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 10px;
  align-items: center;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 10px;
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.6);
}

.sp-plan-item input[type='radio'] {
  grid-row: span 2;
}

.sp-plan-item-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}

.sp-plan-item-meta {
  font-size: 0.84rem;
  color: #51607b;
}

.sp-plan-item-desc {
  grid-column: 2;
  font-size: 0.8rem;
  color: #6a7893;
}

@media (max-width: 680px) {
  .sp-page-legal .sp-legal-main {
    padding-top: 74px;
  }

  .sp-legal-content {
    padding: 16px 14px;
  }

  .sp-contact-card {
    padding: 26px 20px;
  }
}

/* Hero first section tuning */
.sp-hero .sp-badge {
  padding: 8px 18px;
  border: 1px solid #1f67cc;
  background: #0e3f8f;
  color: #eef5ff;
  font-size: 0.93rem;
  font-weight: 700;
}

.sp-hero h1 {
  font-weight: 900;
}

.sp-hero h1 strong {
  font-weight: 900;
}

.sp-hero-actions-main {
  margin-top: 36px;
  gap: 14px;
}

.sp-hero-actions-main .sp-btn {
  min-width: 206px;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 11px;
  font-size: 1.06rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.sp-hero-actions-main .sp-btn-primary {
  box-shadow: 0 12px 30px rgba(17, 115, 255, 0.34);
}

.sp-hero-actions-main .sp-btn-light {
  background: #ffffff;
  color: #0f70ff;
  border-color: rgba(255, 255, 255, 0.82);
}

.sp-hero-actions-main .sp-btn svg {
  font-size: 19px;
  min-width: 19px;
}

.sp-hero-actions-main .sp-btn-primary svg {
  margin-left: 2px;
}

@media (max-width: 680px) {
  .sp-hero-actions-main {
    width: 100%;
    gap: 10px;
  }

  .sp-hero-actions-main .sp-btn {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    font-size: 0.97rem;
  }
}

/* Hero button + mockup tuning */
.sp-hero-actions-main .sp-btn-primary {
  background: linear-gradient(90deg, #1e75ff 0%, #27b4df 100%);
  box-shadow: 0 12px 30px rgba(20, 124, 255, 0.34);
  border: 0;
  outline: none;
  background-clip: padding-box;
}

.sp-hero-actions-main .sp-btn-primary:hover {
  background: linear-gradient(90deg, #1668ea 0%, #20a6cf 100%);
}

.sp-hero-actions-main {
  margin-top: 34px;
  gap: 16px;
}

.sp-mockup {
  margin-top: 46px;
  padding: 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1367f5, #1ecad8);
  box-shadow: var(--shadow);
}

.sp-mockup-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  background: #ffffff;
}

@media (max-width: 680px) {
  .sp-mockup {
    margin-top: 26px;
    padding: 8px;
  }
}

/* Pricing visual refresh */
#precios .sp-pricing-main {
  margin: 8px 0 0;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

#precios .sp-pricing-main-amount {
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0f70ff;
}

#precios .sp-pricing-main-period {
  font-size: clamp(1.02rem, 2.3vw, 1.35rem);
  font-weight: 700;
  color: #5d7499;
  line-height: 1.15;
  margin-bottom: 7px;
}

#precios .sp-pricing-divider {
  margin: 10px auto 0;
  width: min(420px, 92%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

#precios .sp-pricing-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #9fb8df 20%, #9fb8df 80%, transparent);
}

#precios .sp-pricing-divider-text {
  font-size: 0.96rem;
  font-weight: 700;
  color: #5d7499;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

#precios .sp-pricing-secondary {
  margin: 12px 0 0;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

#precios .sp-pricing-secondary-amount {
  font-size: clamp(2rem, 4.6vw, 3rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #173157;
}

@media (max-width: 680px) {
  #precios .sp-pricing-main,
  #precios .sp-pricing-secondary {
    justify-content: center;
  }

  #precios .sp-pricing-main-period {
    margin-bottom: 3px;
  }
}
