/* ============================================
   SmashPlay · Componentes reutilizables
   Botones · Cards · Badges · Header · Footer · FAQ
   ============================================ */

/* ============ BOTONES ============ */
.sp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-btn);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition-fast), box-shadow var(--transition-base), background var(--transition-base), color var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
}
.sp-btn-primary {
  background: var(--sp-verde);
  color: var(--sp-negro);
  box-shadow: var(--shadow-cta);
}
.sp-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-cta-hover);
  color: var(--sp-negro);
}
.sp-btn-secondary {
  background: transparent;
  color: var(--sp-negro);
  border-color: var(--sp-negro);
}
.sp-btn-secondary:hover {
  background: var(--sp-negro);
  color: var(--sp-blanco);
}
.sp-btn-dark {
  background: var(--sp-negro);
  color: var(--sp-blanco);
}
.sp-btn-dark:hover {
  transform: translateY(-1px);
  background: var(--sp-gris-800);
  color: var(--sp-blanco);
}
.sp-btn-lg { padding: 18px 32px; font-size: 16px; }
.sp-btn-block { width: 100%; }

/* ============ BADGES ============ */
.sp-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}
.sp-badge-verde  { background: var(--sp-verde); color: var(--sp-negro); }
.sp-badge-azul   { background: var(--sp-azul);  color: var(--sp-blanco); }
.sp-badge-oscuro { background: var(--sp-negro); color: var(--sp-verde); }
.sp-badge-claro  { background: var(--sp-gris-100); color: var(--sp-gris-600); }

/* ============ CARDS ============ */
.sp-card {
  background: var(--sp-blanco);
  border: 1px solid var(--sp-gris-200);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.sp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.sp-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--sp-verde);
  color: var(--sp-negro);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-md);
}
.sp-card-icon svg { width: 28px; height: 28px; stroke-width: 2; }
.sp-card-icon--azul { background: var(--sp-azul); color: var(--sp-blanco); }
.sp-card-icon--oscuro { background: var(--sp-negro); color: var(--sp-verde); }
.sp-card-title {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-h3);
  margin-bottom: var(--sp-sm);
  line-height: var(--lh-snug);
}
.sp-card-text {
  font-size: var(--fs-md);
  color: var(--sp-gris-600);
  line-height: var(--lh-relaxed);
}

/* ============ HEADER v2 — MODERNO ============ */
.sp-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(43, 44, 46, 0.08);
}
.sp-header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 14px var(--container-padding);
  display: flex;
  align-items: center;
  gap: 36px;
}

/* Logo */
.sp-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  max-width: 100%;
}
.sp-logo img {
  height: 44px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

/* Nav */
.sp-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.sp-nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--sp-gris-600);
  padding: 10px 14px;
  border-radius: 10px;
  position: relative;
  transition: all var(--transition-base);
  letter-spacing: -0.1px;
  white-space: nowrap;
  text-decoration: none;
}
.sp-nav-link:hover {
  color: var(--sp-negro);
  background: rgba(43, 44, 46, 0.04);
}
.sp-nav-link.active {
  color: var(--sp-negro);
  font-weight: 600;
  background: rgba(0, 170, 220, 0.08);
}
.sp-nav-link.active::before {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sp-azul);
}

/* Acciones */
.sp-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.sp-login {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--sp-negro);
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: background var(--transition-base);
  white-space: nowrap;
}
.sp-login:hover { background: rgba(43, 44, 46, 0.04); }

.sp-cta-header {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
  background: var(--sp-verde);
  color: var(--sp-negro);
  padding: 10px 18px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(200, 230, 60, 0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.sp-cta-header:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200, 230, 60, 0.55);
  color: var(--sp-negro);
}
.sp-cta-header svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-base);
}
.sp-cta-header:hover svg { transform: translateX(2px); }

/* Burger móvil */
.sp-burger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.sp-burger svg { width: 28px; height: 28px; stroke: var(--sp-negro); }
.sp-mobile-menu {
  display: none;
  padding: 18px var(--container-padding) 28px;
  border-top: 1px solid var(--sp-gris-200);
  background: var(--sp-blanco);
}
.sp-mobile-menu.open { display: block; }
.sp-mobile-menu .sp-nav-link {
  display: block;
  padding: 14px 0;
  font-size: 17px;
  border-bottom: 1px solid var(--sp-gris-200);
  border-radius: 0;
}
.sp-mobile-menu .sp-nav-link.active { background: transparent; }
.sp-mobile-menu .sp-nav-link.active::before { display: none; }
.sp-mobile-menu .sp-cta-header {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: var(--sp-md);
}


/* ============ FAQ ACORDEÓN ============ */
.sp-faq { max-width: 800px; margin: 0 auto; }
.sp-faq-item { border-bottom: 1px solid var(--sp-gris-200); }
.sp-faq-question {
  width: 100%;
  text-align: left;
  padding: var(--sp-lg) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-md);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
  color: var(--sp-negro);
  cursor: pointer;
  background: transparent;
  border: none;
}
.sp-faq-question:hover { color: var(--sp-azul); }
.sp-faq-chevron {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform var(--transition-slow);
  flex-shrink: 0;
}
.sp-faq-item.open .sp-faq-chevron { transform: rotate(180deg); }
.sp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}
.sp-faq-answer-inner {
  padding-bottom: var(--sp-lg);
  font-size: var(--fs-md);
  color: var(--sp-gris-600);
  line-height: var(--lh-relaxed);
}
.sp-faq-item.open .sp-faq-answer { max-height: 1000px; }

/* ============ GRID HELPERS ============ */
.sp-grid { display: grid; gap: var(--sp-lg); }
.sp-grid-2 { grid-template-columns: repeat(2, 1fr); }
.sp-grid-3 { grid-template-columns: repeat(3, 1fr); }
.sp-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 768px) {
  .sp-grid-2, .sp-grid-3, .sp-grid-4 { grid-template-columns: 1fr; }
}

/* ============ RESPONSIVE ============ */

/* sp-login visible siempre (Decisión Rubén mayo 2026: Iniciar sesión > Descargar app en header) */

/* PASO 2: A partir de 1000px, "Descargar app" cambia a versión compacta (sin flecha, texto más corto) */
@media (max-width: 1000px) {
  .sp-cta-header { padding: 10px 16px; }
  .sp-cta-text-long { display: none; }
  .sp-cta-text-short { display: inline; }
  .sp-cta-header svg { display: none; }
}

/* PASO 3: A partir de 900px, ocultar nav extendido + CTA y mostrar hamburguesa */
@media (max-width: 900px) {
  .sp-nav, .sp-header-actions { display: none; }
  .sp-burger { display: flex; align-items: center; }
  .sp-header-inner { padding: 14px 20px; gap: 0; justify-content: space-between; }
  .sp-logo img { height: 38px; }
}

/* Móvil pequeño */
@media (max-width: 480px) {
  .sp-header-inner { padding: 12px 16px; }
  .sp-logo img { height: 34px; max-width: 70vw; }
  .sp-mobile-menu { padding-left: 16px; padding-right: 16px; }
}

/* Asegurar texto largo visible por defecto, corto oculto */
.sp-cta-text-short { display: none; }
.sp-cta-text-long { display: inline; }

/* ============================================
   HERO HOME · texto izquierda + móvil derecha
   ============================================ */
.sp-hero {
  position: relative;
  padding: 72px 0 88px;
  overflow: hidden;
}
.sp-hero-bg-glow-1 {
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 230, 60, 0.18) 0%, rgba(200, 230, 60, 0) 70%);
  z-index: 0;
  pointer-events: none;
}
.sp-hero-bg-glow-2 {
  position: absolute;
  bottom: -150px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 170, 220, 0.12) 0%, rgba(0, 170, 220, 0) 70%);
  z-index: 0;
  pointer-events: none;
}
.sp-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}
.sp-hero-left { position: relative; z-index: 1; }
.sp-hero-headline {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 400;
  line-height: 1.02;
  color: var(--sp-negro);
  letter-spacing: -1.5px;
  margin-bottom: var(--sp-md);
}
.sp-hero-subhead {
  font-size: 18px;
  color: var(--sp-gris-600);
  line-height: 1.55;
  margin-bottom: var(--sp-lg);
  max-width: 520px;
}
.sp-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* === Mockup del móvil === */
.sp-hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-phone {
  width: 300px;
  background: var(--sp-negro);
  border-radius: 42px;
  padding: 10px;
  box-shadow: 0 30px 60px -10px rgba(0,0,0,0.28), 0 18px 36px -18px rgba(0,0,0,0.3);
  position: relative;
}
.sp-phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 26px;
  background: #1A1A1C;
  border-radius: 14px;
  z-index: 2;
}
.sp-phone-screen {
  background: var(--sp-blanco);
  border-radius: 34px;
  overflow: hidden;
  padding: 52px 14px 18px;
  min-height: 560px;
}
.sp-app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.sp-app-greet { font-size: 11px; color: var(--sp-gris-400); }
.sp-app-name {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--sp-negro);
  margin-top: 2px;
}
.sp-app-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--sp-verde);
  display: flex; align-items: center; justify-content: center;
  color: var(--sp-negro);
  font-family: var(--font-display); font-size: 14px;
}

/* === Tarjeta del menor (estilo app real) === */
.sp-app-child-card {
  background: var(--sp-blanco);
  border: 1px solid #E8EDF2;
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.sp-app-child-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.sp-app-child-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #7BC4D9 0%, #5A9CB5 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--sp-blanco);
  font-family: var(--font-display); font-size: 15px;
  letter-spacing: 0.5px;
}
.sp-app-child-info { flex: 1; min-width: 0; }
.sp-app-child-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--sp-negro);
  line-height: 1.2;
}
.sp-app-child-meta {
  font-size: 10.5px;
  color: var(--sp-gris-400);
  margin-top: 3px;
  line-height: 1.3;
}
.sp-app-child-bottom {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Insignia nivel verificado - compacta */
.sp-app-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #F2F4F7;
  border-radius: 8px;
  padding: 4px 7px;
  flex-shrink: 0;
}
.sp-app-badge-icon {
  width: 14px; height: 14px;
  flex-shrink: 0;
}
.sp-app-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.sp-app-badge-lvl {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 8.5px;
  color: var(--sp-negro);
  white-space: nowrap;
}
.sp-app-badge-sub {
  font-size: 6.5px;
  color: var(--sp-gris-400);
  margin-top: 1px;
  white-space: nowrap;
}

/* Pill búsqueda activada - compacta */
.sp-app-pill {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: #E6F7E9;
  color: #1E8E3E;
  border-radius: 100px;
  padding: 4px 8px;
  font-size: 8.5px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.sp-app-pill svg {
  width: 9px; height: 9px;
  flex-shrink: 0;
  stroke: #1E8E3E;
  stroke-width: 2.8;
  fill: none;
}

/* Título sección */
.sp-app-section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--sp-gris-600);
  margin: 6px 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sp-app-section-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 9px;
  color: var(--sp-gris-400);
  letter-spacing: 0;
  text-transform: none;
}

