/* 🎓 Sección Academy */
.academy-section {
  height: 100vh;
  background-color: #000;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

/* 📝 Contenido */
.academy-content {
  z-index: 2;
}

.academy-subtitle {
  font-size: 1.25rem;
  color: #28a745;;
  font-weight: 600;
  margin-bottom: 1rem;
}

.academy-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.highlight {
  color: #28a745;;
}

.academy-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.academy-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.academy-list li {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.academy-list i {
  color: #28a745;;
  margin-right: 0.5rem;
}

/* 🔘 Botón */
.btn-academy {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-academy:hover {
  background-color: #28a745;;
  border-color: #28a745;;
  color: #fff;
}

/* 🖼 Imagen */
.academy-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 📱 Responsive */
@media (max-width: 991px) {
  .academy-section {
    flex-direction: column;
    height: auto;
  }

  .academy-content {
    text-align: center;
  }

  .academy-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: 2rem;
  }
}

.academy-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;       /* espacio entre icono y texto */
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  line-height: 1.4;
}

.icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;        /* tamaño fijo más pequeño */
  height: 18px;
  flex-shrink: 0;     
}

.list-icon {
  max-width: 100%;      /* no exceder el contenedor */
  max-height: 100%;     
  object-fit: contain;   /* mantiene proporción */
  display: block;
}

