p {
    font-weight: 400;
}
.hero-section {
  padding: 60px 0;
  background-size: cover;
  background-image: url(../../../assets/images/summertraining-landing.jpg);
  background-position-y: 29%;
}

.hero-content {
    width: 52%;
}

.hero-title {
  color: var(--primary-color);
}

.hero-subtitle strong {
  font-weight: 700;
}

.hero-buttons span {
  font-weight: 300;
}

.hero-buttons {
  padding-bottom: 20px;
}
/* Estilos para la sección "¿Cómo son las clases?" */
.classes-section {
    padding: 70px 5%;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    position: relative;
}

.classes-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.class-card {
    width: calc(50% - 15px);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: flex-start;
    background-color: #fff;
}

.class-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.class-icon {
    font-size: 35px;
    color: #FF5500;
    margin-right: 20px;
    min-width: 40px;
    display: flex;
    justify-content: center;
}

.class-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #333;
    font-weight: 700;
}

.class-content p {
    color: #666;
}

/* Estilos para la sección "¿Por qué hacer este curso?" */
.why-section {
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 250px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(100px, -150px);
    z-index: 0;
}

.why-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 180px;
    height: 180px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-100px, 100px);
    z-index: 0;
}

.section-title {
    text-align: center;
    font-size: 2.3rem;
    color: white;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.reasons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.reason-item {
    width: 50%;
    padding: 15px 25px;
    display: flex;
    align-items: flex-start;
    color: white;
    margin-bottom: 10px;
}

.reason-icon {
    font-size: 32px;
    color: white;
    margin-right: 15px;
    min-width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.reason-item:hover .reason-icon {
    transform: scale(1.2);
}

.reason-content {
    flex: 1;
}

.reason-content h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
    color: white;
    font-weight: 700;
}

.highlight {
    color: white;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}

.cta-container {
    text-align: center;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.main-cta {
    display: inline-block;
    background-color: white;
    color: #ff9f1d;
    font-weight: bold;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.main-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background-color: #f8f8f8;
}

/* Estilos para la sección "¿Qué vas a conseguir?" */
.achievement {
  text-align: left !important;
}

/* Estilos para la sección "Test Nivel" */
.level-test {
  text-align: center !important;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
      background-position-x: 72%;
      
  }

  .hero-text,
  .hero-content {
    min-width: 100%;
  }

  .hero-content {
    flex-direction: column;
  }

  .hero-title {
      font-size: 42px !important;
   }

   .hero-subtitle {
     background-color: var(--white-trans);
     color: black;
   }

  .class-card {
      width: 100%;
  }

  .reason-item {
    width: 100%;
  }
}