/* === Card de candidato === */
.sp-app-match-card {
  background: var(--sp-blanco);
  border: 1px solid var(--sp-gris-200);
  border-radius: 14px;
  padding: 10px 11px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  margin-bottom: 8px;
  overflow: hidden;
}
.sp-app-match-card.featured {
  border-color: var(--sp-verde);
  background: linear-gradient(180deg, #FAFFE9 0%, var(--sp-blanco) 100%);
  padding: 11px;
}
.sp-app-match-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 7px;
  min-width: 0;
}
.sp-app-match-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--sp-blanco);
  font-family: var(--font-display);
  font-size: 12px;
}
.sp-app-match-avatar.av-1 { background: linear-gradient(135deg, #FAC775 0%, #E89E3E 100%); }
.sp-app-match-avatar.av-2 { background: linear-gradient(135deg, #B6D970 0%, #7DAD3F 100%); }
.sp-app-match-avatar.av-3 { background: linear-gradient(135deg, #D49AC6 0%, #A969A5 100%); }

.sp-app-match-info { flex: 1; min-width: 0; }
.sp-app-match-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12.5px;
  color: var(--sp-negro);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sp-app-match-club {
  font-size: 9.5px;
  color: var(--sp-gris-400);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sp-app-match-score {
  text-align: right;
  flex-shrink: 0;
}
.sp-app-match-score-num {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1;
  color: var(--sp-azul);
}
.sp-app-match-card.featured .sp-app-match-score-num {
  font-size: 24px;
}
.sp-app-match-score-label {
  font-size: 7.5px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--sp-gris-400);
  margin-top: 3px;
}

/* Botón B: píldora outline azul, compacto */
.sp-app-chat-btn {
  background: var(--sp-blanco);
  border: 1px solid var(--sp-azul);
  color: var(--sp-azul);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  padding: 5px 10px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  max-width: 100%;
}
.sp-app-chat-btn svg {
  width: 10px; height: 10px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

/* ============================================
   BLOQUE COMUNIDAD (Clubs + Organizadores)
   ============================================ */
.sp-pro-card {
  background: var(--sp-blanco);
  border: 1px solid var(--sp-gris-200);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.sp-pro-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.sp-pro-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--sp-verde);
  color: var(--sp-negro);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-md);
}
.sp-pro-card-icon svg { width: 32px; height: 32px; stroke-width: 2; }
.sp-pro-card-icon.sp-card-icon--azul { background: var(--sp-azul); color: var(--sp-blanco); }
.sp-pro-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: var(--sp-negro);
  margin-bottom: var(--sp-xs);
  letter-spacing: -0.3px;
}
.sp-pro-card-subtitle {
  font-size: var(--fs-md);
  color: var(--sp-gris-600);
  margin-bottom: var(--sp-lg);
  line-height: 1.5;
}
.sp-pro-card-list {
  list-style: none;
  margin-bottom: var(--sp-lg);
  padding: 0;
  flex: 1;
}
.sp-pro-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 14.5px;
  color: var(--sp-gris-600);
  line-height: 1.4;
}
.sp-pro-card-list li svg { flex-shrink: 0; margin-top: 3px; }

/* CTA alineado al final → botones quedan a la misma altura entre cards */
.sp-pro-card-cta {
  margin-top: auto;
}

/* ===== RESPONSIVE HERO + COMUNIDAD ===== */
@media (max-width: 1100px) {
  .sp-hero { padding: 56px 0 72px; }
  .sp-hero-grid { grid-template-columns: 1fr; gap: var(--sp-2xl); text-align: center; }
  .sp-hero-headline { font-size: 52px; }
  .sp-hero-subhead { margin-left: auto; margin-right: auto; }
  .sp-hero-ctas { justify-content: center; }
  .sp-phone { width: 280px; }
  .sp-phone-screen { min-height: 540px; }
}
@media (max-width: 600px) {
  .sp-hero { padding: 32px 0 56px; }
  .sp-hero-headline { font-size: 38px; letter-spacing: -0.5px; }
  .sp-hero-subhead { font-size: 16px; }
  .sp-phone { width: 260px; }
  .sp-pro-card { padding: var(--sp-lg); }
  .sp-pro-card-title { font-size: 24px; }
}

/* ============================================
   BLOQUE DOLOR
   ============================================ */
.sp-section--dolor {
  background: var(--sp-blanco);
}
.sp-eyebrow--dolor {
  background: #FFE5E5;
  color: #D14545;
}
.sp-text-dolor {
  color: #D14545;
}
.sp-dolor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: var(--sp-2xl);
}
.sp-dolor-card {
  background: var(--sp-blanco);
  border: 1px solid #F0F0F0;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}
.sp-dolor-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: #E5E5E5;
}
.sp-dolor-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #FFF0F0;
  color: #D14545;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sp-dolor-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}
.sp-dolor-content {
  flex: 1;
}
.sp-dolor-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--sp-negro);
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}
.sp-dolor-card-text {
  font-size: 14.5px;
  color: var(--sp-gris-600);
  line-height: 1.55;
}

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

/* ============================================
   BLOQUE SUEÑO DE SERGI · Timeline vertical
   ============================================ */
.sp-section--sueno {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFC 100%);
}
.sp-eyebrow--sueno {
  background: #E6F3FF;
  color: var(--sp-azul);
}
.sp-sueno-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 44px;
  line-height: 1.1;
  color: var(--sp-negro);
  letter-spacing: -0.8px;
  max-width: 780px;
  margin: 0 auto;
}
.sp-sueno-title-sub {
  display: block;
  color: var(--sp-azul);
  font-size: 28px;
  margin-top: 6px;
  letter-spacing: -0.5px;
}

.sp-sueno-comic {
  margin: 0 auto var(--sp-2xl);
  max-width: 880px;
}
.sp-sueno-comic img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 12px 40px -8px rgba(0, 0, 0, 0.15);
}

/* Timeline vertical */
.sp-sueno-timeline {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  padding-left: 44px;
}
.sp-sueno-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, #E8EDF2 0%, var(--sp-verde) 100%);
}
.sp-sueno-step {
  position: relative;
  padding-bottom: 28px;
}
.sp-sueno-step:last-child { padding-bottom: 0; }
.sp-sueno-step::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--sp-verde);
  border: 3px solid var(--sp-blanco);
  box-shadow: 0 0 0 2px #E8EDF2;
}
.sp-sueno-step--active::before {
  background: var(--sp-azul);
  box-shadow: 0 0 0 2px #E6F3FF, 0 0 0 6px rgba(0, 170, 220, 0.15);
  animation: sp-sueno-pulse 2s ease-in-out infinite;
}
@keyframes sp-sueno-pulse {
  0%, 100% { box-shadow: 0 0 0 2px #E6F3FF, 0 0 0 6px rgba(0, 170, 220, 0.15); }
  50%      { box-shadow: 0 0 0 2px #E6F3FF, 0 0 0 10px rgba(0, 170, 220, 0.08); }
}

.sp-sueno-step-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--sp-azul);
  background: #E6F3FF;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}
.sp-sueno-step--active .sp-sueno-step-tag {
  color: var(--sp-negro);
  background: var(--sp-verde);
}
.sp-sueno-step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--sp-negro);
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}
.sp-sueno-step-text {
  font-size: 15px;
  color: var(--sp-gris-600);
  line-height: 1.6;
}
.sp-sueno-step-text strong {
  color: var(--sp-negro);
  font-weight: 600;
}

/* Cita destacada */
.sp-sueno-quote {
  margin: 48px auto 0;
  max-width: 620px;
  background: var(--sp-blanco);
  padding: 28px 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #F0F0F0;
  position: relative;
}
.sp-sueno-quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--sp-verde);
  line-height: 1;
}
.sp-sueno-quote-text {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.4;
  color: var(--sp-negro);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
  padding-top: 8px;
}
.sp-sueno-quote-author {
  font-size: 13px;
  color: var(--sp-gris-400);
  font-weight: 500;
}
.sp-sueno-quote-author strong {
  color: var(--sp-negro);
  font-weight: 700;
}

@media (max-width: 768px) {
  .sp-sueno-title { font-size: 30px; }
  .sp-sueno-title-sub { font-size: 22px; }
  .sp-sueno-step-title { font-size: 16px; }
  .sp-sueno-step-text { font-size: 14px; }
  .sp-sueno-quote-text { font-size: 16px; }
  .sp-sueno-timeline { padding-left: 36px; }
  .sp-sueno-timeline::before { left: 11px; }
  .sp-sueno-step::before { left: -32px; width: 14px; height: 14px; }
}

/* ============================================
   BLOQUE 5 FUNCIONALIDADES (lista manifiesto)
   ============================================ */
.sp-section--solucion {
  background: var(--sp-blanco);
}
.sp-eyebrow--solucion {
  background: #E6FFE9;
  color: #1E8E3E;
}
.sp-solucion-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 38px;
  line-height: 1.1;
  color: var(--sp-negro);
  letter-spacing: -0.6px;
  margin-bottom: 8px;
}
.sp-solucion-sub {
  font-size: 15px;
  color: var(--sp-gris-600);
  line-height: 1.5;
  max-width: 560px;
  margin: 0 auto;
}

.sp-solucion-list {
  max-width: 760px;
  margin: 0 auto;
}
.sp-solucion-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #F0F0F0;
}
.sp-solucion-item:last-child {
  border-bottom: none;
  padding-bottom: 4px;
}
.sp-solucion-item:first-child {
  padding-top: 4px;
}

.sp-solucion-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sp-solucion-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}
.sp-icon--verde   { background: #F0FFD9; color: #5A8D14; }
.sp-icon--azul    { background: #E6F3FF; color: var(--sp-azul); }
.sp-icon--naranja { background: #FFF1E5; color: #E89E3E; }
.sp-icon--rosa    { background: #FFE9F1; color: #D44F84; }

.sp-solucion-content {
  flex: 1;
  min-width: 0;
}
.sp-solucion-item-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--sp-negro);
  margin-bottom: 3px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}
.sp-solucion-item-text {
  font-size: 13.5px;
  color: var(--sp-gris-600);
  line-height: 1.55;
}

.sp-solucion-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 100px;
  margin-left: 8px;
  vertical-align: middle;
}
.sp-solucion-tag--estrella {
  background: #FFF8DD;
  color: #A87A00;
}
.sp-solucion-tag--nueva {
  background: #E6F3FF;
  color: var(--sp-azul);
}

@media (max-width: 768px) {
  .sp-solucion-title { font-size: 28px; }
  .sp-solucion-item-title { font-size: 15px; }
  .sp-solucion-item-text { font-size: 13px; }
}

/* ============================================
   BLOQUE SEGURIDAD Y PRIVACIDAD
   ============================================ */
.sp-section--seguridad {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFC 100%);
  position: relative;
  overflow: hidden;
}
.sp-section--seguridad::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 230, 60, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.sp-section--seguridad::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 170, 220, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.sp-eyebrow--seguridad {
  background: var(--sp-blanco);
  color: var(--sp-negro);
  border: 1px solid #E8EDF2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  padding: 5px 14px;
}
.sp-eyebrow-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sp-verde);
  margin-right: 6px;
  vertical-align: middle;
}

.sp-seguridad-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 38px;
  line-height: 1.1;
  color: var(--sp-negro);
  letter-spacing: -0.6px;
  max-width: 780px;
  margin: 0 auto 10px;
}
.sp-text-verde-grad {
  background: linear-gradient(120deg, #C8E63C 0%, #A8C82E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sp-seguridad-sub {
  font-size: 15px;
  color: var(--sp-gris-600);
  line-height: 1.5;
  max-width: 560px;
  margin: 0 auto;
}

/* Grid: escudo izquierda + 5 garantías derecha */
.sp-seguridad-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 36px;
  align-items: center;
  background: var(--sp-blanco);
  border: 1px solid #F0F0F0;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
  position: relative;
}

/* Escudo */
.sp-seguridad-shield-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.sp-seguridad-shield {
  position: relative;
  width: 130px;
  height: 155px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.sp-seguridad-shield::before {
  content: '';
  position: absolute;
  inset: -12px;
  background: radial-gradient(circle, rgba(200, 230, 60, 0.25) 0%, transparent 65%);
  z-index: -1;
}
.sp-seguridad-shield-outer {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #C8E63C 0%, #A8C82E 100%);
  clip-path: path('M65 0 L130 25 L130 88 Q130 138 65 155 Q0 138 0 88 L0 25 Z');
  filter: drop-shadow(0 12px 24px rgba(168, 200, 46, 0.35));
}
.sp-seguridad-shield-inner {
  position: absolute;
  inset: 5px;
  background: var(--sp-blanco);
  clip-path: path('M60 0 L120 23 L120 83 Q120 130 60 145 Q0 130 0 83 L0 23 Z');
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sp-seguridad-shield-icon {
  width: 36px;
  height: 36px;
  color: #5A8D14;
  margin-bottom: 6px;
  margin-top: -4px;
}
.sp-seguridad-shield-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 2.8;
}
.sp-seguridad-shield-num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--sp-negro);
  line-height: 1;
  letter-spacing: -0.5px;
}
.sp-seguridad-shield-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #5A8D14;
  text-align: center;
  margin-top: 4px;
}
.sp-seguridad-shield-desc {
  font-size: 12px;
  color: var(--sp-gris-600);
  text-align: center;
  margin-top: 6px;
  line-height: 1.45;
  max-width: 200px;
}

/* 5 contenedores */
.sp-seguridad-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.sp-seguridad-item {
  position: relative;
  overflow: hidden;
  background: var(--sp-blanco);
  border: 1px solid #F0F0F0;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all .25s ease;
}
.sp-seguridad-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, #C8E63C 0%, #A8C82E 100%);
}
.sp-seguridad-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(168, 200, 46, 0.18);
  border-color: var(--sp-verde);
}
.sp-seguridad-item:last-child {
  grid-column: 1 / -1;
}

.sp-seguridad-item-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--sp-blanco);
  border: 2px solid var(--sp-verde);
  color: #5A8D14;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
}
.sp-seguridad-item-content {
  flex: 1;
  min-width: 0;
}
.sp-seguridad-item-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--sp-negro);
  margin-bottom: 3px;
  line-height: 1.3;
  letter-spacing: -0.1px;
}
.sp-seguridad-item-text {
  font-size: 11.5px;
  color: var(--sp-gris-600);
  line-height: 1.5;
}
.sp-seguridad-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #F0FFD9 0%, #E5F5C2 100%);
  color: #5A8D14;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease;
}
.sp-seguridad-item-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}
.sp-seguridad-item:hover .sp-seguridad-item-icon {
  transform: scale(1.08) rotate(-4deg);
}

