    /* Variables de colores EDEN+ */
    :root {
      --eden-primary: #20504c;
      --eden-secondary: #1a423f;
      --eden-accent: #ffcc00;
      --eden-success: #009879;
      --eden-text: #333;
      --eden-light-bg: #f0f2f5;
      --eden-card-bg: #ffffff;
      --eden-border: #e9ecef;
    }
    
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    }
    
    body {
      background-color: var(--eden-light-bg);
      color: var(--eden-text);
      line-height: 1.5;
    }
    
    /* Layout para escritorio */
    .desktop-container {
      display: flex;
      min-height: 100vh;
    }
    
    /* Sidebar para escritorio */
    .desktop-sidebar {
      width: 280px;
      background: linear-gradient(to bottom, var(--eden-primary), var(--eden-secondary));
      color: white;
      padding: 25px 0;
      box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    }
    
    .desktop-logo {
      padding: 0 25px 25px;
      font-size: 28px;
      font-weight: bold;
      display: flex;
      align-items: center;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      margin-bottom: 25px;
    }
    
    .desktop-logo span {
      margin-left: 10px;
    }
    
    .star {
      font-size: 24px;
      margin-left: 5px;
      color: var(--eden-accent);
    }
    
    .desktop-menu {
      list-style: none;
    }
    
    .desktop-menu li {
      margin-bottom: 5px;
    }
    
    .desktop-menu a {
      color: white;
      text-decoration: none;
      display: block;
      padding: 12px 25px;
      transition: all 0.3s;
      font-size: 16px;
    }
    
    .desktop-menu a:hover {
      background-color: rgba(255, 255, 255, 0.1);
    }
    
    /* Contenido principal para escritorio */
    .desktop-main {
      flex: 1;
      padding: 20px;
      display: flex;
      flex-direction: column;
    }
    
    .desktop-header {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      margin-bottom: 30px;
      background-color: var(--eden-card-bg);
      padding: 15px 25px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    
    /* Layout para móvil */
    .mobile-container {
      display: none;
      max-width: 100%;
      margin: 0 auto;
      background: var(--eden-card-bg);
      min-height: 100vh;
      position: relative;
    }
    
    /* Header móvil */
    .mobile-header {
      background: var(--eden-primary);
      color: white;
      padding: 20px;
      text-align: center;
      position: relative;
    }
    
    .mobile-header h1 {
      font-size: 24px;
      font-weight: 600;
      margin: 0;
    }
    
    .mobile-menu-btn {
      position: absolute;
      left: 15px;
      top: 15px;
      color: white;
      font-size: 20px;
      background: none;
      border: none;
      cursor: pointer;
      z-index: 1001;
    }
    
    /* Menú lateral móvil */
    .mobile-sidebar {
      position: fixed;
      top: 0;
      left: -280px;
      width: 280px;
      height: 100%;
      background: linear-gradient(to bottom, var(--eden-primary), var(--eden-secondary));
      color: white;
      padding: 25px 0;
      z-index: 1000;
      transition: left 0.3s ease;
      overflow-y: auto;
    }
    
    .mobile-sidebar.active {
      left: 0;
    }
    
    .mobile-sidebar-logo {
      padding: 0 25px 25px;
      font-size: 28px;
      font-weight: bold;
      display: flex;
      align-items: center;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      margin-bottom: 25px;
    }
    
    .mobile-menu {
      list-style: none;
    }
    
    .mobile-menu li {
      margin-bottom: 5px;
    }
    
    .mobile-menu a {
      color: white;
      text-decoration: none;
      display: block;
      padding: 12px 25px;
      transition: all 0.3s;
      font-size: 16px;
    }
    
    .mobile-menu a:hover {
      background-color: rgba(255, 255, 255, 0.1);
    }
    
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 999;
      display: none;
    }
    
    .overlay.active {
      display: block;
    }
    
    /* Contenido móvil */
    .mobile-content {
      padding: 20px;
    }
    
    /* Estilos comunes */
    .step-header {
      margin-bottom: 20px;
      text-align: center;
    }
    
    .step-header h2 {
      color: #666;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 5px;
    }
    
    .step-header h1 {
      color: var(--eden-primary);
      font-size: 20px;
      font-weight: 600;
      margin: 0;
    }
    
    /* Tarjeta de pago */
    .payment-card {
      background: var(--eden-card-bg);
      border-radius: 8px;
      padding: 25px;
      margin-bottom: 20px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      text-align: center;
      max-width: 400px;
      width: 100%;
      margin: 0 auto;
    }
    
    .payment-icon {
      font-size: 3em;
      color: var(--eden-primary);
      margin-bottom: 15px;
    }
    
    .payment-lead {
      font-size: 0.9em;
      margin-bottom: 1.5em;
      color: #666;
    }
    
    /* Formulario */
    .eden-form {
      text-align: left;
    }
    
    .eden-form label {
      display: block;
      font-weight: 600;
      margin-bottom: 8px;
      color: var(--eden-primary);
    }
    
    .eden-form input {
      width: 100%;
      padding: 12px;
      font-size: 1em;
      border: 1px solid var(--eden-border);
      border-radius: 4px;
      margin-bottom: 20px;
      transition: border-color 0.2s ease;
    }
    
    .eden-form input:focus {
      border-color: var(--eden-primary);
      outline: none;
    }
    
    /* Botones */
    .eden-btn {
      background: var(--eden-primary);
      color: white;
      border: none;
      padding: 14px;
      border-radius: 4px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      width: 100%;
      transition: background 0.2s;
    }
    
    .eden-btn:hover {
      background: var(--eden-secondary);
    }
    
    /* Footer */
    .eden-footer {
      background: var(--eden-card-bg);
      padding: 20px;
      text-align: center;
      margin-top: auto;
    }
    
    .social-links {
      margin-bottom: 15px;
    }
    
    .social-links a {
      margin: 0 8px;
      color: var(--eden-primary);
      font-size: 1.2em;
      transition: color 0.2s;
      text-decoration: none;
    }
    
    .social-links a:hover {
      color: var(--eden-secondary);
    }
    
    .legal-links {
      margin-top: 15px;
      font-size: 0.8em;
      color: #666;
    }
    
    .legal-links a {
      color: var(--eden-primary);
      text-decoration: none;
    }
    
    .legal-links a:hover {
      text-decoration: underline;
    }
    
    /* Loader */
    #loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--eden-card-bg);
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 10000;
    }
    
    .spinner {
      width: 60px;
      height: 60px;
      border: 4px solid var(--eden-primary);
      border-left-color: transparent;
      border-bottom-color: transparent;
      border-radius: 50%;
      animation: spin 0.8s ease-in-out infinite;
    }
    
    @keyframes spin {
      0%   { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    
    #loader p {
      margin-top: 15px;
      color: var(--eden-primary);
      font-size: 1em;
    }
    
    /* Responsive */
    @media (max-width: 992px) {
      .desktop-container {
        display: none;
      }
      
      .mobile-container {
        display: block;
      }
    }
    
    @media (min-width: 993px) {
      .mobile-container {
        display: none;
      }
    }
    
    @media (max-width: 480px) {
      .payment-card {
        padding: 20px;
      }
      
      .mobile-content {
        padding: 15px;
      }
    }