/* RESET Y VARIABLES */
* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

:root {
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --cyan-600: #0891b2;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --purple-400: #c084fc;
  --purple-500: #a855f7;
  --pink-500: #ec4899;
  --emerald-400: #34d399;
  --amber-500: #f59e0b;
  --orange-500: #f97316;
  --slate-100: #f1f5f9;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-700: #334155;
  --slate-900: #0f172a;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', sans-serif;
  background: linear-gradient(135deg, var(--slate-900), var(--bg-secondary));
  color: var(--slate-100);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

.hidden { 
  display: none !important; 
}

.icon { 
  width: 20px; 
  height: 20px; 
  flex-shrink: 0;
}

/* HEADER */
.header {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(34, 211, 238, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.container { 
  max-width: 1280px; 
  margin: 0 auto; 
  padding: 0 16px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.header-left { 
  display: flex; 
  align-items: center; 
  gap: 12px;
}

.header-right {
  display: flex;
  align-items: center;
}

.plan-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(30, 41, 59, 0.8);
  padding: 6px 12px;
  border-radius: 16px;
  border: 1px solid var(--cyan-500);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.plan-icon {
  font-size: 14px;
}

.plan-text {
  color: var(--cyan-400);
}

.plan-count {
  color: var(--slate-400);
  font-size: 11px;
}

.logo-box {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-500));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(34, 211, 238, 0.3);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.logo-box:hover {
  transform: rotate(5deg) scale(1.05);
}

.logo-icon { 
  width: 24px;
  height: 24px; 
  stroke: white; 
}

.main-title {
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(to right, var(--cyan-400), var(--blue-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2px;
  line-height: 1.2;
}

.subtitle { 
  font-size: 11px;
  color: var(--slate-400); 
  font-weight: 400;
  line-height: 1.2;
}

/* MAIN CONTENT */
.main-content { 
  padding: 20px 16px;
}

.card {
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 20px;
  transition: border-color 0.3s ease;
}

.card:hover {
  border-color: rgba(34, 211, 238, 0.3);
}

/* INTRO CARD */
.intro-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(34, 211, 238, 0.3);
  margin-bottom: 20px;
}

.intro-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--cyan-400);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}

.intro-title .icon {
  width: 24px;
  height: 24px;
}

.intro-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--slate-300);
  margin-bottom: 16px;
}

.intro-text strong {
  color: var(--cyan-400);
  font-weight: 600;
}

.intro-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 16px;
}

.feature-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: rgba(15, 23, 42, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(51, 65, 85, 0.5);
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: rgba(34, 211, 238, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(34, 211, 238, 0.15);
}

.feature-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  stroke: var(--cyan-400);
}

.feature-item strong {
  display: block;
  color: var(--cyan-400);
  font-size: 14px;
  margin-bottom: 4px;
  line-height: 1.3;
}

.feature-item p {
  font-size: 13px;
  color: var(--slate-400);
  line-height: 1.4;
  margin: 0;
}

/* CONTROLS */
.controls-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.label { 
  display: block; 
  font-size: 13px;
  font-weight: 500; 
  color: var(--slate-300); 
  margin-bottom: 8px; 
}

.btn {
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-family: inherit;
  min-height: 44px;
}

.btn:disabled { 
  opacity: 0.4; 
  cursor: not-allowed; 
  transform: none !important;
}

.btn-primary {
  width: 100%;
  background: linear-gradient(to right, var(--cyan-500), var(--blue-500));
  color: white;
  box-shadow: 0 4px 6px rgba(6, 182, 212, 0.2);
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.4);
}

.btn-primary:active:not(:disabled) {
  transform: translateY(0px);
}

.file-name { 
  margin-top: 8px; 
  font-size: 13px;
  color: var(--cyan-400); 
  font-weight: 500;
  word-break: break-all;
}

.file-help { 
  font-size: 11px;
  color: var(--slate-500); 
  margin-top: 4px; 
  line-height: 1.4;
}

.select-format {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  background: rgba(51, 65, 85, 0.5);
  border: 1px solid var(--slate-700);
  color: var(--slate-100);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  min-height: 44px;
}

.select-format:hover {
  border-color: var(--cyan-500);
  background: rgba(51, 65, 85, 0.7);
}