@media (max-width: 768px) {
  .sp-seguridad-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px;
  }
  .sp-seguridad-items {
    grid-template-columns: 1fr;
  }
  .sp-seguridad-item:last-child {
    grid-column: 1;
  }
  .sp-seguridad-title {
    font-size: 28px;
  }
}

/* ============================================
   CTA FINAL · Split con móvil inclinado + logo S
   ============================================ */
.sp-section--cta-final {
  background: linear-gradient(135deg, #FAFFE9 0%, #FFFFFF 50%, #E6F3FF 100%);
  position: relative;
  overflow: hidden;
  padding: 70px 24px;
}

.sp-cta-final-container {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Móvil inclinado · Splash screen con logo */
.sp-cta-final-phone {
  position: relative;
  width: 180px;
  height: 360px;
  background: linear-gradient(145deg, #3A3B3D 0%, #1F2022 100%);
  border-radius: 32px;
  padding: 7px;
  box-shadow:
    0 0 0 1.5px #4A4B4D,
    0 30px 60px -15px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: rotate(-6deg);
  flex-shrink: 0;
}
/* Notch dinámica */
.sp-cta-final-phone::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 20px;
  background: #000;
  border-radius: 0 0 12px 12px;
  z-index: 3;
}
/* Botones laterales */
.sp-cta-final-phone::after {
  content: '';
  position: absolute;
  left: -2px;
  top: 80px;
  width: 3px;
  height: 32px;
  background: #2B2C2E;
  border-radius: 2px 0 0 2px;
  box-shadow: 0 46px 0 #2B2C2E, 0 100px 0 #2B2C2E;
}
.sp-cta-final-phone-screen {
  background: var(--sp-blanco);
  width: 100%;
  height: 100%;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  position: relative;
  overflow: hidden;
}
.sp-cta-final-phone-logo-img {
  width: 80px;
  height: auto;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.sp-cta-final-phone-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  color: var(--sp-negro);
  letter-spacing: -0.5px;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.sp-cta-final-phone-name span {
  color: var(--sp-azul);
}
.sp-cta-final-phone-tag {
  margin-top: 7px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #A0A0A0;
  position: relative;
  z-index: 1;
}
.sp-cta-final-phone-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 1;
}
.sp-cta-final-phone-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #E5E5E5;
}
.sp-cta-final-phone-dots span:nth-child(1) {
  background: var(--sp-verde);
  animation: sp-cta-pulse 1.4s infinite;
}
.sp-cta-final-phone-dots span:nth-child(2) {
  animation: sp-cta-pulse 1.4s infinite 0.2s;
}
.sp-cta-final-phone-dots span:nth-child(3) {
  animation: sp-cta-pulse 1.4s infinite 0.4s;
}
@keyframes sp-cta-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Contenido derecha */
.sp-cta-final-content {
  text-align: left;
}

.sp-cta-final-eyebrow {
  display: inline-block;
  background: var(--sp-blanco);
  color: #5A8D14;
  border: 1px solid #E5F5C2;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.sp-cta-final-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--sp-negro);
  margin-bottom: 12px;
}

.sp-cta-final-sub {
  font-size: 16px;
  color: var(--sp-gris-600);
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 480px;
}

.sp-cta-final-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--sp-negro);
  color: var(--sp-verde);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.2px;
  padding: 16px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 12px 28px -8px rgba(43, 44, 46, 0.4);
  transition: all .3s ease;
}
.sp-cta-final-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -8px rgba(43, 44, 46, 0.5);
}
.sp-cta-final-btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

.sp-cta-final-tagline {
  margin-top: 18px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #A0A0A0;
}
.sp-cta-final-tagline span {
  color: #5A8D14;
}

@media (max-width: 768px) {
  .sp-section--cta-final {
    padding: 50px 20px;
  }
  .sp-cta-final-container {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .sp-cta-final-content {
    text-align: center;
  }
  .sp-cta-final-phone {
    margin: 0 auto;
    width: 150px;
    height: 300px;
  }
  .sp-cta-final-phone-logo-img {
    width: 65px;
    margin-bottom: 12px;
  }
  .sp-cta-final-phone-name {
    font-size: 17px;
  }
  .sp-cta-final-phone-tag {
    font-size: 8px;
  }
  .sp-cta-final-title {
    font-size: 30px;
  }
  .sp-cta-final-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .sp-cta-final-btn {
    font-size: 15px;
    padding: 14px 26px;
  }
}

/* ============================================
   CÓMO FUNCIONA · Hero
   ============================================ */
.sp-section--cf-hero {
  background: linear-gradient(180deg, #FAFFE9 0%, #FFFFFF 100%);
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sp-section--cf-hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 230, 60, 0.15) 0%, transparent 65%);
  pointer-events: none;
}
.sp-section--cf-hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 170, 220, 0.1) 0%, transparent 65%);
  pointer-events: none;
}
.sp-cf-hero-container {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.sp-cf-hero-eyebrow {
  display: inline-block;
  background: var(--sp-blanco);
  color: #5A8D14;
  border: 1px solid #E5F5C2;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.sp-cf-hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -1.2px;
  color: var(--sp-negro);
  margin-bottom: 18px;
}
.sp-cf-hero-sub {
  font-size: 18px;
  color: var(--sp-gris-600);
  line-height: 1.55;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   CÓMO FUNCIONA · Flujo principal (4 pasos)
   ============================================ */
.sp-section--cf-pasos {
  background: var(--sp-blanco);
  padding: 80px 24px;
}
.sp-cf-pasos-container {
  max-width: 1100px;
  margin: 0 auto;
}
.sp-cf-pasos-header {
  text-align: center;
  margin-bottom: 70px;
}
.sp-cf-pasos-header h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--sp-negro);
  margin-top: 14px;
}

.sp-cf-paso {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.sp-cf-paso:last-child {
  margin-bottom: 0;
}
.sp-cf-paso--right .sp-cf-paso-texto {
  order: 2;
}
.sp-cf-paso--right .sp-cf-paso-imagen {
  order: 1;
}

.sp-cf-paso-texto {
  max-width: 460px;
}
.sp-cf-paso-num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 64px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--sp-verde);
  letter-spacing: -2px;
  margin-bottom: 12px;
}
.sp-cf-paso-texto h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.6px;
  color: var(--sp-negro);
  margin-bottom: 14px;
}
.sp-cf-paso-texto p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--sp-gris-600);
  margin-bottom: 22px;
}

.sp-cf-paso-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sp-cf-paso-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--sp-negro);
  font-weight: 500;
  line-height: 1.4;
}
.sp-cf-paso-list svg {
  width: 18px;
  height: 18px;
  color: #5A8D14;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Screenshot card */
.sp-cf-paso-imagen {
  display: flex;
  justify-content: center;
}
.sp-cf-paso-screenshot {
  background: var(--sp-blanco);
  border-radius: 24px;
  padding: 12px;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  max-width: 360px;
  width: 100%;
  transition: transform .3s ease;
}
.sp-cf-paso-screenshot:hover {
  transform: translateY(-4px);
}
.sp-cf-paso-screenshot img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
}
.sp-cf-paso-screenshot--tarjeta {
  max-width: 480px;
  padding: 20px;
}
.sp-cf-paso-screenshot--tarjeta img {
  border-radius: 12px;
}

/* ============================================
   CÓMO FUNCIONA · Funcionalidades extra
   ============================================ */
.sp-section--cf-funcs {
  background: linear-gradient(180deg, #FAFBFC 0%, #FFFFFF 100%);
  padding: 80px 24px;
}
.sp-cf-funcs-container {
  max-width: 1100px;
  margin: 0 auto;
}
.sp-cf-funcs-header {
  text-align: center;
  margin-bottom: 70px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.sp-cf-funcs-header h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--sp-negro);
  margin-top: 14px;
  margin-bottom: 14px;
}
.sp-cf-funcs-header p {
  font-size: 17px;
  color: var(--sp-gris-600);
  line-height: 1.55;
}

.sp-cf-funcs-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.sp-cf-func {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.sp-cf-func--reverse .sp-cf-func-imagen {
  order: 2;
}
.sp-cf-func--reverse .sp-cf-func-texto {
  order: 1;
}

.sp-cf-func-imagen {
  display: flex;
  justify-content: center;
}
.sp-cf-func-texto {
  max-width: 460px;
}
.sp-cf-func-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.sp-cf-func-tag--azul {
  background: rgba(0, 170, 220, 0.1);
  color: var(--sp-azul);
}
.sp-cf-func-tag--lima {
  background: rgba(200, 230, 60, 0.2);
  color: #5A8D14;
}
.sp-cf-func-tag--rosa {
  background: rgba(236, 72, 153, 0.1);
  color: #BE185D;
}
.sp-cf-func-texto h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.6px;
  color: var(--sp-negro);
  margin-bottom: 12px;
}
.sp-cf-func-texto p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--sp-gris-600);
  margin-bottom: 20px;
}
.sp-cf-func-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sp-cf-func-bullets li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  color: var(--sp-negro);
  font-weight: 500;
  line-height: 1.4;
}
.sp-cf-func-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--sp-verde);
  border-radius: 50%;
}

/* ============================================
   CÓMO FUNCIONA · Cintillo seguridad
   ============================================ */
.sp-section--cf-seg {
  background: var(--sp-negro);
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}
.sp-section--cf-seg::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 230, 60, 0.12) 0%, transparent 65%);
  pointer-events: none;
}
.sp-cf-seg-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.sp-cf-seg-icon {
  width: 80px;
  height: 80px;
  color: var(--sp-verde);
  flex-shrink: 0;
}
.sp-cf-seg-content h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--sp-blanco);
  margin-bottom: 10px;
}
.sp-cf-seg-content p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}
.sp-cf-seg-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--sp-verde);
  text-decoration: none;
  transition: gap .25s ease;
}
.sp-cf-seg-link:hover {
  gap: 12px;
}
.sp-cf-seg-link svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   CÓMO FUNCIONA · CTA final
   ============================================ */
.sp-section--cf-cta {
  background: linear-gradient(135deg, #FAFFE9 0%, #FFFFFF 50%, #E6F3FF 100%);
  padding: 80px 24px;
  text-align: center;
}
.sp-cf-cta-container {
  max-width: 720px;
  margin: 0 auto;
}
.sp-cf-cta-eyebrow {
  display: inline-block;
  background: var(--sp-blanco);
  color: #5A8D14;
  border: 1px solid #E5F5C2;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.sp-cf-cta-container h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--sp-negro);
  margin-bottom: 14px;
}
.sp-cf-cta-sub {
  font-size: 17px;
  color: var(--sp-gris-600);
  line-height: 1.55;
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.sp-cf-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.sp-cf-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all .3s ease;
}
.sp-cf-cta-btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}
.sp-cf-cta-btn--primary {
  background: var(--sp-negro);
  color: var(--sp-verde);
  box-shadow: 0 12px 28px -8px rgba(43, 44, 46, 0.4);
}
.sp-cf-cta-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -8px rgba(43, 44, 46, 0.5);
}
.sp-cf-cta-btn--secondary {
  background: var(--sp-blanco);
  color: var(--sp-negro);
  border: 2px solid var(--sp-negro);
}
.sp-cf-cta-btn--secondary:hover {
  background: var(--sp-negro);
  color: var(--sp-blanco);
  transform: translateY(-3px);
}
.sp-cf-cta-tagline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #A0A0A0;
}
.sp-cf-cta-tagline span {
  color: #5A8D14;
}

/* ============================================
   CÓMO FUNCIONA · Responsive
   ============================================ */
