/* =========================
   SECCIÓN CURSOS
========================= */
.courses-container {
  max-width: 1000px;
  margin: 50px auto;
  padding: 45px 40px 55px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  position: relative;
}

/* =========================
   TÍTULO
========================= */
.courses-container h2 {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  position: relative;
}

/* Línea decorativa bajo el título */
.courses-container h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #b91c1c;
  margin: 12px auto 0;
  border-radius: 10px;
}

/* =========================
   TEXTOS INTRO
========================= */
.courses-container .intro {
  font-size: 1rem;
  line-height: 1.65;
  color: #374151;
  margin: 14px auto;
  text-align: center;
  max-width: 780px;
}

/* =========================
   BLOQUE BENEFICIOS
========================= */
.benefits {
  background: #f9fafb;
  border-left: 6px solid #b91c1c;
  padding: 30px 30px;
  margin: 35px 0 40px;
  border-radius: 14px;
}

.benefits h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111827;
}

.benefits p {
  margin-bottom: 15px;
  color: #374151;
  font-size: 0.95rem;
}

/* LISTA */
.benefits ul {
  padding-left: 20px;
  margin: 0;
}

.benefits li {
  margin-bottom: 9px;
  font-size: 0.92rem;
  color: #1f2937;
}

/* =========================
   BOTÓN
========================= */
.btn-vermas {
  display: block;
  width: fit-content;
  margin: 10px auto 0;
  padding: 13px 34px;
  background: #b91c1c;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.4px;
  transition: all 0.25s ease;
}

.btn-vermas:hover {
  background: #991b1b;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(185, 28, 28, 0.35);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .courses-container {
    padding: 35px 25px 45px;
  }

  .courses-container h2 {
    font-size: 1.85rem;
  }

  .benefits {
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .courses-container h2 {
    font-size: 1.65rem;
  }

  .btn-vermas {
    width: 100%;
    text-align: center;
  }
}