.select-format:focus {
  outline: none;
  border-color: var(--cyan-400);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
}

.premium-option {
  background: rgba(192, 132, 252, 0.1);
  color: var(--purple-400);
  font-weight: 600;
}

.action-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.btn-success { 
  background: linear-gradient(to right, #10b981, #14b8a6); 
  color: white; 
  box-shadow: 0 4px 6px rgba(16, 185, 129, 0.2);
}

.btn-success:hover:not(:disabled) { 
  transform: translateY(-2px); 
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4); 
}

.btn-secondary { 
  background: var(--slate-700); 
  color: white; 
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover:not(:disabled) { 
  background: #475569; 
  transform: translateY(-2px); 
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* OUTPUT & STATUS */
.section-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--cyan-400);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.3;
}

.output-card { 
  background: rgba(15, 23, 42, 0.8); 
}

.output-text {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 8px;
  padding: 12px;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: var(--emerald-400);
  overflow-x: auto;
  white-space: pre-wrap;
  max-height: 250px;
  overflow-y: auto;
  line-height: 1.4;
}

.output-text::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.output-text::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.output-text::-webkit-scrollbar-thumb {
  background: var(--cyan-600);
  border-radius: 3px;
}

.output-text::-webkit-scrollbar-thumb:hover {
  background: var(--cyan-500);
}

.viewer-card {
  border: 1px solid rgba(192, 132, 252, 0.5);
  background: rgba(30, 41, 59, 0.6);
}

#quantum-status {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.8));
  min-height: 120px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
}

.status-message {
  font-size: 15px;
  font-weight: 600;
  color: var(--purple-400);
  text-align: center;
  line-height: 1.3;
}

.status-detail {
  font-size: 12px;
  color: var(--slate-400);
  min-height: 16px;
  text-align: center;
  line-height: 1.3;
}

.progress-bar-container {
  width: 90%;
  max-width: 400px;
  height: 10px;
  background-color: var(--slate-700);
  border-radius: 5px;
  overflow: hidden;
  margin: 8px 0;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--purple-400), var(--pink-500));
  transition: width 0.3s ease-in-out;
  box-shadow: 0 0 10px rgba(192, 132, 252, 0.5);
}

/* MODAL */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
  padding: 16px;
}

.modal-content {
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
  border: 2px solid var(--cyan-500);
  border-radius: 16px;
  padding: 24px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(34, 211, 238, 0.3);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 24px;
  color: var(--slate-400);
  cursor: pointer;
  transition: color 0.3s;
  padding: 4px;
  line-height: 1;
  min-width: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: var(--cyan-400);
}

.modal-content h2 {
  color: var(--cyan-400);
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.3;
  padding-right: 30px;
}

.modal-content p {
  color: var(--slate-300);
  margin-bottom: 10px;
  line-height: 1.5;
  font-size: 14px;
}

.modal-content ul {
  list-style: none;
  margin: 12px 0;
  padding: 0;
}

.modal-content ul li {
  padding: 6px 0;
  color: var(--slate-300);
  font-size: 13px;
  line-height: 1.4;
}

/* ESTILOS DE PASARELA DE PAGO */
.payment-modal-content {
  max-width: 600px;
}

.payment-header {
  text-align: center;
  margin-bottom: 24px;
  padding-right: 30px;
}

.payment-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  stroke: var(--cyan-400);
  stroke-width: 2;
}

.payment-subtitle {
  color: var(--slate-400);
  font-size: 14px;
  margin-top: 8px;
}

.payment-plan-summary {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--purple-400);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}