@media (max-width: 768px) {
  .sp-section--cf-hero {
    padding: 60px 20px 40px;
  }
  .sp-cf-hero-title {
    font-size: 32px;
  }
  .sp-cf-hero-sub {
    font-size: 16px;
  }

  .sp-section--cf-pasos {
    padding: 50px 20px;
  }
  .sp-cf-pasos-header {
    margin-bottom: 50px;
  }
  .sp-cf-pasos-header h2,
  .sp-cf-funcs-header h2 {
    font-size: 28px;
  }
  .sp-cf-paso,
  .sp-cf-func {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 60px;
  }
  .sp-cf-paso--right .sp-cf-paso-texto,
  .sp-cf-func--reverse .sp-cf-func-texto {
    order: 0;
  }
  .sp-cf-paso--right .sp-cf-paso-imagen,
  .sp-cf-func--reverse .sp-cf-func-imagen {
    order: 0;
  }
  .sp-cf-paso-num {
    font-size: 48px;
  }
  .sp-cf-paso-texto h3 {
    font-size: 26px;
  }
  .sp-cf-func-texto h3 {
    font-size: 24px;
  }

  .sp-section--cf-funcs {
    padding: 50px 20px;
  }
  .sp-cf-funcs-grid {
    gap: 60px;
  }

  .sp-section--cf-seg {
    padding: 50px 20px;
  }
  .sp-cf-seg-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .sp-cf-seg-icon {
    width: 60px;
    height: 60px;
  }
  .sp-cf-seg-content h2 {
    font-size: 24px;
  }

  .sp-section--cf-cta {
    padding: 50px 20px;
  }
  .sp-cf-cta-container h2 {
    font-size: 30px;
  }
  .sp-cf-cta-sub {
    font-size: 15px;
  }
  .sp-cf-cta-buttons {
    flex-direction: column;
  }
  .sp-cf-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   CÓMO FUNCIONA · FAQ (mejora SEO + UX)
   ============================================ */
.sp-section--cf-faq {
  background: var(--sp-blanco);
  padding: 80px 24px;
}
.sp-cf-faq-container {
  max-width: 760px;
  margin: 0 auto;
}
.sp-cf-faq-header {
  text-align: center;
  margin-bottom: 50px;
}
.sp-cf-faq-header h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--sp-negro);
  margin-top: 14px;
}
.sp-cf-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sp-cf-faq-item {
  background: #FAFBFC;
  border: 1px solid #F0F0F0;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.sp-cf-faq-item:hover {
  border-color: #E0E5EA;
  box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.05);
}
.sp-cf-faq-item[open] {
  background: var(--sp-blanco);
  border-color: var(--sp-verde);
  box-shadow: 0 6px 18px -6px rgba(200, 230, 60, 0.25);
}
.sp-cf-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--sp-negro);
  line-height: 1.35;
  list-style: none;
}
.sp-cf-faq-item summary::-webkit-details-marker {
  display: none;
}
.sp-cf-faq-item summary svg {
  width: 20px;
  height: 20px;
  color: #5A8D14;
  flex-shrink: 0;
  transition: transform .25s ease;
}
.sp-cf-faq-item[open] summary svg {
  transform: rotate(180deg);
}
.sp-cf-faq-item p {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--sp-gris-600);
  margin: 0;
}

@media (max-width: 768px) {
  .sp-section--cf-faq {
    padding: 50px 20px;
  }
  .sp-cf-faq-header h2 {
    font-size: 28px;
  }
  .sp-cf-faq-item summary {
    padding: 18px 20px;
    font-size: 15px;
  }
  .sp-cf-faq-item p {
    padding: 0 20px 20px;
    font-size: 14px;
  }
}


/* ============================================
   CLUBS · Hero
   ============================================ */
.sp-section--club-hero {
  background: linear-gradient(180deg, #FAFFE9 0%, #FFFFFF 100%);
  padding: 70px 24px 60px;
  position: relative;
  overflow: hidden;
}
.sp-section--club-hero::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -120px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 230, 60, 0.18) 0%, transparent 65%);
  pointer-events: none;
}
.sp-section--club-hero::after {
  content: '';
  position: absolute;
  bottom: -140px;
  left: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 170, 220, 0.1) 0%, transparent 65%);
  pointer-events: none;
}
.sp-club-hero-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.sp-club-hero-eyebrow {
  display: inline-block;
  background: var(--sp-blanco);
  color: var(--sp-azul);
  border: 1px solid #C8EBF8;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.sp-club-hero-texto h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 46px;
  line-height: 1.05;
  letter-spacing: -1.2px;
  color: var(--sp-negro);
  margin-bottom: 18px;
}
.sp-club-hero-sub {
  font-size: 17px;
  color: var(--sp-gris-600);
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 540px;
}
.sp-club-hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.sp-club-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all .3s ease;
  cursor: pointer;
  border: none;
}
.sp-club-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}
.sp-club-btn--primary {
  background: var(--sp-negro);
  color: var(--sp-verde);
  box-shadow: 0 12px 28px -8px rgba(43, 44, 46, 0.4);
}
.sp-club-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -8px rgba(43, 44, 46, 0.5);
}
.sp-club-btn--ghost {
  background: transparent;
  color: var(--sp-negro);
  border: 2px solid var(--sp-negro);
}
.sp-club-btn--ghost:hover {
  background: var(--sp-negro);
  color: var(--sp-blanco);
  transform: translateY(-3px);
}
.sp-club-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: #5A8D14;
}
.sp-club-hero-pill svg {
  width: 16px;
  height: 16px;
  color: #5A8D14;
}
.sp-club-hero-imagen {
  display: flex;
  justify-content: center;
}
.sp-club-hero-imagen img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 50px -16px rgba(0, 0, 0, 0.18);
}
.sp-club-hero-imagen .sp-cf-paso-screenshot {
  max-width: 320px;
}

/* ============================================
   CLUBS · Stats (fondo negro)
   ============================================ */
.sp-section--club-stats {
  background: var(--sp-negro);
  padding: 50px 24px;
}
.sp-club-stats-container {
  max-width: 1100px;
  margin: 0 auto;
}
.sp-club-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  align-items: center;
}
.sp-club-stat {
  display: grid;
  grid-template-rows: 60px auto;
  align-items: center;
  justify-items: center;
  gap: 10px;
}
.sp-club-stat-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
  color: var(--sp-verde);
  letter-spacing: -1px;
  white-space: nowrap;
}
.sp-club-stat-num--small {
  font-size: 28px;
}
.sp-club-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  max-width: 280px;
}
.sp-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   CLUBS · Por qué (4 cards)
   ============================================ */
.sp-section--club-why {
  background: var(--sp-blanco);
  padding: 80px 24px;
}
.sp-club-why-container {
  max-width: 1100px;
  margin: 0 auto;
}
.sp-club-why-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.sp-club-why-header h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--sp-negro);
  margin-top: 14px;
  margin-bottom: 14px;
}
.sp-club-why-header p {
  font-size: 16px;
  color: var(--sp-gris-600);
  line-height: 1.6;
}
.sp-club-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.sp-club-why-card {
  background: linear-gradient(180deg, #FAFBFC 0%, #FFFFFF 100%);
  border: 1px solid #F0F0F0;
  border-radius: 18px;
  padding: 30px;
  transition: all .3s ease;
}
.sp-club-why-card:hover {
  transform: translateY(-4px);
  border-color: #E0E5EA;
  box-shadow: 0 16px 36px -12px rgba(0, 0, 0, 0.1);
}
.sp-club-why-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.sp-club-why-icon svg {
  width: 28px;
  height: 28px;
}
.sp-club-why-icon--lima { background: rgba(200, 230, 60, 0.2); color: #5A8D14; }
.sp-club-why-icon--azul { background: rgba(0, 170, 220, 0.12); color: var(--sp-azul); }
.sp-club-why-icon--rosa { background: rgba(236, 72, 153, 0.12); color: #BE185D; }
.sp-club-why-icon--negro { background: rgba(43, 44, 46, 0.08); color: var(--sp-negro); }
.sp-club-why-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--sp-negro);
  margin-bottom: 10px;
}
.sp-club-why-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--sp-gris-600);
}

/* ============================================
   CLUBS · Americanas (6 cards numeradas)
   ============================================ */
.sp-section--club-amer {
  background: linear-gradient(180deg, #FAFBFC 0%, #FFFFFF 100%);
  padding: 80px 24px;
}
.sp-club-amer-container {
  max-width: 1100px;
  margin: 0 auto;
}
.sp-club-amer-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.sp-club-amer-header h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--sp-negro);
  margin-top: 14px;
  margin-bottom: 14px;
}
.sp-club-amer-header p {
  font-size: 16px;
  color: var(--sp-gris-600);
  line-height: 1.6;
}
.sp-club-amer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.sp-club-amer-card {
  background: var(--sp-blanco);
  border: 1px solid #F0F0F0;
  border-radius: 14px;
  padding: 24px;
  position: relative;
  transition: all .3s ease;
}
.sp-club-amer-card:hover {
  border-color: var(--sp-verde);
  box-shadow: 0 12px 28px -10px rgba(200, 230, 60, 0.3);
}
.sp-club-amer-num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--sp-verde);
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.sp-club-amer-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.4px;
  color: var(--sp-negro);
  margin-bottom: 8px;
}
.sp-club-amer-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--sp-gris-600);
  margin: 0;
}
.sp-club-amer-quote {
  background: var(--sp-negro);
  color: var(--sp-blanco);
  padding: 30px 40px;
  border-radius: 18px;
  border-left: 6px solid var(--sp-verde);
  margin: 48px auto;
  max-width: 800px;
  position: relative;
}
.sp-club-amer-quote p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.5px;
  color: var(--sp-blanco);
  margin: 0;
}
.sp-club-amer-screens {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 50px auto 30px;
  max-width: 760px;
}
.sp-club-amer-cta-inline {
  background: linear-gradient(135deg, rgba(200, 230, 60, 0.15) 0%, rgba(200, 230, 60, 0.05) 100%);
  border: 1px solid #E5F5C2;
  border-radius: 14px;
  padding: 20px 28px;
  text-align: center;
  max-width: 760px;
  margin: 30px auto 0;
}
.sp-club-amer-cta-inline p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--sp-negro);
  margin: 0;
}

/* ============================================
   CLUBS · Validación de niveles + Insignias
   ============================================ */
.sp-section--club-niveles {
  background: var(--sp-blanco);
  padding: 80px 24px;
}
.sp-club-niveles-container {
  max-width: 1100px;
  margin: 0 auto;
}
.sp-club-niveles-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.sp-club-niveles-header h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--sp-negro);
  margin-top: 14px;
  margin-bottom: 14px;
}
.sp-club-niveles-header p {
  font-size: 16px;
  color: var(--sp-gris-600);
  line-height: 1.6;
}
.sp-club-niveles-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 70px;
}
.sp-club-niveles-criterios h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--sp-negro);
  margin-bottom: 24px;
}
.sp-club-niveles-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sp-club-niveles-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #FAFBFC;
  border: 1px solid #F0F0F0;
  border-radius: 12px;
  padding: 16px 18px;
  transition: border-color .2s ease;
}
.sp-club-niveles-item:hover {
  border-color: var(--sp-verde);
}
.sp-club-niveles-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(200, 230, 60, 0.18);
  color: #5A8D14;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sp-club-niveles-item-icon svg {
  width: 20px;
  height: 20px;
}
.sp-club-niveles-item strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--sp-negro);
  margin-bottom: 2px;
}
.sp-club-niveles-item p {
  font-size: 13px;
  color: var(--sp-gris-600);
  line-height: 1.4;
  margin: 0;
}
.sp-club-niveles-imagen {
  display: flex;
  justify-content: center;
}
.sp-club-niveles-imagen .sp-cf-paso-screenshot {
  max-width: 340px;
}

