* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Navegación */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ff6b35;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  padding: 18px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.cta-button:hover {
  background: linear-gradient(135deg, #c0392b, #a93226);
}

/* Sections */
.section {
  padding: 100px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.benefit-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.benefit-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.benefit-card p {
  color: #666;
  line-height: 1.6;
}

/* Curriculum */
.curriculum {
  background: linear-gradient(135deg, #fdf2e9 0%, #fdebd0 100%);
}

.curriculum-content {
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.curriculum-list {
  list-style: none;
  margin-top: 30px;
}

.curriculum-list li {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 40px;
}

.curriculum-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Personal Story */
.personal-story {
  background: linear-gradient(135deg, #fdf2e9 0%, #fdebd0 100%);
}

.story-text h3 {
  font-size: 2rem;
  color: #ff6b35;
  margin-bottom: 20px;
}

.story-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* Pricing */
.pricing {
    background-color: white;
}

.pricing-card {
  max-width: 500px;
  margin: 0 auto;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  padding: 50px;
  border-radius: 20px;
  text-align: center;
}

.price-amount {
  font-size: 4rem;
  font-weight: bold;
  margin: 20px 0;
}

.price-currency {
  font-size: 1.5rem;
  vertical-align: top;
}

.price-features {
  list-style: none;
  margin: 30px 0;
}

.price-features li {
  padding: 10px 0;
  font-size: 1.1rem;
}

/* Form - Usando el estilo original */
.registro {
  padding: 100px 0;
}

.registro h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-inscripcion {
  background-color: white;
  max-width: 600px;
  margin: 0 auto;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-grupo {
  margin-bottom: 25px;
}

.form-grupo label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-grupo input,
.form-grupo select {
  width: 100%;
  padding: 15px;
  border: 2px solid #eee;
  border-radius: 10px;
  font-size: 1rem;
}

.form-grupo input:focus,
.form-grupo select:focus {
  outline: none;
  border-color: #ff6b35;
}

.cta-enviar {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  border: none;
  padding: 18px 20px;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  font-size: 1.1rem;
  font-weight: bold;
}

.cta-enviar:hover {
  background: linear-gradient(135deg, #e55a2b, #e6851a);
}

/* Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 40px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .curriculum-content {
    padding: 30px;
  }

  .pricing-card {
    padding: 30px;
  }

  .form-inscripcion {
    padding: 30px;
  }
}
