/* 
==================================
VARIABLES Y UTILIDADES GLOBALES
==================================
*/

:root {
  --vo-gradient-primary: linear-gradient(128deg, #180a43 0%, #2f0f5f 44%, #7f1c7d 76%, #cf2b7a 100%);
  --vo-gradient-soft: linear-gradient(120deg, rgba(0, 167, 225, 0.18), rgba(215, 42, 134, 0.2));
  --vo-dark: #121212;
  --vo-darker: #0a0a0a;
  --vo-whatsapp: #25d366;
  --vo-whatsapp-hover: #1da851;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* 
==================================
1. HERO Y CTA FINAL (GRADIENTE)
==================================
*/
.hero-section, .cta-final {
  position: relative;
  isolation: isolate;
  background: var(--vo-gradient-primary);
}

.hero-section::before,
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 20%, rgba(0, 167, 225, 0.22) 0%, transparent 44%),
    radial-gradient(circle at 86% 78%, rgba(255, 107, 171, 0.2) 0%, transparent 46%);
}

.hero-section {
  min-height: auto;
  padding: 2rem 0; /* padding mobile - responsive handled next */
}

.cta-title {
  background: linear-gradient(135deg, #f4f2ff 0%, #d9f3ff 45%, #ffd6e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 8px 24px rgba(20, 8, 55, 0.2);
}

.hero-mockup-container {
  max-width: 350px;
  margin: 0 auto;
  position: relative;
}

.hero-mockup {
  border-radius: 40px;
  border: 8px solid #fff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}

.hero-mockup:hover {
  transform: rotate(0deg) scale(1.02);
}

.floating-qr {
  position: absolute;
  bottom: 20px;
  right: -30px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* 
==================================
2. FONDOS OSCUROS (DEMO, PLANES, INTEGRACIÓN)
==================================
*/
.bg-darker {
  background-color: var(--vo-darker) !important;
}

.pricing-section, .demo-section, .integration-section {
  background-color: var(--vo-dark) !important;
}
.problem-title i {
  font-size: 1.05em;
  vertical-align: text-top;
}

.problem-bullet-icon {
  font-size: 1.05rem;
}

/* 
==================================
2.1 RESPONSIVE MEDIA QUERIES 
==================================
*/
@media (max-width: 768px) {
  /* Hero */
  .hero-section {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .hero-title {
    font-size: 28px !important;
  }
  .hero-subtitle {
    font-size: 16px !important;
    padding: 0 10px;
  }
  .hero-buttons {
    margin-bottom: 40px !important;
  }

  /* Problema */
  .problem-title {
    font-size: 24px;
    padding: 0 15px;
  }
  .problem-bullet {
    font-size: 15px;
    margin: 0 auto;
    max-width: 90%;
  }

  /* Demo */
  .demo-scroll-container {
    overflow-x: auto;
    padding-bottom: 20px;
    /* Hide scrollbar for cleaner look */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
  .demo-scroll-container::-webkit-scrollbar {
    display: none; /* Chrome */
  }
  .demo-row {
    display: flex;
    flex-wrap: nowrap;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  /* CTA */
  .cta-title {
    font-size: 26px;
  }
  
  /* Spacings */
  section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
}

/* 
==================================
3. TARJETAS DE SOLUCIÓN
==================================
*/
.solution-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 
==================================
4. TARJETAS DE DEMO
==================================
*/
.demo-card {
  transition: transform 0.3s ease;
}
.demo-card:hover {
  transform: translateY(-10px);
}

/* 
==================================
5. PLANES (PRICING)
==================================
*/
.pricing-card {
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.recommended {
  transform: scale(1.05);
  z-index: 2;
}

.pricing-card.recommended:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pricing-list li:last-child {
  border-bottom: none;
}

/*
==================================
5.1 PLANES CLAROS (NUEVO BLOQUE)
==================================
*/
.pw-pricing-wrap {
  font-family: 'DM Sans', sans-serif;
  padding: 0 1rem;
  background: transparent;
  max-width: 780px;
  width: 100%;
}

.pw-section-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ca3af;
  text-align: center;
  margin-bottom: 0.5rem;
}

.pw-title {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  color: #f8fafc;
  line-height: 1.15;
  margin-bottom: 0.4rem;
}

.pw-subtitle {
  font-size: 14px;
  color: #9ca3af;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.pw-toggle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.pw-toggle-label {
  font-size: 13px;
  color: #9ca3af;
}

.pw-toggle-label.active {
  color: #f8fafc;
  font-weight: 500;
}

.pw-toggle-wrap {
  position: relative;
  width: 44px;
  height: 24px;
  background: #1f2937;
  border-radius: 12px;
  border: 1px solid #374151;
  cursor: pointer;
  transition: background 0.2s ease;
  padding: 0;
}

.pw-toggle-wrap.on {
  background: #0f6e56;
}

.pw-toggle-knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.pw-toggle-wrap.on .pw-toggle-knob {
  left: 22px;
}

.pw-badge-save {
  background: #e1f5ee;
  color: #0f6e56;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid #5dcaa5;
}

.pw-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
  margin-bottom: 1.5rem;
}

.pw-card {
  background: #111827;
  border: 1px solid #334155;
  border-radius: 16px;
  padding: 1.25rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease;
}

.pw-card.featured {
  border: 2px solid #1d9e75;
}

.pw-plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #1d9e75;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.pw-plan-icon {
  font-size: 22px;
  margin-bottom: 0.6rem;
  line-height: 1;
}

.pw-plan-name {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 2px;
}

.pw-plan-desc {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 0.9rem;
  line-height: 1.4;
}

.pw-price-row {
  margin-bottom: 0.25rem;
}

.pw-price-desde {
  font-size: 11px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pw-price-big {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #f8fafc;
  line-height: 1;
}

.pw-price-sub {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 0.9rem;
}

.pw-divider {
  border: none;
  border-top: 1px solid #334155;
  margin: 0.8rem 0;
}

.pw-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
  margin-bottom: 1rem;
  padding-left: 0;
}

.pw-features li {
  font-size: 12.5px;
  color: #cbd5e1;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.pw-features li .pw-dot {
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  margin-top: 1px;
}

.pw-dot.g { background: #eaf3de; color: #3b6d11; }
.pw-dot.b { background: #e6f1fb; color: #185fa5; }
.pw-dot.a { background: #faeeda; color: #854f0b; }
.pw-dot.p { background: #eeedfe; color: #534ab7; }
.pw-dot.c { background: #faece7; color: #993c1d; }

.pw-btn {
  display: block;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid #334155;
  background: #1f2937;
  color: #f8fafc;
  transition: all 0.15s ease;
  text-align: center;
  text-decoration: none;
}

.pw-btn:hover {
  background: #273449;
  color: #fff;
}

.pw-btn.primary {
  background: #1d9e75;
  color: #fff;
  border-color: #0f6e56;
}

.pw-btn.primary:hover {
  background: #0f6e56;
}

.pw-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pw-btn-secondary {
  background: transparent;
  border-color: #4b5563;
  color: #d1d5db;
  font-size: 12px;
  padding: 8px 10px;
}

.pw-btn-secondary:hover {
  background: #1f2937;
  color: #fff;
}

.pw-note-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 0.5rem;
}

.pw-note {
  font-size: 12px;
  color: #9ca3af;
  background: #111827;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid #334155;
}

.pw-note span {
  font-weight: 500;
  color: #f8fafc;
}

.pw-addon-section {
  margin-top: 1.5rem;
}

.pw-addon-title {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 0.75rem;
  text-align: center;
}

.pw-addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
}

.pw-addon-card {
  background: #111827;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 0.85rem;
  text-align: center;
}

.pw-addon-icon {
  font-size: 18px;
  margin-bottom: 6px;
}

.pw-addon-name {
  font-size: 12px;
  font-weight: 500;
  color: #f8fafc;
  margin-bottom: 3px;
}

.pw-addon-price {
  font-size: 11px;
  color: #9ca3af;
}

@media (max-width: 768px) {
  .pw-title {
    font-size: 24px;
  }

  .pw-subtitle {
    font-size: 13px;
  }

  .pw-grid {
    grid-template-columns: 1fr;
  }
}

/* 
==================================
6. BOTONES WHATSAPP / ESTILOS VERDES
==================================
*/
.btn-success {
  background-color: var(--vo-whatsapp);
  border-color: var(--vo-whatsapp);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.25);
}

.btn-success:hover, .btn-success:focus {
  background-color: var(--vo-whatsapp-hover);
  border-color: var(--vo-whatsapp-hover);
}

.btn-success.w-100 {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*
==================================
7. ANTES VS DESPUES
==================================
*/
.compare-showcase {
  background: #0a0a0a;
  color: #f0f0f0;
}

.compare-header {
  margin-bottom: 2.8rem;
}

.compare-eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.compare-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.9rem, 4.5vw, 3.1rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 0.9rem;
}

.compare-subtitle {
  max-width: 520px;
  margin: 0 auto;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: #9ca3af;
  line-height: 1.55;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}

.compare-card {
  background: #111111;
  border-radius: 20px;
  padding: 2rem 1.7rem;
  position: relative;
  overflow: hidden;
}

.compare-before {
  border: 1px solid rgba(239, 68, 68, 0.28);
}

.compare-before::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(239, 68, 68, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.compare-after {
  border: 1px solid rgba(34, 197, 94, 0.34);
}

.compare-after::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(34, 197, 94, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.compare-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 1.2rem;
}

.compare-label-before {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.24);
}

.compare-label-after {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.24);
}

.compare-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.28;
  margin-bottom: 1.4rem;
}

.compare-before .compare-card-title {
  color: #f87171;
}

.compare-after .compare-card-title {
  color: #22c55e;
}

.compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.compare-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.compare-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 2px;
}

.compare-icon-bad {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #f87171;
}

.compare-icon-good {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.24);
  color: #4ade80;
}

.compare-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  line-height: 1.5;
  color: #9ca3af;
}

.compare-text strong {
  display: block;
  color: #f0f0f0;
  font-weight: 600;
  margin-bottom: 2px;
  font-size: 15px;
}

.compare-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  position: relative;
}