/* Sistema de insignias */
.sp-club-insignias {
  background: linear-gradient(135deg, #2B2C2E 0%, #1F2022 100%);
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sp-club-insignias::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 230, 60, 0.15) 0%, transparent 65%);
  pointer-events: none;
}
.sp-club-insignias-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--sp-blanco);
  margin-bottom: 8px;
  position: relative;
}
.sp-club-insignias-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.sp-club-insignias-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.sp-club-insignia {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 230, 60, 0.2);
  border-radius: 14px;
  padding: 24px 18px;
  text-align: center;
  transition: all .3s ease;
}
.sp-club-insignia:hover {
  background: rgba(200, 230, 60, 0.08);
  border-color: var(--sp-verde);
  transform: translateY(-4px);
}
.sp-club-insignia-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 42px;
  line-height: 1;
  color: var(--sp-verde);
  letter-spacing: -1.5px;
  margin-bottom: 8px;
}
.sp-club-insignia strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--sp-blanco);
  margin-bottom: 4px;
}
.sp-club-insignia p {
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* ============================================
   CLUBS · 3 vías de ingresos (reusa .sp-cf-func)
   ============================================ */
.sp-section--club-ingresos {
  background: linear-gradient(180deg, #FAFBFC 0%, #FFFFFF 100%);
  padding: 80px 24px;
}
.sp-club-ingresos-container {
  max-width: 1100px;
  margin: 0 auto;
}
.sp-club-ingresos-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.sp-club-ingresos-header h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--sp-negro);
  margin-top: 14px;
  margin-bottom: 14px;
}
.sp-club-ingresos-header p {
  font-size: 16px;
  color: var(--sp-gris-600);
  line-height: 1.6;
}
.sp-club-ingresos-container .sp-cf-func {
  margin-bottom: 70px;
}
.sp-club-ingresos-container .sp-cf-func:last-of-type {
  margin-bottom: 0;
}
.sp-club-ingresos-container .sp-cf-func-imagen img:not(.sp-cf-paso-screenshot img) {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 16px 36px -12px rgba(0, 0, 0, 0.12);
}
.sp-cf-func-nota {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(200, 230, 60, 0.1);
  border-left: 3px solid var(--sp-verde);
  border-radius: 8px;
  font-size: 13px;
  color: #5A8D14;
  line-height: 1.5;
}
.sp-cf-func-nota svg {
  width: 18px;
  height: 18px;
  color: #5A8D14;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   CLUBS · CTA principal
   ============================================ */
.sp-section--club-cta {
  background: linear-gradient(135deg, #FAFFE9 0%, #FFFFFF 50%, #E6F3FF 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sp-club-cta-container {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.sp-club-cta-eyebrow {
  display: inline-block;
  background: var(--sp-blanco);
  color: #5A8D14;
  border: 1px solid #E5F5C2;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.sp-club-cta-container h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--sp-negro);
  margin-bottom: 14px;
}
.sp-club-cta-sub {
  font-size: 17px;
  color: var(--sp-gris-600);
  line-height: 1.55;
  margin-bottom: 36px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.sp-club-cta-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.sp-club-cta-step {
  background: var(--sp-blanco);
  border: 1px solid #F0F0F0;
  border-radius: 14px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.sp-club-cta-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sp-verde);
  color: var(--sp-negro);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-club-cta-step p {
  font-size: 14px;
  color: var(--sp-negro);
  line-height: 1.5;
  margin: 0;
}
.sp-club-cta-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.sp-club-cta-mail {
  font-size: 14px;
  color: var(--sp-gris-600);
  margin: 0;
}
.sp-club-cta-mail a {
  color: var(--sp-azul);
  text-decoration: none;
  font-weight: 700;
}
.sp-club-cta-mail a:hover {
  text-decoration: underline;
}

/* ============================================
   CLUBS · Responsive
   ============================================ */
@media (max-width: 768px) {
  .sp-section--club-hero { padding: 50px 20px 40px; }
  .sp-club-hero-container { grid-template-columns: 1fr; gap: 40px; }
  .sp-club-hero-texto h1 { font-size: 32px; }
  .sp-club-hero-sub { font-size: 16px; }
  .sp-club-hero-buttons { flex-direction: column; }
  .sp-club-btn { width: 100%; justify-content: center; }

  .sp-section--club-stats { padding: 40px 20px; }
  .sp-club-stats-grid { grid-template-columns: 1fr; gap: 28px; }
  .sp-club-stat-num { font-size: 36px; }

  .sp-section--club-why,
  .sp-section--club-amer,
  .sp-section--club-niveles,
  .sp-section--club-ingresos,
  .sp-section--club-cta { padding: 50px 20px; }

  .sp-club-why-header h2,
  .sp-club-amer-header h2,
  .sp-club-niveles-header h2,
  .sp-club-ingresos-header h2,
  .sp-club-cta-container h2 { font-size: 28px; }

  .sp-club-why-grid { grid-template-columns: 1fr; }

  .sp-club-amer-grid { grid-template-columns: 1fr; }
  .sp-club-amer-quote { padding: 24px 26px; }
  .sp-club-amer-quote p { font-size: 18px; }
  .sp-club-amer-screens { grid-template-columns: 1fr; gap: 24px; }

  .sp-club-niveles-split { grid-template-columns: 1fr; gap: 40px; }
  .sp-club-insignias { padding: 36px 24px; }
  .sp-club-insignias-grid { grid-template-columns: 1fr 1fr; }
  .sp-club-insignias-title { font-size: 22px; }

  .sp-club-cta-steps { grid-template-columns: 1fr; gap: 12px; }
}

/* ============================================
   ORGANIZADORES · Hero
   ============================================ */
.sp-section--org-hero {
  background: linear-gradient(180deg, #FAFFE9 0%, #FFFFFF 100%);
  padding: 70px 24px 60px;
  position: relative;
  overflow: hidden;
}
.sp-section--org-hero::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -120px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 230, 60, 0.18) 0%, transparent 65%);
  pointer-events: none;
}
.sp-section--org-hero::after {
  content: '';
  position: absolute;
  bottom: -140px;
  left: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 170, 220, 0.1) 0%, transparent 65%);
  pointer-events: none;
}
.sp-org-hero-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.sp-org-hero-eyebrow {
  display: inline-block;
  background: var(--sp-blanco);
  color: var(--sp-azul);
  border: 1px solid #C8EBF8;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.sp-org-hero-texto h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 46px;
  line-height: 1.05;
  letter-spacing: -1.2px;
  color: var(--sp-negro);
  margin-bottom: 18px;
}
.sp-org-hero-sub {
  font-size: 17px;
  color: var(--sp-gris-600);
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 540px;
}
.sp-org-hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.sp-org-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all .3s ease;
  cursor: pointer;
  border: none;
}
.sp-org-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}
.sp-org-btn--primary {
  background: var(--sp-negro);
  color: var(--sp-verde);
  box-shadow: 0 12px 28px -8px rgba(43, 44, 46, 0.4);
}
.sp-org-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -8px rgba(43, 44, 46, 0.5);
}
.sp-org-btn--ghost {
  background: transparent;
  color: var(--sp-negro);
  border: 2px solid var(--sp-negro);
}
.sp-org-btn--ghost:hover {
  background: var(--sp-negro);
  color: var(--sp-blanco);
  transform: translateY(-3px);
}
.sp-org-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: #5A8D14;
}
.sp-org-hero-pill svg {
  width: 16px;
  height: 16px;
  color: #5A8D14;
}
.sp-org-hero-imagen {
  display: flex;
  justify-content: center;
}
.sp-org-hero-imagen img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 50px -16px rgba(0, 0, 0, 0.18);
}

/* ============================================
   ORGANIZADORES · Stats (reusa estilos clubs)
   ============================================ */
.sp-section--org-stats {
  background: var(--sp-negro);
  padding: 50px 24px;
}
.sp-org-stats-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ============================================
   ORGANIZADORES · Dolor → Solución
   ============================================ */
.sp-section--org-dolor {
  background: var(--sp-blanco);
  padding: 80px 24px;
}
.sp-org-dolor-container {
  max-width: 1100px;
  margin: 0 auto;
}
.sp-org-dolor-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.sp-org-dolor-header h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--sp-negro);
  margin-top: 14px;
}
.sp-eyebrow--rosa {
  background: var(--sp-blanco);
  color: #BE185D;
  border: 1px solid #FFD1DD;
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}
.sp-org-dolor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.sp-org-dolor-card {
  background: linear-gradient(180deg, #FFF5F8 0%, #FFFFFF 100%);
  border: 1px solid #FFE4ED;
  border-radius: 18px;
  padding: 28px;
  transition: all .3s ease;
}
.sp-org-dolor-card:hover {
  transform: translateY(-4px);
  border-color: #F8C2D7;
  box-shadow: 0 16px 36px -12px rgba(190, 24, 93, 0.15);
}
.sp-org-dolor-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.sp-org-dolor-card-icon svg {
  width: 28px;
  height: 28px;
}
.sp-org-dolor-icon-rosa {
  background: rgba(190, 24, 93, 0.1);
  color: #BE185D;
}
.sp-org-dolor-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--sp-negro);
  margin-bottom: 10px;
}
.sp-org-dolor-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--sp-gris-600);
}
.sp-org-dolor-cta {
  background: linear-gradient(135deg, rgba(200, 230, 60, 0.15) 0%, rgba(200, 230, 60, 0.05) 100%);
  border: 1px solid #E5F5C2;
  border-radius: 16px;
  padding: 24px 32px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.sp-org-dolor-cta p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--sp-negro);
  margin: 0;
}

/* ============================================
   ORGANIZADORES · Funcionalidades (reusa .sp-cf-func)
   ============================================ */
.sp-section--org-funcs {
  background: linear-gradient(180deg, #FAFBFC 0%, #FFFFFF 100%);
  padding: 80px 24px;
}
.sp-org-funcs-container {
  max-width: 1100px;
  margin: 0 auto;
}
.sp-org-funcs-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.sp-org-funcs-header h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--sp-negro);
  margin-top: 14px;
  margin-bottom: 14px;
}
.sp-org-funcs-header p {
  font-size: 16px;
  color: var(--sp-gris-600);
  line-height: 1.6;
}
.sp-org-funcs-container .sp-cf-func {
  margin-bottom: 70px;
}
.sp-org-funcs-container .sp-cf-func-imagen img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 16px 36px -12px rgba(0, 0, 0, 0.12);
}

.sp-org-funcs-extra {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.sp-org-funcs-extra-card {
  background: var(--sp-blanco);
  border: 1px solid #F0F0F0;
  border-radius: 14px;
  padding: 24px;
  transition: all .3s ease;
}
.sp-org-funcs-extra-card:hover {
  transform: translateY(-3px);
  border-color: #E0E5EA;
  box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.08);
}
.sp-org-funcs-extra-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.sp-org-funcs-extra-icon svg {
  width: 22px;
  height: 22px;
}
.sp-org-funcs-extra-icon-lima { background: rgba(200, 230, 60, 0.2); color: #5A8D14; }
.sp-org-funcs-extra-icon-azul { background: rgba(0, 170, 220, 0.12); color: var(--sp-azul); }
.sp-org-funcs-extra-icon-rosa { background: rgba(236, 72, 153, 0.12); color: #BE185D; }
.sp-org-funcs-extra-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.4px;
  color: var(--sp-negro);
  margin-bottom: 8px;
}
.sp-org-funcs-extra-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--sp-gris-600);
  margin: 0;
}

/* ============================================
   ORGANIZADORES · Centro de operaciones
   ============================================ */
.sp-section--org-centro {
  background: var(--sp-blanco);
  padding: 80px 24px;
}
.sp-org-centro-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.sp-org-centro-texto h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--sp-negro);
  margin-top: 14px;
  margin-bottom: 14px;
}
.sp-org-centro-texto > p {
  font-size: 16px;
  color: var(--sp-gris-600);
  line-height: 1.6;
  margin-bottom: 24px;
}
.sp-org-centro-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sp-org-centro-list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  align-items: start;
  padding-left: 14px;
  border-left: 3px solid var(--sp-verde);
}
.sp-org-centro-list strong {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--sp-negro);
}
.sp-org-centro-list span {
  font-size: 14px;
  line-height: 1.5;
  color: var(--sp-gris-600);
}
.sp-org-centro-imagen img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.2);
}

/* ============================================
   ORGANIZADORES · Modo Trial
   ============================================ */
.sp-section--org-trial {
  background: linear-gradient(135deg, #FAFFE9 0%, #FFFFFF 50%, #E6F3FF 100%);
  padding: 80px 24px;
}
.sp-org-trial-container {
  max-width: 1100px;
  margin: 0 auto;
}
.sp-org-trial-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.sp-org-trial-header h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--sp-negro);
  margin-top: 14px;
  margin-bottom: 14px;
}
.sp-org-trial-header p {
  font-size: 16px;
  color: var(--sp-gris-600);
  line-height: 1.6;
}
.sp-org-trial-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}
.sp-org-trial-step {
  background: var(--sp-blanco);
  border: 1px solid #F0F0F0;
  border-radius: 18px;
  padding: 28px;
  position: relative;
  transition: all .3s ease;
}
.sp-org-trial-step:hover {
  transform: translateY(-4px);
  border-color: var(--sp-verde);
  box-shadow: 0 16px 36px -12px rgba(200, 230, 60, 0.25);
}
.sp-org-trial-step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--sp-verde);
  letter-spacing: -1px;
  margin-bottom: 10px;
}
.sp-org-trial-step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.4px;
  color: var(--sp-negro);
  margin-bottom: 10px;
}
.sp-org-trial-step p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--sp-gris-600);
  margin: 0;
}
.sp-org-trial-warning {
  background: var(--sp-blanco);
  border: 1px solid #FFE4ED;
  border-left: 4px solid #BE185D;
  border-radius: 12px;
  padding: 18px 22px;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.sp-org-trial-warning svg {
  width: 22px;
  height: 22px;
  color: #BE185D;
  flex-shrink: 0;
  margin-top: 2px;
}
.sp-org-trial-warning p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--sp-gris-600);
  margin: 0;
}

/* ============================================
   ORGANIZADORES · Cancelación + IA (2 cards)
   ============================================ */
