/* ===============================
   PAGE
================================ */

.page-content{
  padding-top: 70px;
}

/* ===============================
   HERO
================================ */

.academy-hero{
  text-align: center;
  padding: 4rem 2rem 2rem;
}

.academy-subtitle{
  font-size: 0.85rem;
  letter-spacing: 3px;
  opacity: 0.7;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.academy-title{
  font-size: 2rem;
  letter-spacing: 5px;
}

/* LÍNEA REUTILIZABLE */
.academy-line{
  width: 100%;
  max-width: 480px;
  height: 1px;
  margin: 20px auto 40px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );
}

/* ===============================
   WRAPPER ORIGINAL
================================ */

.academy-wrapper{
  max-width: 1200px;
  margin: auto;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

/* BLOQUES */
.academy-block{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ===============================
   TEXTO
================================ */

.academy-text h2{
  letter-spacing: 4px;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  text-transform: uppercase;
}

.academy-text p{
  opacity: 0.85;
  line-height: 1.7;
  font-size: 0.95rem;
  max-width: 520px;
}

/* ===============================
   LISTAS
================================ */

.academy-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.academy-list li{
  position: relative;
  padding-left: 1.2rem;
  opacity: 0.85;
}

.academy-list li::before{
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.8);
}

/* ===============================
   IMÁGENES
================================ */

.academy-image{
  width: 100%;
  overflow: hidden;
}

.academy-image img{
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 18px 35px rgba(0,0,0,0.7);
  transition: transform 0.4s ease;
}

.academy-image img:hover{
  transform: scale(1.04);
}

/* ===============================
   NUEVO BLOQUE BCSD / LSPD
================================ */

.academy-custom{
  text-align: center;
  padding: 60px 20px;
}

.academy-custom-title{
  font-size: 2rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* GRID BCSD / LSPD */
.academy-custom-grid{
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

/* PANEL */
.academy-panel{
  width: 320px;
  padding: 20px;
}

/* SUBTÍTULOS BCSD / LSPD */
.academy-panel .academy-subtitle{
  font-size: 1.1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* LISTAS dentro del panel */
.academy-panel .academy-list{
  margin-top: 10px;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px){
  .academy-block{
    grid-template-columns: 1fr;
  }

  .academy-custom-grid{
    gap: 40px;
  }
}

/* ===============================
   CTA
================================ */

.academy-cta{
  text-align: center;
  padding-top: 2rem;

  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.academy-cta.visible{
  opacity: 1;
  transform: translateY(0);
}

.academy-cta h2{
  letter-spacing: 4px;
  margin-bottom: 2rem;
}

.academy-cta-buttons{
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.academy-btn{
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  letter-spacing: 2px;
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  background: transparent;
  transition: 0.3s ease;
}

.academy-btn:hover{
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}

.academy-btn.secondary{
  background: transparent;
}

.academy-btn:hover{
  background: rgba(255,255,255,0.12) !important;
  transform: translateY(-3px) !important;
}