.compare-divider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.17) 20%, rgba(255,255,255,0.17) 80%, transparent);
}

.compare-vs {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #181818;
  border: 1px solid rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: #6b7280;
  letter-spacing: 0.05em;
  z-index: 2;
}

.compare-cta-wrap {
  margin-top: 2.5rem;
}

.compare-cta-btn {
  display: inline-block;
  background: #22c55e;
  color: #04120a;
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 15px 38px;
  border-radius: 999px;
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.compare-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 48px rgba(34, 197, 94, 0.35);
  color: #04120a;
}

.compare-cta-note {
  margin-top: 12px;
  font-size: 13px;
  color: #6b7280;
}
@media (max-width: 900px) {
  .hero-section {
    padding: 1.5rem 0 !important;
  }
  .hero-title {
    font-size: 2rem !important;
  }
  .hero-mockup-container {
    max-width: 250px !important;
    margin-top: 1rem;
  }
  .hero-mockup {
    border: 5px solid #fff;
  }
  .floating-qr {
    right: -10px;
    bottom: 5px;
    transform: scale(0.8);
  }
  .hero-buttons .btn {
    font-size: 1rem;
    padding: 0.8rem;
  }
  .problem-section {
    padding: 2rem 0 !important;
  }
}
@media (max-width: 900px) {
  /* H1 Paginas web */
  .hero-title {
    font-size: 1.5rem !important;
  }
  .hero-subtitle {
    font-size: 0.85rem !important;
  }
  .hero-mockup-container {
    max-width: 180px !important;
  }
  .floating-qr {
    transform: scale(0.65) !important;
    bottom: 0px !important;
    right: -25px !important;
  }
}