.sp-section--org-extra {
  background: var(--sp-blanco);
  padding: 80px 24px;
}
.sp-org-extra-container {
  max-width: 1100px;
  margin: 0 auto;
}
.sp-org-extra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.sp-org-extra-card {
  border-radius: 18px;
  padding: 32px;
  position: relative;
  transition: all .3s ease;
}
.sp-org-extra-card-azul {
  background: linear-gradient(180deg, #F0FAFF 0%, #FFFFFF 100%);
  border: 1px solid #C8EBF8;
}
.sp-org-extra-card-lima {
  background: linear-gradient(180deg, #FAFFE9 0%, #FFFFFF 100%);
  border: 1px solid #E5F5C2;
}
.sp-org-extra-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -12px rgba(0, 0, 0, 0.1);
}
.sp-org-extra-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.sp-org-extra-icon svg {
  width: 26px;
  height: 26px;
}
.sp-org-extra-card-azul .sp-org-extra-icon {
  background: rgba(0, 170, 220, 0.15);
  color: var(--sp-azul);
}
.sp-org-extra-card-lima .sp-org-extra-icon {
  background: rgba(200, 230, 60, 0.25);
  color: #5A8D14;
}
.sp-org-extra-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--sp-negro);
  margin-bottom: 12px;
}
.sp-org-extra-card > p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--sp-gris-600);
  margin-bottom: 16px;
}
.sp-org-extra-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sp-org-extra-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--sp-gris-600);
}
.sp-org-extra-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #5A8D14;
  font-weight: 700;
}
.sp-org-extra-list strong {
  color: var(--sp-negro);
  font-family: var(--font-heading);
  font-weight: 700;
}
.sp-org-extra-note {
  font-size: 13px;
  line-height: 1.5;
  color: #5A8D14;
  font-weight: 600;
  font-style: italic;
  margin: 14px 0 0;
}

/* ============================================
   ORGANIZADORES · CTA principal (reusa clubs)
   ============================================ */
.sp-section--org-cta {
  background: linear-gradient(135deg, #FAFFE9 0%, #FFFFFF 50%, #E6F3FF 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sp-org-cta-container {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.sp-org-cta-eyebrow {
  display: inline-block;
  background: var(--sp-blanco);
  color: #5A8D14;
  border: 1px solid #E5F5C2;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.sp-org-cta-container h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--sp-negro);
  margin-bottom: 14px;
}
.sp-org-cta-sub {
  font-size: 17px;
  color: var(--sp-gris-600);
  line-height: 1.55;
  margin-bottom: 36px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   ORGANIZADORES · Responsive
   ============================================ */
@media (max-width: 768px) {
  .sp-section--org-hero { padding: 50px 20px 40px; }
  .sp-org-hero-container { grid-template-columns: 1fr; gap: 40px; }
  .sp-org-hero-texto h1 { font-size: 32px; }
  .sp-org-hero-sub { font-size: 16px; }
  .sp-org-hero-buttons { flex-direction: column; }
  .sp-org-btn { width: 100%; justify-content: center; }

  .sp-section--org-stats { padding: 40px 20px; }

  .sp-section--org-dolor,
  .sp-section--org-funcs,
  .sp-section--org-centro,
  .sp-section--org-trial,
  .sp-section--org-extra,
  .sp-section--org-cta { padding: 50px 20px; }

  .sp-org-dolor-header h2,
  .sp-org-funcs-header h2,
  .sp-org-centro-texto h2,
  .sp-org-trial-header h2,
  .sp-org-cta-container h2 { font-size: 28px; }

  .sp-org-dolor-grid,
  .sp-org-funcs-extra,
  .sp-org-trial-flow,
  .sp-org-extra-grid { grid-template-columns: 1fr; }

  .sp-org-centro-container { grid-template-columns: 1fr; gap: 40px; }
  .sp-org-centro-list li { grid-template-columns: 1fr; gap: 4px; }
}

/* ============================================
   CONTACTO · Hero
   ============================================ */
.sp-section--ct-hero {
  background: linear-gradient(180deg, #FAFFE9 0%, #FFFFFF 100%);
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}
.sp-section--ct-hero::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -120px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 230, 60, 0.18) 0%, transparent 65%);
  pointer-events: none;
}
.sp-ct-hero-container {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.sp-ct-hero-eyebrow {
  display: inline-block;
  background: var(--sp-blanco);
  color: var(--sp-azul);
  border: 1px solid #C8EBF8;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.sp-ct-hero-container h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--sp-negro);
  margin-bottom: 22px;
}
.sp-ct-hero-sub {
  font-size: 18px;
  color: var(--sp-gris-600);
  line-height: 1.55;
  margin-bottom: 26px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.sp-ct-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sp-blanco);
  border: 1px solid #E5F5C2;
  color: #5A8D14;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  padding: 9px 16px;
  border-radius: 100px;
}
.sp-ct-hero-pill svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   CONTACTO · 4 Cards destinos principales
   ============================================ */
.sp-section--ct-cards {
  background: var(--sp-blanco);
  padding: 70px 24px;
}
.sp-ct-cards-container {
  max-width: 1100px;
  margin: 0 auto;
}
.sp-ct-cards-header {
  text-align: center;
  margin-bottom: 50px;
}
.sp-ct-cards-header h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--sp-negro);
  margin-top: 14px;
}
.sp-ct-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.sp-ct-card {
  display: block;
  background: var(--sp-blanco);
  border: 1px solid #F0F0F0;
  border-radius: 20px;
  padding: 32px;
  text-decoration: none;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.sp-ct-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--sp-verde);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.sp-ct-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.12);
  border-color: transparent;
}
.sp-ct-card:hover::before {
  transform: scaleX(1);
}
.sp-ct-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.sp-ct-card-icon svg {
  width: 30px;
  height: 30px;
}
.sp-ct-card--lima .sp-ct-card-icon { background: rgba(200, 230, 60, 0.18); color: #5A8D14; }
.sp-ct-card--azul .sp-ct-card-icon { background: rgba(0, 170, 220, 0.12); color: var(--sp-azul); }
.sp-ct-card--rosa .sp-ct-card-icon { background: rgba(236, 72, 153, 0.12); color: #BE185D; }
.sp-ct-card--negro .sp-ct-card-icon { background: rgba(43, 44, 46, 0.08); color: var(--sp-negro); }

.sp-ct-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--sp-negro);
  margin-bottom: 10px;
}
.sp-ct-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--sp-gris-600);
  margin-bottom: 18px;
}
.sp-ct-card-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--sp-azul);
  padding: 10px 16px;
  background: #F0FAFF;
  border-radius: 100px;
  transition: all .3s ease;
}
.sp-ct-card-email svg {
  width: 14px;
  height: 14px;
}
.sp-ct-card:hover .sp-ct-card-email {
  background: var(--sp-azul);
  color: var(--sp-blanco);
}

/* ============================================
   CONTACTO · Otros canales (3 minicards)
   ============================================ */
.sp-section--ct-otros {
  background: linear-gradient(180deg, #FAFBFC 0%, #FFFFFF 100%);
  padding: 70px 24px;
}
.sp-ct-otros-container {
  max-width: 900px;
  margin: 0 auto;
}
.sp-ct-otros-header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.sp-ct-otros-header h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.6px;
  color: var(--sp-negro);
  margin-top: 14px;
  margin-bottom: 12px;
}
.sp-ct-otros-header p {
  font-size: 15px;
  color: var(--sp-gris-600);
  line-height: 1.55;
}
.sp-ct-otros-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sp-ct-otro {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--sp-blanco);
  border: 1px solid #F0F0F0;
  border-radius: 14px;
  padding: 18px 20px;
  text-decoration: none;
  transition: all .3s ease;
}
.sp-ct-otro:hover {
  transform: translateY(-3px);
  border-color: #C8E63C;
  box-shadow: 0 12px 24px -10px rgba(200, 230, 60, 0.25);
}
.sp-ct-otro-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #FAFFE9;
  color: #5A8D14;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sp-ct-otro-icon svg {
  width: 20px;
  height: 20px;
}
.sp-ct-otro-texto strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--sp-negro);
  line-height: 1.3;
  margin-bottom: 3px;
}
.sp-ct-otro-texto span {
  font-size: 12px;
  color: var(--sp-azul);
  font-family: var(--font-heading);
  font-weight: 600;
}

/* ============================================
   CONTACTO · Redes sociales + Tiempo respuesta
   ============================================ */
.sp-section--ct-social {
  background: var(--sp-blanco);
  padding: 70px 24px;
}
.sp-ct-social-container {
  max-width: 1100px;
  margin: 0 auto;
}
.sp-ct-social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.sp-ct-social-card {
  background: linear-gradient(180deg, #FAFFE9 0%, #FFFFFF 100%);
  border: 1px solid #E5F5C2;
  border-radius: 20px;
  padding: 36px;
}
.sp-ct-social-card--negro {
  background: linear-gradient(135deg, #2B2C2E 0%, #1F2022 100%);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--sp-blanco);
}
.sp-ct-social-card h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.6px;
  color: var(--sp-negro);
  margin-bottom: 12px;
}
.sp-ct-social-card--negro h2 {
  color: var(--sp-blanco);
}
.sp-ct-social-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--sp-gris-600);
  margin-bottom: 22px;
}
.sp-ct-social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sp-ct-social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--sp-blanco);
  border: 1px solid #E5F5C2;
  border-radius: 12px;
  text-decoration: none;
  transition: all .3s ease;
}
.sp-ct-social-link:hover {
  border-color: var(--sp-verde);
  transform: translateX(4px);
}
.sp-ct-social-link svg {
  width: 22px;
  height: 22px;
  color: #5A8D14;
  flex-shrink: 0;
}
.sp-ct-social-link span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--sp-negro);
}

.sp-ct-tiempos {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sp-ct-tiempos li {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sp-ct-tiempos-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(200, 230, 60, 0.15);
  color: var(--sp-verde);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sp-ct-tiempos-icon svg {
  width: 20px;
  height: 20px;
}
.sp-ct-tiempos strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--sp-blanco);
  line-height: 1.3;
}
.sp-ct-tiempos span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   CONTACTO · FAQ rápido (redirección a páginas)
   ============================================ */
.sp-section--ct-faq {
  background: linear-gradient(135deg, #FAFFE9 0%, #FFFFFF 50%, #E6F3FF 100%);
  padding: 80px 24px;
}
.sp-ct-faq-container {
  max-width: 1100px;
  margin: 0 auto;
}
.sp-ct-faq-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.sp-ct-faq-header h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.7px;
  color: var(--sp-negro);
  margin-top: 14px;
  margin-bottom: 12px;
}
.sp-ct-faq-header p {
  font-size: 15px;
  color: var(--sp-gris-600);
  line-height: 1.55;
}
.sp-ct-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.sp-ct-faq-card {
  background: var(--sp-blanco);
  border: 1px solid #F0F0F0;
  border-radius: 16px;
  padding: 26px;
  text-decoration: none;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
}
.sp-ct-faq-card:hover {
  transform: translateY(-4px);
  border-color: var(--sp-verde);
  box-shadow: 0 16px 32px -12px rgba(200, 230, 60, 0.25);
}
.sp-ct-faq-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(200, 230, 60, 0.18);
  color: #5A8D14;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.sp-ct-faq-icon svg {
  width: 24px;
  height: 24px;
}
.sp-ct-faq-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.4px;
  color: var(--sp-negro);
  margin-bottom: 8px;
}
.sp-ct-faq-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--sp-gris-600);
  margin-bottom: 16px;
  flex: 1;
}
.sp-ct-faq-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--sp-azul);
}

/* ============================================
   CONTACTO · Responsive
   ============================================ */
@media (max-width: 768px) {
  .sp-section--ct-hero { padding: 60px 20px 50px; }
  .sp-ct-hero-container h1 { font-size: 36px; }
  .sp-ct-hero-sub { font-size: 16px; }

  .sp-section--ct-cards,
  .sp-section--ct-otros,
  .sp-section--ct-social,
  .sp-section--ct-faq { padding: 50px 20px; }

  .sp-ct-cards-header h2,
  .sp-ct-otros-header h2,
  .sp-ct-social-card h2,
  .sp-ct-faq-header h2 { font-size: 26px; }

  .sp-ct-cards-grid,
  .sp-ct-otros-grid,
  .sp-ct-social-grid,
  .sp-ct-faq-grid { grid-template-columns: 1fr; }

  .sp-ct-card { padding: 26px; }
  .sp-ct-social-card { padding: 28px; }
}

/* ============================================
   CONTACTO · Formulario
   ============================================ */