.plan-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.premium-badge {
  background: linear-gradient(to right, var(--purple-500), var(--pink-500));
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.plan-price-large {
  font-size: 32px;
  font-weight: 700;
  color: var(--slate-100);
}

.plan-price-large .period {
  font-size: 14px;
  color: var(--slate-400);
  font-weight: 400;
}

.plan-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-benefits-list li {
  padding: 8px 0;
  color: var(--slate-300);
  font-size: 13px;
  border-bottom: 1px solid rgba(51, 65, 85, 0.3);
}

.plan-benefits-list li:last-child {
  border-bottom: none;
}

.payment-methods h3 {
  color: var(--cyan-400);
  font-size: 16px;
  margin-bottom: 12px;
}

.payment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.payment-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: rgba(51, 65, 85, 0.3);
  border: 2px solid var(--slate-700);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-option:hover {
  border-color: var(--cyan-500);
  background: rgba(51, 65, 85, 0.5);
}

.payment-option.selected {
  border-color: var(--cyan-400);
  background: rgba(34, 211, 238, 0.1);
}

.payment-option svg {
  width: 40px;
  height: 40px;
  stroke: var(--cyan-400);
  stroke-width: 2;
}

.payment-option span {
  font-size: 12px;
  color: var(--slate-300);
  text-align: center;
  font-weight: 500;
}

.payment-form {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-300);
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  background: rgba(51, 65, 85, 0.5);
  border: 1px solid var(--slate-700);
  color: var(--slate-100);
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--cyan-400);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.payment-security {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 8px;
  margin-bottom: 20px;
}

.payment-security svg {
  width: 20px;
  height: 20px;
  stroke: #10b981;
  flex-shrink: 0;
}

.payment-security span {
  font-size: 12px;
  color: var(--slate-300);
}

.btn-payment {
  width: 100%;
  background: linear-gradient(to right, var(--cyan-500), var(--blue-500));
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  min-height: 48px;
}

.btn-payment:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.4);
}

.payment-terms {
  text-align: center;
  font-size: 11px;
  color: var(--slate-500);
  margin-top: 16px;
  line-height: 1.5;
}

.payment-terms a {
  color: var(--cyan-400);
  text-decoration: none;
}

.payment-terms a:hover {
  text-decoration: underline;
}

/* Responsive móvil para pasarela */
@media (max-width: 768px) {
  .payment-options {
    grid-template-columns: 1fr;
  }
  
  .payment-option svg {
    width: 32px;
    height: 32px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .plan-price-large {
    font-size: 28px;
  }
}



.btn-premium {
  width: 100%;
  background: linear-gradient(to right, var(--purple-500), var(--pink-500));
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 12px;
  transition: all 0.3s ease;
  min-height: 44px;
  font-size: 14px;
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 132, 252, 0.4);
}


/* WF ANNOUNCEMENT */
.wf-announcement {
  background: linear-gradient(135deg, rgba(192, 132, 252, 0.1), rgba(34, 211, 238, 0.1));
  border: 2px solid var(--purple-400);
  margin-top: 40px;
}

.wf-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--purple-400);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
  flex-wrap: wrap;
}

.wf-title .icon {
  width: 24px;
  height: 24px;
}

.wf-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--slate-300);
  margin-bottom: 16px;
}

.wf-description code {
  background: rgba(192, 132, 252, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--purple-400);
  font-family: 'Courier New', monospace;
  font-size: 13px;
}

.wf-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 16px 0;
}

.wf-feature {
  background: rgba(15, 23, 42, 0.5);
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(192, 132, 252, 0.3);
}

.wf-feature strong {
  display: block;
  color: var(--purple-400);
  font-size: 14px;
  margin-bottom: 6px;
  line-height: 1.3;
}

.wf-feature p {
  font-size: 12px;
  color: var(--slate-400);
  line-height: 1.4;
  margin: 0;
}

.wf-contact {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(192, 132, 252, 0.3);
  text-align: center;
  font-size: 13px;
  color: var(--slate-300);
  line-height: 1.5;
}

.wf-contact a {
  color: var(--cyan-400);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
  word-break: break-all;
}

.wf-contact a:hover {
  color: var(--cyan-300);
  text-decoration: underline;
}

/* FOOTER */
.footer {
  border-top: 1px solid rgba(51, 65, 85, 0.5);
  background: rgba(15, 23, 42, 0.8);
  margin-top: 40px;
  padding: 24px 0;
}

.footer-content { 
  text-align: center; 
  font-size: 12px;
  color: var(--slate-400); 
  line-height: 1.5;
  padding: 0 16px;
}

.footer-powered { 
  margin-top: 6px; 
  color: var(--slate-500);
  font-size: 11px;
}