@media (max-width: 768px) {
  .compare-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .compare-divider {
    display: none;
  }

  .compare-card {
    padding: 1.3rem 1rem;
    border-radius: 16px;
  }

  .compare-card-title {
    font-size: 1.1rem;
    margin-bottom: 0.95rem;
  }

  .compare-text {
    font-size: 13.6px;
  }

  .compare-text strong {
    font-size: 14px;
  }

  .compare-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .compare-subtitle {
    font-size: 0.93rem;
  }

  .problem-section .row {
    --bs-gutter-x: 0.75rem;
  }

  .problem-bullet {
    font-size: 0.82rem !important;
    line-height: 1.25;
    padding: 0.7rem 0.55rem !important;
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: none;
  }

  .problem-bullet-icon {
    font-size: 0.95rem;
  }

  .solution-section .row {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.75rem;
  }

  .solution-card {
    padding: 0.8rem 0.7rem !important;
    min-height: 120px;
    text-align: center !important;
    display: block !important;
  }

  .solution-card .icon-circle {
    width: 52px;
    height: 52px;
    margin: 0 auto 0.6rem auto !important;
  }

  .solution-card h5 {
    font-size: 0.95rem;
    margin-bottom: 0 !important;
  }

  .how-it-works .row {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.85rem;
  }

  .how-it-works .step-icon {
    width: 52px !important;
    height: 52px !important;
    font-size: 1.25rem !important;
  }

  .how-it-works h5 {
    font-size: 0.95rem;
    line-height: 1.25;
  }
}

