  .features-section {
    background: #f9fafb;
    padding: 80px 0;
  }
  .dark .features-section {
    background: #1f2937;
  }
  .feature-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  .section-badge {
    display: inline-block;
    background: #ffefe6;
    color: #ff6b35;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
  }
  .dark .section-badge {
    background: #993d1a;
    color: #ffb59e;
  }
  .section-title {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
  }
  .dark .section-title {
    color: #f9fafb;
  }
  .section-description {
    font-size: 18px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }
  .dark .section-description {
    color: #d1d5db;
  }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
  }
  .feature-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
  }
  .dark .feature-card {
    background: #374151;
    border-color: #4b5563;
  }
  .feature-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #ff6b35;
  }
  .feature-icon {
    width: 60px;
    height: 60px;
    background: #ffefe6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ff6b35;
    font-size: 24px;
  }
  .dark .feature-icon {
    background: #993d1a;
    color: #ffb59e;
  }
  .feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    text-align: center;
  }
  .dark .feature-title {
    color: #f9fafb;
  }
  .feature-text {
    color: #6b7280;
    line-height: 1.6;
    text-align: center;
  }
  .dark .feature-text {
    color: #d1d5db;
  }

  .modules-section {
    background: #ffffff;
    padding: 80px 0;
  }
  .dark .modules-section {
    background: #111827;
  }
  .modules-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .modules-header {
    text-align: center;
    margin-bottom: 60px;
  }
  .modules-badge {
    display: inline-block;
    background: #ffefe6;
    color: #ff6b35;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
  }
  .dark .modules-badge {
    background: #993d1a;
    color: #ffb59e;
  }
  .modules-title {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
  }
  .dark .modules-title {
    color: #f9fafb;
  }
  .modules-description {
    font-size: 18px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }
  .dark .modules-description {
    color: #d1d5db;
  }
  .modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 25px;
  }
  .module-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: flex-start;
  }
  .dark .module-card {
    background: #1f2937;
    border-color: #374151;
  }
  .module-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #ff6b35;
  }
  .module-icon {
    width: 50px;
    height: 50px;
    background: #ffefe6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #ff6b35;
    font-size: 20px;
    flex-shrink: 0;
  }
  .dark .module-icon {
    background: #993d1a;
    color: #ffb59e;
  }
  .module-content {
    flex-grow: 1;
  }
  .module-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
  }
  .dark .module-title {
    color: #f9fafb;
  }
  .module-text {
    color: #6b7280;
    line-height: 1.6;
  }
  .dark .module-text {
    color: #d1d5db;
  }
  @media (max-width: 640px) {
    .modules-grid {
      grid-template-columns: 1fr;
    }
    .module-card {
      flex-direction: column;
    }
    .module-icon {
      margin-right: 0;
      margin-bottom: 15px;
    }
  }

    .planes-section {
    background: #f9fafb;
    padding: 4rem 1rem;
    font-family: 'Segoe UI', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6b35;
}

.section-header p {
    color: #6b7280;
    font-size: 1.1rem;
}

.planes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.plan-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-top: 5px solid #ddd;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* position: relative; <-- eliminamos esta línea */
}

.plan-card.profesional {
    border-top-color: #ff6b35; /* naranja */
}


.plan-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.plan-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.plan-card .descripcion {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.plan-card .precio {
    font-size: 2.5rem;
    color: #ff6b35;
    font-weight: bold;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0.4rem;
}

.plan-card .precio small {
    font-size: 1rem;
    color: #9ca3af;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.plan-card ul li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #374151;
    display: flex;
    align-items: center;
}

.plan-card ul li i {
    color: #10b981;
    margin-right: 0.5rem;
}

.boton-contratar {
    display: inline-block;
    background-color: #ff6b35; 
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.boton-contratar:hover {
    background-color: #e55a27;
}

.badge-popular {
    background-color: #ff6b35;
    color: #1f2937;
    font-weight: bold;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    position: absolute;
    top: -12px;
    right: -12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}