/* Agrega aquí el CSS final extraído de cada sección */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  color: #111827;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo {
  font-size: 1.2rem;
  font-weight: bold;
  color: #111827;
}

nav a {
  margin: 0 1rem;
  color: #374151;
  text-decoration: none;
  font-weight: 500;
}

.cta-btn {
  background-color: #ea580c;
  color: #fff;
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
}

.cta-btn.blanco {
  background: white;
  color: #ea580c;
  border: 1px solid #ea580c;
}

.hero {
  display: flex;
  justify-content: space-between;
  padding: 3rem 2rem;
  background: linear-gradient(to right, #fff7ed, #fefce8);
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

.hero-text .highlight {
  color: #ea580c;
}

.badge {
  display: inline-block;
  background: #f97316;
  color: white;
  padding: 0.25rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.image-placeholder {
  width: 40%;
  height: 280px;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #9ca3af;
  border-radius: 8px;
}

.courses-intro, .beneficios-header, .testimonios, .cta-final {
  text-align: center;
  padding: 2rem 1rem;
}

.cursos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.curso-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.curso-card.destacado {
  border: 2px solid #f97316;
}

.etiqueta {
  background: #fde68a;
  color: #92400e;
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.precio {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 1rem 0;
}

.beneficios-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}

.beneficio {
  text-align: center;
  max-width: 220px;
}

.icono {
  font-size: 2rem;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.testimonio {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.autor {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}

.avatar {
  width: 40px;
  height: 40px;
  background: #d1d5db;
  border-radius: 50%;
  margin-right: 0.75rem;
}

.cta-final {
  background: #ea580c;
  color: white;
  padding: 3rem 1rem;
}

.cta-final form {
  margin-top: 1.5rem;
}

.cta-final input[type="email"] {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: none;
  margin-right: 0.5rem;
}

.footer {
  background: #111827;
  color: white;
  padding: 3rem 2rem 2rem;
}

.footer-contenido {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer h3,
.footer h4 {
  margin-bottom: 1rem;
  color: white;
}

.footer-col ul {
  list-style: none;
  padding-left: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-col .contacto li {
  color: #d1d5db;
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid #374151;
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  color: #9ca3af;
  font-size: 0.9rem;
}

.icono-footer {
  color: #f97316;
  margin-right: 0.5rem;
}

.img-principal {
  width: 100%;
  margin: 2%;
  padding: auto;
  border-radius: 15px;
}