.sp-section--ct-form {
  background: linear-gradient(180deg, #FAFFE9 0%, #FFFFFF 100%);
  padding: 70px 24px;
}
.sp-ct-form-container {
  max-width: 760px;
  margin: 0 auto;
}
.sp-ct-form-header {
  text-align: center;
  margin-bottom: 40px;
}
.sp-ct-form-header h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.7px;
  color: var(--sp-negro);
  margin-top: 14px;
  margin-bottom: 12px;
}
.sp-ct-form-header p {
  font-size: 15px;
  color: var(--sp-gris-600);
  line-height: 1.55;
  max-width: 620px;
  margin: 0 auto;
}
.sp-ct-form {
  background: var(--sp-blanco);
  border: 1px solid #F0F0F0;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 50px -16px rgba(0, 0, 0, 0.08);
}
.sp-ct-form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.sp-ct-form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.sp-ct-form-row-2 .sp-ct-form-field {
  margin-bottom: 0;
}
.sp-ct-form-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #5A8D14;
}
.sp-ct-form-label--req::after {
  content: ' *';
  color: #BE185D;
}
.sp-ct-form-input,
.sp-ct-form-textarea,
.sp-ct-form-select {
  background: #FAFBFC;
  border: 1.5px solid #F0F0F0;
  border-radius: 10px;
  padding: 13px 16px;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  color: var(--sp-negro);
  transition: border-color .2s, background .2s;
  width: 100%;
}
.sp-ct-form-input:focus,
.sp-ct-form-textarea:focus,
.sp-ct-form-select:focus {
  outline: none;
  border-color: var(--sp-verde);
  background: var(--sp-blanco);
}
.sp-ct-form-input::placeholder,
.sp-ct-form-textarea::placeholder {
  color: #A8AEB5;
}
.sp-ct-form-input.invalid,
.sp-ct-form-textarea.invalid,
.sp-ct-form-select.invalid {
  border-color: #BE185D;
  background: #FFF5F8;
}
.sp-ct-form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%237A8089' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
  cursor: pointer;
}
.sp-ct-form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: 'Rubik', sans-serif;
  line-height: 1.5;
}
.sp-ct-form-help {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  margin-top: 5px;
}
.sp-ct-form-counter {
  font-size: 12px;
  color: var(--sp-gris-600);
}
.sp-ct-form-error {
  font-size: 12px;
  color: #BE185D;
  font-weight: 600;
  min-height: 16px;
  display: block;
}

.sp-ct-form-rgpd {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #FAFBFC;
  border: 1px solid #F0F0F0;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 24px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.sp-ct-form-rgpd:hover {
  border-color: var(--sp-verde);
}
.sp-ct-form-rgpd input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}
.sp-ct-form-rgpd-mark {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  border: 1.5px solid #D0D5DC;
  border-radius: 5px;
  background: var(--sp-blanco);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.sp-ct-form-rgpd-mark svg {
  width: 13px;
  height: 13px;
  color: var(--sp-negro);
  opacity: 0;
  transition: opacity .2s;
}
.sp-ct-form-rgpd input[type="checkbox"]:checked ~ .sp-ct-form-rgpd-mark {
  background: var(--sp-verde);
  border-color: var(--sp-verde);
}
.sp-ct-form-rgpd input[type="checkbox"]:checked ~ .sp-ct-form-rgpd-mark svg {
  opacity: 1;
}
.sp-ct-form-rgpd input[type="checkbox"]:focus-visible ~ .sp-ct-form-rgpd-mark {
  outline: 2px solid var(--sp-azul);
  outline-offset: 2px;
}
.sp-ct-form-rgpd-text {
  font-size: 13px;
  color: var(--sp-gris-600);
  line-height: 1.5;
}
.sp-ct-form-rgpd-text a {
  color: var(--sp-azul);
  text-decoration: none;
  font-weight: 600;
}
.sp-ct-form-rgpd-text a:hover {
  text-decoration: underline;
}
.sp-ct-form-rgpd.invalid {
  border-color: #BE185D;
  background: #FFF5F8;
}

.sp-ct-form-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sp-ct-form-submit {
  background: linear-gradient(135deg, #C8E63C 0%, #A8C82E 100%);
  color: var(--sp-negro);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  transition: all .3s;
}
.sp-ct-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(200, 230, 60, 0.5);
}
.sp-ct-form-submit:active {
  transform: translateY(0);
}
.sp-ct-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.sp-ct-form-submit svg {
  width: 18px;
  height: 18px;
}
.sp-ct-form-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #F0FAFF;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--sp-azul);
  line-height: 1.5;
}
.sp-ct-form-note svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Mensaje éxito post-envío */
.sp-ct-form-success {
  background: linear-gradient(135deg, #FAFFE9 0%, #FFFFFF 100%);
  border: 1.5px solid var(--sp-verde);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  display: none;
}
.sp-ct-form-success.visible {
  display: block;
}
.sp-ct-form-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sp-verde);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.sp-ct-form-success-icon svg {
  width: 28px;
  height: 28px;
  color: var(--sp-negro);
}
.sp-ct-form-success h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.4px;
  color: var(--sp-negro);
  margin-bottom: 8px;
}
.sp-ct-form-success p {
  font-size: 14px;
  color: var(--sp-gris-600);
  line-height: 1.55;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .sp-section--ct-form { padding: 50px 20px; }
  .sp-ct-form-header h2 { font-size: 26px; }
  .sp-ct-form { padding: 28px 22px; }
  .sp-ct-form-row-2 { grid-template-columns: 1fr; }
}

/* ============================================
   CONTACTO · Cards como botones (no <a>)
   ============================================ */
button.sp-ct-card {
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  width: 100%;
}
button.sp-ct-otro {
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  width: 100%;
  background: var(--sp-blanco);
}

/* ============================================
   CONTACTO · Modal
   ============================================ */
.sp-ct-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}
.sp-ct-modal[hidden] { display: none; }
.sp-ct-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43, 44, 46, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 0;
  animation: spCtFadeIn .25s ease;
}
@keyframes spCtFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes spCtSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.sp-ct-modal-dialog {
  position: relative;
  z-index: 1;
  background: var(--sp-blanco);
  border-radius: 20px;
  width: 100%;
  max-width: 600px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 0;
  box-shadow: 0 30px 60px -16px rgba(0, 0, 0, 0.35);
  animation: spCtSlideUp .3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sp-ct-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sp-blanco);
  border: 1px solid #F0F0F0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  color: var(--sp-gris-600);
  transition: all .2s;
}
.sp-ct-modal-close:hover {
  background: #FFF5F8;
  border-color: #FFD1DD;
  color: #BE185D;
  transform: rotate(90deg);
}
.sp-ct-modal-close svg {
  width: 16px;
  height: 16px;
}

.sp-ct-modal-header {
  padding: 32px 32px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-bottom: 1px solid #F4F4F4;
}
.sp-ct-modal-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sp-ct-modal-icon svg {
  width: 28px;
  height: 28px;
}
.sp-ct-modal-icon[data-color="lima"] { background: rgba(200, 230, 60, 0.18); color: #5A8D14; }
.sp-ct-modal-icon[data-color="azul"] { background: rgba(0, 170, 220, 0.12); color: var(--sp-azul); }
.sp-ct-modal-icon[data-color="rosa"] { background: rgba(236, 72, 153, 0.12); color: #BE185D; }
.sp-ct-modal-icon[data-color="negro"] { background: rgba(43, 44, 46, 0.08); color: var(--sp-negro); }

.sp-ct-modal-title-wrap {
  flex: 1;
  min-width: 0;
}
.sp-ct-modal-eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--sp-gris-600);
  margin-bottom: 4px;
}
.sp-ct-modal-title-wrap h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--sp-negro);
  margin: 0 0 4px 0;
}
.sp-ct-modal-email {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--sp-azul);
  background: #F0FAFF;
  padding: 4px 10px;
  border-radius: 100px;
}

.sp-ct-modal-form {
  padding: 24px 32px 28px;
}
.sp-ct-modal-form .sp-ct-form-field {
  margin-bottom: 16px;
}
.sp-ct-modal-form .sp-ct-form-row-2 {
  margin-bottom: 16px;
}

.sp-ct-modal-success {
  padding: 40px 32px;
  text-align: center;
  display: none;
}
.sp-ct-modal-success.visible {
  display: block;
}
.sp-ct-modal-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--sp-verde);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.sp-ct-modal-success-icon svg {
  width: 32px;
  height: 32px;
  color: var(--sp-negro);
}
.sp-ct-modal-success h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.4px;
  color: var(--sp-negro);
  margin-bottom: 10px;
}
.sp-ct-modal-success p {
  font-size: 14px;
  color: var(--sp-gris-600);
  line-height: 1.55;
  margin: 0 0 22px;
}
.sp-ct-modal-success-close {
  background: transparent;
  color: rgba(43, 44, 46, 0.55);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  transition: color .2s;
  margin-top: 16px;
}
.sp-ct-modal-success-close:hover {
  color: var(--sp-negro);
}

/* Bloqueo del scroll del body cuando modal abierto */
body.sp-ct-modal-open {
  overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
  .sp-ct-modal {
    padding: 12px;
    align-items: flex-start;
    padding-top: 12px;
  }
  .sp-ct-modal-dialog {
    max-height: calc(100vh - 24px);
    border-radius: 16px;
  }
  .sp-ct-modal-header {
    padding: 24px 20px 18px;
  }
  .sp-ct-modal-title-wrap h2 {
    font-size: 20px;
  }
  .sp-ct-modal-form {
    padding: 20px;
  }
  .sp-ct-modal-form .sp-ct-form-row-2 {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PÁGINAS LEGALES · Estilos comunes
   ============================================ */
.sp-section--legal-hero {
  background: linear-gradient(180deg, #FAFFE9 0%, #FFFFFF 100%);
  padding: 60px 24px 50px;
  position: relative;
  overflow: hidden;
}
.sp-section--legal-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 230, 60, 0.15) 0%, transparent 65%);
  pointer-events: none;
}
.sp-legal-hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.sp-legal-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--sp-gris-600);
  margin-bottom: 18px;
}
.sp-legal-breadcrumbs a {
  color: var(--sp-azul);
  text-decoration: none;
  font-weight: 600;
}
.sp-legal-breadcrumbs a:hover {
  text-decoration: underline;
}
.sp-legal-breadcrumbs svg {
  width: 12px;
  height: 12px;
  color: var(--sp-gris-600);
}
.sp-legal-eyebrow {
  display: inline-block;
  background: var(--sp-blanco);
  color: var(--sp-azul);
  border: 1px solid #C8EBF8;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.sp-legal-hero-container h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -1.2px;
  color: var(--sp-negro);
  margin-bottom: 16px;
}
.sp-legal-hero-sub {
  font-size: 16px;
  color: var(--sp-gris-600);
  line-height: 1.55;
  max-width: 720px;
  margin-bottom: 18px;
}
.sp-legal-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--sp-gris-600);
  flex-wrap: wrap;
}
.sp-legal-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sp-legal-meta-item svg {
  width: 14px;
  height: 14px;
  color: #5A8D14;
}

/* Wrapper de contenido legal */
.sp-section--legal-content {
  background: var(--sp-blanco);
  padding: 30px 24px 70px;
}
.sp-legal-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 50px;
  align-items: start;
}

/* Sidebar con índice */
.sp-legal-toc {
  position: sticky;
  top: 100px;
  background: linear-gradient(180deg, #FAFFE9 0%, #FFFFFF 100%);
  border: 1px solid #E5F5C2;
  border-radius: 16px;
  padding: 22px 18px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
}
.sp-legal-toc-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #5A8D14;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E5F5C2;
}
.sp-legal-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc-counter;
}
.sp-legal-toc li {
  counter-increment: toc-counter;
  margin-bottom: 4px;
}
.sp-legal-toc a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.4;
  color: var(--sp-gris-600);
  transition: all .2s;
}
.sp-legal-toc a::before {
  content: counter(toc-counter, decimal-leading-zero);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  color: #C8E63C;
  flex-shrink: 0;
  padding-top: 1px;
}
.sp-legal-toc a:hover {
  background: var(--sp-blanco);
  color: var(--sp-negro);
}
.sp-legal-toc a.active {
  background: var(--sp-blanco);
  color: var(--sp-negro);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Contenido principal */
.sp-legal-body {
  font-family: 'Rubik', sans-serif;
  font-size: 15.5px;
  line-height: 1.7;
  color: #2B2C2E;
  max-width: 760px;
}
.sp-legal-body h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--sp-negro);
  margin: 56px 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--sp-verde);
  scroll-margin-top: 100px;
}
.sp-legal-body h2:first-child {
  margin-top: 0;
}
.sp-legal-body h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--sp-azul);
  margin: 32px 0 14px;
  scroll-margin-top: 100px;
}
.sp-legal-body h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--sp-negro);
  margin: 22px 0 10px;
}
.sp-legal-body p {
  margin-bottom: 14px;
}
.sp-legal-body p strong, .sp-legal-body strong {
  font-weight: 700;
  color: var(--sp-negro);
}
.sp-legal-body a {
  color: var(--sp-azul);
  text-decoration: none;
  font-weight: 600;
  word-break: break-word;
}
.sp-legal-body a:hover {
  text-decoration: underline;
}
.sp-legal-body ul, .sp-legal-body ol {
  margin: 0 0 18px 0;
  padding-left: 24px;
}
.sp-legal-body li {
  margin-bottom: 8px;
  line-height: 1.65;
}
.sp-legal-body ol > li::marker {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--sp-azul);
}
.sp-legal-body code {
  background: #F4F4F4;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: #BE185D;
}

