body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: #fff;
}

header {
  background: white;
  padding: 40px 180px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px; /* más aire a los costados */
  box-sizing: border-box;
}

.text-column {
  flex: 1 1 60%;
  min-width: 300px;
}

.image-column {
  flex: 0 0 320px;
  text-align: right;
}

.header-image {
  width: 320px;
  max-width: 100%;
  height: auto;
}

h1 {
  font-size: 60px;
  margin: 0;
  color: #4c32ff;
}

h1 span {
  color: #f59c00;
}

header p {
  font-weight: 600;
}

ul {
  list-style: none;
  padding: 0;
}

ul li::before {
  content: '› ';
  color: #4c32ff;
}

.cta-button {
  background: #f57441;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 15px;
}

.wave {
  width: 100%;
  height: 100px;
}

.section-gradient {
  background: linear-gradient(90deg, #7f3dd0, #fd7e14);
  color: white;
  padding: 60px 20px;
}

.modules {
  max-width: 1100px;
  margin: auto;
}

.module-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 20px;
}

.module-number {
  font-size: 32px;
  font-weight: bold;
  min-width: 50px;
}

.benefits-section {
  background: white;
  padding: 60px 20px;
  text-align: center;
}

.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr 320px; /* 2 columnas flexibles + 1 fija */
  grid-template-rows: auto auto;
  gap: 30px;
  max-width: 1000px;
  margin: auto;
  text-align: left;
}

.benefit1 {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.benefit3 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.benefit2 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.benefit4 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.image-column {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
  text-align: right;
}


.benefits h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.extras {
  background: linear-gradient(90deg, #fd7e14, #7f3dd0);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.extras ul {
  list-style: none;
  max-width: 800px;
  margin: auto;
  padding: 0;
}

.extras li {
  margin: 10px 0;
  padding-left: 30px;
  position: relative;
  font-size: 20px;   /* Aumenta el tamaño */
  font-weight: 600;  /* Negrita */
}

.extras li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: white;
}

.illustration {
  display: block;
  max-width: 300px;
  margin: 40px auto 0;
}

.form-section {
  background: white;
  padding: 60px 20px;
  text-align: center;
}

form {
  max-width: 600px;
  margin: auto;
  display: grid;
  gap: 15px;
}

input, textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

button {
  background: #4c32ff;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 20px;
  background: #f1f1f1;
  font-size: 14px;
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }

  .image-column {
    text-align: center;
    margin-top: 20px;
  }

  .header-image {
    width: 250px;
  }
}
