/* ==================================================
   VARIABLES
================================================== */
:root {
  --primary: #6b4ca3;
  --secondary: #b79ce6;

  --bg-soft: #faf6ff;

  --text-dark: #3f2f57;
  --text-soft: #5f4d7a;
}


/* ==================================================
   RESET
================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* ==================================================
   BASE
================================================== */
body {
  font-family: 'Montserrat', sans-serif;
  background: radial-gradient(circle at top, #f3e8ff, #ffffff 70%);
  color: var(--text-dark);
  padding-top: 80px; /* topbar fija */
}


/* ==================================================
   HERO
================================================== */
.hero {
  padding: 110px 20px 80px;
  text-align: center;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.subtitle {
  max-width: 720px;
  margin: 0 auto 32px;
  font-size: 1.2rem;
  color: var(--text-soft);
  line-height: 1.6;
}


/* ==================================================
   CARD PRINCIPAL DEL CURSO
================================================== */
.course-card {
  max-width: 900px;
  margin: 0 auto;

  background: #ffffff;
  border-radius: 32px;
  padding: 60px 40px;

  box-shadow: 0 25px 60px rgba(107,76,163,.15);
}


/* ==================================================
   CTA
================================================== */
.course-cta {
  margin: 40px 0 10px;
  text-align: center;
}


/* ==================================================
   BOTONES
================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 44px;
  min-height: 54px;

  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;

  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;

  box-shadow: 0 14px 32px rgba(107,76,163,.4);
  transition: all .3s ease;

  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(107,76,163,.45);
}


/* ==================================================
   BLOQUES INTERNOS DEL CURSO
================================================== */
.course-block {
  margin: 55px 0;
  font-size: 1.15rem;
  color: var(--text-soft);
  line-height: 1.7;
  text-align: center;
}


/* ==================================================
   PROCESO 21 DÍAS
================================================== */
.process-box { 
  margin-top: 60px; 
  padding-top: 50px; 
  border-top: 1px solid rgba(107,76,163,.15); 
  text-align: center; 
}

.process-box h2 {
  font-size: 2rem;
  margin-bottom: 28px;
  color: var(--text-dark);
}

.process-box p {
  max-width: 620px;
  margin: 0 auto 24px;

  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.process-box::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin: 32px auto 0;
  background: linear-gradient(
    to right,
    transparent,
    var(--primary),
    transparent
  );
  opacity: .5;
}


/* ==================================================
   PRECIO / INVERSIÓN
================================================== */
.price-box {
  margin-top: 70px;
  padding-top: 55px;
  border-top: 1px solid rgba(107,76,163,.15);
  text-align: center;
}

.amount {
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--primary);
  margin: 14px 0;
}

.amount-alt {
  font-size: 1.25rem;
  color: var(--text-soft);
  margin-bottom: 18px;
}

/* Texto pago único */
.price-box .small {
  margin-bottom: 26px;
  display: block;
}

/* Botón centrado con aire */
.price-box .btn-primary {
  margin: 20px auto 28px;
}

/* Texto aclaratorio mail */
.price-note {
  max-width: 520px;
  margin: 0 auto;
  font-size: .85rem;
  color: var(--text-soft);
  opacity: .85;
  line-height: 1.5;
}

.price-text {
  max-width: 620px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  color: var(--text-soft);
  line-height: 1.7;
}


/* =====================
   VIDEO PRESENTACIÓN
===================== */
.video-section {
  margin: 70px 0;
  text-align: center;
}

.video-intro {
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 1.1rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(107,76,163,.2);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}


.course-block {
  margin-top: 60px;
  text-align: center;
}

.course-block h2 {
  font-size: 2.1rem;
  font-weight: 600;
  margin-bottom: 22px;
}

.course-block p {
  max-width: 720px;
  margin: 0 auto 22px;
  font-size: 1.15rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.course-list {
  list-style: none;
  padding: 0;
  margin: 30px auto 30px;
  max-width: 520px;
  text-align: left;
}

.course-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  font-size: 1.05rem;
  color: var(--text-soft);
}

.course-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 1rem;
}

.course-block h2,
.process-box h2,
.price-box h2,
.video-section h2 {
  color: var(--text-dark);
}




/* ==================================================
   RESPONSIVE
================================================== */
@media (max-width: 768px) {

  body {
    padding-top: 70px;
  }

  .hero {
    padding: 95px 18px 65px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .course-card {
    padding: 50px 24px;
    border-radius: 26px;
  }

  .process-box h2 {
    font-size: 1.6rem;
  }

}