/* Tabla en legal */
.sp-legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
  background: var(--sp-blanco);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #F0F0F0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.sp-legal-body thead {
  background: var(--sp-negro);
}
.sp-legal-body th {
  text-align: left;
  padding: 12px 14px;
  color: var(--sp-blanco);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.sp-legal-body td {
  padding: 12px 14px;
  border-bottom: 1px solid #F4F4F4;
  vertical-align: top;
  line-height: 1.5;
}
.sp-legal-body tbody tr:last-child td {
  border-bottom: none;
}
.sp-legal-body tbody tr:hover {
  background: #FAFBFC;
}

/* Cajas destacadas */
.sp-legal-callout {
  background: linear-gradient(180deg, #FAFFE9 0%, #FFFFFF 100%);
  border: 1px solid #E5F5C2;
  border-left: 4px solid var(--sp-verde);
  border-radius: 10px;
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 15px;
  line-height: 1.6;
}
.sp-legal-callout strong {
  color: #5A8D14;
}
.sp-legal-callout-warn {
  background: linear-gradient(180deg, #FFF5F8 0%, #FFFFFF 100%);
  border: 1px solid #FFD1DD;
  border-left: 4px solid #BE185D;
  border-radius: 10px;
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 15px;
  line-height: 1.6;
}
.sp-legal-callout-warn strong {
  color: #BE185D;
}
.sp-legal-callout-info {
  background: linear-gradient(180deg, #F0FAFF 0%, #FFFFFF 100%);
  border: 1px solid #C8EBF8;
  border-left: 4px solid var(--sp-azul);
  border-radius: 10px;
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 15px;
  line-height: 1.6;
}
.sp-legal-callout-info strong {
  color: var(--sp-azul);
}

/* Footer del documento legal */
.sp-legal-footer-note {
  margin-top: 60px;
  padding: 20px 24px;
  background: #FAFBFC;
  border: 1px solid #F0F0F0;
  border-radius: 12px;
  font-size: 13px;
  color: var(--sp-gris-600);
  line-height: 1.6;
}
.sp-legal-footer-note strong {
  color: var(--sp-negro);
}

/* Bloque de "Otros documentos legales" al final */
.sp-section--legal-related {
  background: linear-gradient(180deg, #FAFBFC 0%, #FFFFFF 100%);
  padding: 60px 24px;
  border-top: 1px solid #F0F0F0;
}
.sp-legal-related-container {
  max-width: 1100px;
  margin: 0 auto;
}
.sp-legal-related-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.5px;
  color: var(--sp-negro);
  margin-bottom: 28px;
  text-align: center;
}
.sp-legal-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sp-legal-related-card {
  background: var(--sp-blanco);
  border: 1px solid #F0F0F0;
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  transition: all .25s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sp-legal-related-card:hover {
  transform: translateY(-3px);
  border-color: var(--sp-verde);
  box-shadow: 0 12px 28px -10px rgba(200, 230, 60, 0.25);
}
.sp-legal-related-card.active {
  background: linear-gradient(180deg, #FAFFE9 0%, #FFFFFF 100%);
  border-color: var(--sp-verde);
  pointer-events: none;
}
.sp-legal-related-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(200, 230, 60, 0.18);
  color: #5A8D14;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-legal-related-icon svg {
  width: 18px;
  height: 18px;
}
.sp-legal-related-card h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--sp-negro);
  margin: 0;
  line-height: 1.3;
}
.sp-legal-related-card p {
  font-size: 12px;
  color: var(--sp-gris-600);
  line-height: 1.45;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .sp-legal-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .sp-legal-toc {
    position: static;
    max-height: none;
  }
  .sp-legal-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .sp-section--legal-hero { padding: 50px 20px 40px; }
  .sp-legal-hero-container h1 { font-size: 32px; }
  .sp-section--legal-content { padding: 20px 20px 50px; }
  .sp-legal-body { font-size: 15px; }
  .sp-legal-body h2 { font-size: 24px; }
  .sp-legal-related-grid { grid-template-columns: 1fr; }
}

/* ============================================
   COOKIE BANNER · cumplimiento AEPD/RGPD
   ============================================ */

/* Banner inferior fijo */
.sp-cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 9999;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--sp-blanco);
  border: 1px solid #F0F0F0;
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.25);
  display: none;
  animation: spCookieSlideUp .4s cubic-bezier(0.16, 1, 0.3, 1);
}
.sp-cookie-banner.visible {
  display: block;
}
@keyframes spCookieSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.sp-cookie-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.sp-cookie-banner-content {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.sp-cookie-banner-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(200, 230, 60, 0.18);
  color: #5A8D14;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sp-cookie-banner-icon svg {
  width: 22px;
  height: 22px;
}
.sp-cookie-banner-text {
  font-size: 14px;
  color: var(--sp-gris-600);
  line-height: 1.55;
}
.sp-cookie-banner-text strong {
  display: block;
  color: var(--sp-negro);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}
.sp-cookie-banner-text a {
  color: var(--sp-azul);
  text-decoration: none;
  font-weight: 600;
}
.sp-cookie-banner-text a:hover {
  text-decoration: underline;
}

.sp-cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.sp-cookie-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  padding: 11px 20px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.sp-cookie-btn--accept {
  background: linear-gradient(135deg, #C8E63C 0%, #A8C82E 100%);
  color: var(--sp-negro);
}
.sp-cookie-btn--accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -4px rgba(200, 230, 60, 0.5);
}
.sp-cookie-btn--reject {
  background: var(--sp-blanco);
  color: var(--sp-negro);
  border: 1.5px solid var(--sp-negro);
}
.sp-cookie-btn--reject:hover {
  background: var(--sp-negro);
  color: var(--sp-blanco);
}
.sp-cookie-btn--config {
  background: transparent;
  color: var(--sp-gris-600);
  border: 1.5px solid #E5E5E5;
}
.sp-cookie-btn--config:hover {
  border-color: var(--sp-azul);
  color: var(--sp-azul);
}

/* Modal de configuración */
.sp-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}
.sp-cookie-modal.visible {
  display: flex;
}
.sp-cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43, 44, 46, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 0;
  animation: spCtFadeIn .25s ease;
}
.sp-cookie-modal-dialog {
  position: relative;
  z-index: 1;
  background: var(--sp-blanco);
  border-radius: 20px;
  width: 100%;
  max-width: 640px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  box-shadow: 0 30px 60px -16px rgba(0, 0, 0, 0.35);
  animation: spCtSlideUp .3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sp-cookie-modal-header {
  padding: 28px 32px 20px;
  border-bottom: 1px solid #F4F4F4;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.sp-cookie-modal-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.5px;
  color: var(--sp-negro);
  margin: 0 0 6px 0;
}
.sp-cookie-modal-sub {
  font-size: 14px;
  color: var(--sp-gris-600);
  line-height: 1.55;
  margin: 0;
}
.sp-cookie-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sp-blanco);
  border: 1px solid #F0F0F0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sp-gris-600);
  flex-shrink: 0;
  transition: all .2s;
}
.sp-cookie-modal-close:hover {
  background: #FFF5F8;
  border-color: #FFD1DD;
  color: #BE185D;
  transform: rotate(90deg);
}
.sp-cookie-modal-close svg {
  width: 16px;
  height: 16px;
}

.sp-cookie-modal-body {
  padding: 24px 32px;
}

/* Categoría de cookies */
.sp-cookie-cat {
  padding: 18px 0;
  border-bottom: 1px solid #F4F4F4;
}
.sp-cookie-cat:last-child {
  border-bottom: none;
}
.sp-cookie-cat-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 6px;
}
.sp-cookie-cat-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--sp-negro);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sp-cookie-cat-required {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #5A8D14;
  background: rgba(200, 230, 60, 0.2);
  padding: 3px 8px;
  border-radius: 100px;
}
.sp-cookie-cat-desc {
  font-size: 13px;
  color: var(--sp-gris-600);
  line-height: 1.55;
  margin: 0 0 8px 0;
}
.sp-cookie-cat-detail {
  font-size: 12px;
  color: #A8AEB5;
  font-style: italic;
}

/* Switch toggle */
.sp-cookie-switch {
  position: relative;
  width: 44px;
  height: 24px;
  background: #E5E5E5;
  border-radius: 100px;
  cursor: pointer;
  transition: background .25s;
  flex-shrink: 0;
  display: inline-block;
}
.sp-cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.sp-cookie-switch-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: var(--sp-blanco);
  border-radius: 50%;
  transition: transform .25s, background .25s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  pointer-events: none;
}
.sp-cookie-switch input:checked + .sp-cookie-switch-thumb {
  transform: translateX(20px);
}
.sp-cookie-switch:has(input:checked) {
  background: var(--sp-verde);
}
.sp-cookie-switch.checked {
  background: var(--sp-verde);
}
.sp-cookie-switch.checked .sp-cookie-switch-thumb {
  transform: translateX(20px);
}
.sp-cookie-switch.disabled {
  background: #5A8D14;
  opacity: 0.5;
  cursor: not-allowed;
}
.sp-cookie-switch.disabled .sp-cookie-switch-thumb {
  transform: translateX(20px);
}

.sp-cookie-modal-footer {
  padding: 20px 32px 28px;
  border-top: 1px solid #F4F4F4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.sp-cookie-modal-footer-row {
  grid-column: 1 / -1;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.sp-cookie-modal-footer-link {
  font-size: 12px;
  color: var(--sp-gris-600);
}
.sp-cookie-modal-footer-link a {
  color: var(--sp-azul);
  text-decoration: none;
  font-weight: 600;
}
.sp-cookie-modal-footer-link a:hover {
  text-decoration: underline;
}

/* Body bloqueado cuando modal abierto */
body.sp-cookie-modal-open {
  overflow: hidden;
}

/* Botón flotante "Cookies" en footer (revocación) */
.sp-cookie-revoke {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--sp-gris-600);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sp-cookie-revoke:hover {
  color: var(--sp-azul);
}
.sp-cookie-revoke svg {
  width: 14px;
  height: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .sp-cookie-banner {
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 20px;
  }
  .sp-cookie-banner-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .sp-cookie-banner-actions {
    flex-direction: column;
    width: 100%;
  }
  .sp-cookie-btn {
    width: 100%;
    text-align: center;
  }
  .sp-cookie-modal-header { padding: 22px 22px 16px; }
  .sp-cookie-modal-body { padding: 20px 22px; }
  .sp-cookie-modal-footer { padding: 16px 22px 22px; grid-template-columns: 1fr; }
}

/* === Modal contacto: fallback copiar mensaje completo === */
.sp-ct-modal-fallback {
  margin-top: 20px;
  padding: 22px 22px 22px;
  background: rgba(43, 44, 46, 0.04);
  border: 1px solid rgba(43, 44, 46, 0.10);
  border-radius: 12px;
  text-align: center;
}
.sp-ct-modal-fallback-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--sp-negro);
  margin: 0 0 14px 0;
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.2px;
}
.sp-ct-modal-fallback-text {
  font-size: 13px;
  color: rgba(43, 44, 46, 0.75);
  margin: 0 0 6px 0;
  line-height: 1.45;
  text-align: center;
}
.sp-ct-modal-fallback-titlerow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 12px 0;
  line-height: 1;
}

.sp-ct-modal-fallback-icon {
  color: #00AADC;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: block;
}

.sp-ct-modal-fallback-copyall {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  margin: 0 auto;
  background: var(--sp-verde);
  color: var(--sp-negro);
  border: none;
  padding: 11px 22px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(200, 230, 60, 0.3);
  transition: all 0.15s ease;
}

.sp-ct-modal-fallback-copyall:hover {
  background: #b8d930;
  box-shadow: 0 3px 10px rgba(200, 230, 60, 0.45);
  transform: translateY(-1px);
}

.sp-ct-modal-fallback-copyall svg {
  width: 15px;
  height: 15px;
  stroke: var(--sp-negro);
}

.sp-ct-modal-fallback-copyall.copied {
  background: var(--sp-negro);
  color: var(--sp-verde);
  box-shadow: 0 2px 8px rgba(43, 44, 46, 0.3);
}

.sp-ct-modal-fallback-copyall.copied svg {
  stroke: var(--sp-verde);
}
.sp-ct-modal-fallback-hint {
  font-size: 12px;
  color: rgba(43, 44, 46, 0.60);
  margin: 0 0 20px 0;
  line-height: 1.45;
  text-align: center;
}