/* RESPONSIVE ESPECÍFICO PARA TABLETS */
@media (min-width: 600px) and (max-width: 1024px) {
  .intro-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .wf-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .controls-grid {
    grid-template-columns: 1fr;
  }

  .action-buttons {
    grid-template-columns: repeat(2, 1fr);
  }

  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-title {
    font-size: 22px;
  }

  .logo-box {
    width: 44px;
    height: 44px;
  }

  .logo-icon {
    width: 26px;
    height: 26px;
  }
}

/* RESPONSIVE PARA DESKTOP */
@media (min-width: 1025px) {
  .intro-features {
    grid-template-columns: repeat(3, 1fr);
  }

  .wf-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .controls-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .action-buttons {
    grid-template-columns: repeat(2, 1fr);
  }

  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-title {
    font-size: 24px;
  }

  .logo-box {
    width: 48px;
    height: 48px;
  }

  .logo-icon {
    width: 28px;
    height: 28px;
  }

  .container {
    padding: 0 24px;
  }

  .main-content {
    padding: 32px 24px;
  }

  .card {
    padding: 24px;
    margin-bottom: 32px;
  }

  .intro-title {
    font-size: 24px;
  }

  .intro-text {
    font-size: 16px;
  }

  .feature-icon {
    width: 32px;
    height: 32px;
  }

  .feature-item strong {
    font-size: 16px;
  }

  .feature-item p {
    font-size: 14px;
  }

  .section-title {
    font-size: 18px;
  }

  .output-text {
    padding: 16px;
    font-size: 13px;
    max-height: 300px;
  }

  .output-text::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }

  #quantum-status {
    min-height: 150px;
    padding: 20px;
  }

  .status-message {
    font-size: 18px;
  }

  .status-detail {
    font-size: 14px;
  }

  .progress-bar-container {
    width: 80%;
    max-width: 500px;
    height: 12px;
  }

  .modal-content {
    padding: 32px;
  }

  .modal-close {
    font-size: 28px;
    top: 16px;
    right: 16px;
  }

  .modal-content h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .modal-content p {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .modal-content ul li {
    font-size: 14px;
    padding: 8px 0;
  }

  .btn-premium {
    padding: 14px;
    margin-top: 16px;
    font-size: 16px;
  }

  .plans-title {
    font-size: 32px;
    margin-bottom: 48px;
  }

  .plan-card {
    padding: 32px;
  }

  .plan-card:hover {
    transform: translateY(-8px);
  }

  .plan-badge-premium {
    top: -12px;
    right: 24px;
    padding: 6px 16px;
    font-size: 12px;
  }

  .plan-header h3 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .price {
    font-size: 48px;
  }

  .period {
    font-size: 16px;
  }

  .plan-features {
    margin-bottom: 24px;
  }

  .plan-features li {
    font-size: 14px;
    padding: 12px 0;
  }

  .btn-plan-premium {
    padding: 14px;
    font-size: 16px;
  }

  .wf-title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .wf-description {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .wf-features {
    gap: 16px;
    margin:24px 0;
}
.wf-feature {
padding: 16px;
}
.wf-feature strong {
font-size: 16px;
margin-bottom: 8px;
}
.wf-feature p {
font-size: 14px;
}
.wf-contact {
font-size: 14px;
margin-top: 24px;
padding-top: 24px;
}
.footer {
margin-top: 64px;
padding: 32px 0;
}
.footer-content {
font-size: 14px;
}
.footer-powered {
margin-top: 8px;
}
}
/* MEJORAS TÁCTILES PARA MÓVILES */
@media (hover: none) and (pointer: coarse) {
  .btn,
  .select-format,
  .btn-premium,
  .btn-plan-premium,
  .btn-plan-current {
    min-height: 48px;
  }
  
  .modal-close {
    min-width: 40px;
    min-height: 40px;
  }
}

/* PLANS SECTION - ESTILO MEJORADO */
.plans-section {
  margin: 40px 0;
}

.plans-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(to right, var(--cyan-400), var(--purple-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
  line-height: 1.3;
  padding: 0 16px;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.plan-card {
  background: rgba(30, 41, 59, 0.6);
  border: 2px solid rgba(51, 65, 85, 0.5);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  transition: all 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan-500);
  box-shadow: 0 8px 24px rgba(34, 211, 238, 0.2);
}

.plan-premium {
  border-color: var(--purple-500);
  background: linear-gradient(135deg, rgba(192, 132, 252, 0.1), rgba(236, 72, 153, 0.1));
}

.plan-premium:hover {
  border-color: var(--purple-400);
  box-shadow: 0 8px 24px rgba(192, 132, 252, 0.3);
}

.plan-badge-premium {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(to right, var(--purple-500), var(--pink-500));
  color: white;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.plan-header h3 {
  font-size: 20px;
  color: var(--cyan-400);
  margin-bottom: 12px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 20px;
}

.price {
  font-size: 40px;
  font-weight: 700;
  color: var(--slate-100);
}

.period {
  font-size: 14px;
  color: var(--slate-400);
}

.plan-features {
  list-style: none;
  margin-bottom: 20px;
}

.plan-features li {
  padding: 10px 0;
  color: var(--slate-300);
  font-size: 13px;
  border-bottom: 1px solid rgba(51, 65, 85, 0.3);
  line-height: 1.4;
}

.plan-features li:last-child {
  border-bottom: none;
}

.btn-plan-current {
  width: 100%;
  background: var(--slate-700);
  color: var(--slate-400);
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: not-allowed;
  min-height: 44px;
  font-size: 14px;
}

.btn-plan-premium {
  width: 100%;
  background: linear-gradient(to right, var(--purple-500), var(--pink-500));
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  min-height: 44px;
}

.btn-plan-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 132, 252, 0.4);
}

/* Responsive para tablets */
@media (min-width: 600px) and (max-width: 1024px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive para desktop */
@media (min-width: 1025px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plans-title {
    font-size: 32px;
    margin-bottom: 48px;
  }

  .plan-card {
    padding: 32px;
  }

  .plan-card:hover {
    transform: translateY(-8px);
  }

  .plan-badge-premium {
    top: -12px;
    right: 24px;
    padding: 6px 16px;
    font-size: 12px;
  }

  .plan-header h3 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .price {
    font-size: 48px;
  }

  .period {
    font-size: 16px;
  }

  .plan-features {
    margin-bottom: 24px;
  }

  .plan-features li {
    font-size: 14px;
    padding: 12px 0;
  }

  .btn-plan-premium {
    padding: 14px;
    font-size: 16px;
  }

/* ESTILOS PARA MODAL DE AUTENTICACIÓN CON PMS */
.auth-modal-content {
  max-width: 500px;
}

.auth-header {
  text-align: center;
  margin-bottom: 24px;
}

.auth-header .logo-box {
  margin: 0 auto 16px;
}

.auth-header h2 {
  color: var(--cyan-400);
  font-size: 24px;
  margin-bottom: 8px;
}

.auth-header p {
  color: var(--slate-400);
  font-size: 14px;
}

.auth-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--slate-700);
}

.auth-tab {
  flex: 1;
  padding: 12px 20px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--slate-400);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: -2px;
  font-family: inherit;
}

.auth-tab.active {
  color: var(--cyan-400);
  border-bottom-color: var(--cyan-400);
}

.auth-pms-container {
  display: none;
}

.auth-pms-container.active {
  display: block;
}

.pms-shortcode-wrapper {
  padding: 0;
}

/* Estilos para los formularios de PMS */
.auth-pms-container .pms-form {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

.auth-pms-container input[type="text"],
.auth-pms-container input[type="email"],
.auth-pms-container input[type="password"] {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  background: rgba(51, 65, 85, 0.5);
  border: 1px solid var(--slate-700);
  color: var(--slate-100);
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
  margin-bottom: 12px;
}

.auth-pms-container input:focus {
  outline: none;
  border-color: var(--cyan-400);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
}

.auth-pms-container input[type="submit"],
.auth-pms-container button[type="submit"] {
  width: 100%;
  background: linear-gradient(to right, var(--cyan-500), var(--blue-500));
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
  margin-top: 8px;
  font-family: inherit;
}

.auth-pms-container input[type="submit"]:hover,
.auth-pms-container button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.4);
}

.auth-footer {
  margin-top: 20px;
  text-align: center;
  font-size: 11px;
  color: var(--slate-500);
  line-height: 1.5;
}

}