/*
==================================
MODAL DETALLE DE PLAN + SUSCRIPCIONES
==================================
*/

/* Overlay */
.pw-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8, 5, 20, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
}

.pw-modal-overlay.active {
  display: flex;
}

/* Box */
.pw-modal-box {
  background: #0d0d1a;
  border: 1px solid rgba(127, 28, 125, 0.35);
  border-radius: 22px;
  padding: 2rem 1.75rem;
  max-width: 640px;
  width: 100%;
  position: relative;
  box-shadow: 0 0 60px rgba(127, 28, 125, 0.18), 0 0 120px rgba(0, 167, 225, 0.08);
  animation: pw-modal-in 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes pw-modal-in {
  from { opacity: 0; transform: scale(0.93) translateY(16px); }
  to   { opacity: 1; transform: scale(1)  translateY(0); }
}

/* Close */
.pw-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #9ca3af;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  font-size: 14px;
}
.pw-modal-close:hover { background: rgba(255,255,255,0.12); color: #f8fafc; }

/* Header */
.pw-modal-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.25rem;
}
.pw-modal-icon { font-size: 32px; line-height: 1; }
.pw-modal-name {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #f8fafc;
  line-height: 1.1;
}
.pw-modal-desc { font-size: 13px; color: #9ca3af; margin-top: 2px; }

/* Price row */
.pw-modal-price-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}
.pw-modal-price-label { font-size: 11px; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.pw-modal-price-big {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(128deg, #00a7e1 0%, #cf2b7a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.pw-modal-price-sub { font-size: 13px; color: #9ca3af; margin-top: 4px; }
.pw-modal-delivery {
  font-size: 12px;
  color: #6b7280;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 6px 10px;
  align-self: center;
}

/* Section title */
.pw-modal-section-title {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

/* Features list override for modal */
.pw-modal-features {
  margin-bottom: 1.5rem !important;
}

/* Suscripciones */
.pw-modal-sub-title {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
}

.pw-modal-sub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-bottom: 1.25rem;
}

.pw-modal-sub-card {
  background: linear-gradient(135deg, rgba(24, 10, 67, 0.6) 0%, rgba(47, 15, 95, 0.5) 100%);
  border: 1px solid rgba(127, 28, 125, 0.4);
  border-radius: 14px;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.pw-modal-sub-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(0, 167, 225, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.pw-modal-sub-name {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #d1d5db;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pw-modal-sub-price {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(90deg, #00a7e1, #cf2b7a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.pw-modal-sub-price span {
  font-size: 13px;
  font-weight: 500;
  color: #9ca3af;
  -webkit-text-fill-color: #9ca3af;
}

.pw-modal-sub-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pw-modal-sub-features li {
  font-size: 12px;
  color: #94a3b8;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.4;
}

.pw-modal-sub-features li i {
  color: #00a7e1;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ¿Qué es la suscripción? */
.pw-modal-what-is-sub {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}

.pw-modal-sub-explain-title {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.pw-modal-what-is-sub p {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 0.85rem;
}

.pw-modal-what-is-sub p strong {
  color: #d1d5db;
  font-weight: 600;
}

.pw-modal-sub-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.pw-modal-sub-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #9ca3af;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 6px 10px;
}

.pw-modal-sub-detail i {
  font-size: 14px;
  background: linear-gradient(90deg, #00a7e1, #cf2b7a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Modal Actions */
.pw-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pw-modal-adquirir {
  background: linear-gradient(128deg, #180a43 0%, #2f0f5f 44%, #7f1c7d 76%, #cf2b7a 100%) !important;
  border-color: transparent !important;
  color: #fff !important;
  font-size: 15px !important;
  padding: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em;
}
.pw-modal-adquirir:hover {
  opacity: 0.9 !important;
}

/* Ver más button */
.pw-btn-ver-mas {
  background: rgba(0, 167, 225, 0.08) !important;
  border-color: rgba(0, 167, 225, 0.3) !important;
  color: #00a7e1 !important;
  font-size: 12px !important;
}
.pw-btn-ver-mas:hover {
  background: rgba(0, 167, 225, 0.15) !important;
  color: #38bdf8 !important;
}

@media (max-width: 768px) {
  .pw-modal-overlay {
    padding: 0.5rem;
  }
  
  .pw-modal-box {
    padding: 1.2rem 1rem;
    border-radius: 16px;
    max-height: 90vh;
    overflow-y: auto;
  }
  
  .pw-modal-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1rem;
  }
  
  .pw-modal-icon {
    font-size: 28px;
    margin-bottom: 0.5rem;
  }
  
  .pw-modal-name {
    font-size: 18px;
  }
  
  .pw-modal-price-big { 
    font-size: 24px; 
  }
  
  .pw-modal-price-row {
    flex-direction: column;
    gap: 8px;
  }
  
  .pw-modal-delivery {
    width: 100%;
  }
  
  .pw-features.pw-modal-features {
    gap: 5px;
    margin-bottom: 1rem;
  }
  
  .pw-features.pw-modal-features li {
    font-size: 12px;
  }
  
  .pw-modal-sub-grid { 
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .pw-modal-sub-card {
    padding: 0.8rem;
  }
  
  .pw-modal-sub-name {
    font-size: 12px;
  }
  
  .pw-modal-sub-price {
    font-size: 20px;
    margin-bottom: 0.5rem;
  }
  
  .pw-modal-sub-details-grid { 
    grid-template-columns: 1fr;
    gap: 6px;
  }
  
  .pw-modal-sub-detail {
    font-size: 11px;
    padding: 5px 8px;
  }
  
  .pw-modal-what-is-sub {
    padding: 0.8rem 1rem;
  }
  
  .pw-modal-what-is-sub p {
    font-size: 12px;
    margin-bottom: 0.6rem;
  }
  
  .pw-modal-actions {
    gap: 6px;
  }
  
  .pw-btn {
    padding: 9px;
    font-size: 12px;
  }
}

/* ============================================================
   SECCIÓN SUSCRIPCIÓN MENSUAL
   ============================================================ */
.sub-section {
  background: linear-gradient(135deg, #0d1117 0%, #161b22 60%, #0d1117 100%);
  color: #fff;
}

/* Alerta hosting */
.sub-hosting-alert {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-left: 4px solid #ef4444;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 36px;
  font-size: 14px;
  line-height: 1.5;
}
.sub-hosting-alert i {
  color: #ef4444;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Header */
.sub-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00a7e1;
  margin-bottom: 10px;
}
.sub-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.sub-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto;
}

/* Tabs selector de plan */
.sub-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}
.sub-tab {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.sub-tab:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.sub-tab.active {
  background: linear-gradient(135deg, #00a7e1, #0063b2);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,167,225,0.35);
}

/* Grid de cards de suscripción */
.sub-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Card individual */
.sub-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.sub-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00a7e1, #0063b2);
  border-radius: 16px 16px 0 0;
}
.sub-card.featured {
  border-color: rgba(0,167,225,0.4);
  background: rgba(0,167,225,0.07);
}
.sub-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,167,225,0.5);
}
.sub-card-badge {
  position: absolute;
  top: 12px; right: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: #00a7e1;
  color: #fff;
  padding: 3px 8px;
  border-radius: 20px;
}
.sub-card-name {
  font-size: 18px;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
}
.sub-card-price {
  font-size: 32px;
  font-weight: 800;
  color: #00a7e1;
  line-height: 1;
}
.sub-card-price span {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}
.sub-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.sub-card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sub-card-features li i {
  color: #1d9e75;
  font-size: 14px;
  flex-shrink: 0;
}
.sub-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #009ee3;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  margin-top: auto;
  width: 100%;
}
.sub-card-btn:hover {
  background: #0077b6;
  color: #fff;
  transform: translateY(-1px);
}
.sub-card-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Nota hosting */
.sub-hosting-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(0,167,225,0.08);
  border: 1px solid rgba(0,167,225,0.2);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  max-width: 700px;
  margin: 0 auto;
}
.sub-hosting-note i { color: #00a7e1; flex-shrink: 0; margin-top: 2px; }

/* Botón CTA en sección de planes */
.pw-suscripcion-cta {
  text-align: center;
  margin-top: 28px;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: 12px;
}
.pw-suscripcion-cta p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}
.pw-btn-sub-link {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1px solid #00a7e1;
  color: #00a7e1;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.pw-btn-sub-link:hover {
  background: #00a7e1;
  color: #fff;
}

@media (max-width: 768px) {
  .sub-tabs { gap: 6px; }
  .sub-tab { font-size: 12px; padding: 6px 13px; }
  .sub-cards-grid { grid-template-columns: 1fr; }
  .sub-card-price { font-size: 26px; }
  .sub-hosting-alert { font-size: 13px; }
}
