/* --- MEJORA SECCIÓN ACADEMIA --- */

.academy-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.academy-card {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Lado de Información */
.info-side {
  position: relative;
  background: linear-gradient(to right, #ffffff, #fdf8fa);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), #740834);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-mini-grid {
  margin: 30px 0;
  display: grid;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
}

.contact-item .icon {
  width: 40px;
  height: 40px;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.btn-wide {
  width: fit-content;
  gap: 10px;
}

/* Lado Visual (Poster) */
.visual-side {
  background: #121821; /* Color oscuro profundo */
  position: relative;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* Textura de fondo sutil */
.overlay-texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.05) 1px, transparent 0);
  background-size: 24px 24px;
}

.poster-content {
  position: relative;
  z-index: 2;
}

.tagline {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.poster-main-text {
  font-family: Georgia, serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.poster-main-text span {
  display: block;
}

.poster-main-text .outline {
  -webkit-text-stroke: 1px rgba(255,255,255,0.4);
  color: transparent;
}

.poster-main-text .filled {
  color: var(--primary);
}

.poster-footer {
  margin-top: 30px;
  font-size: 0.9rem;
  opacity: 0.7;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .academy-wrapper {
    grid-template-columns: 1fr;
    margin: 0 10px;
  }
  
  .academy-card {
    padding: 50px 30px;
    text-align: center;
  }

  .contact-item {
    justify-content: center;
  }

  .btn-wide {
    margin: 0 auto;
  }
}

.academy-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
}

.academy-info{
  padding:72px 64px 72px 42px;
  position:relative;
  background:#fff;
}

.academy-info::before{
  content:"✿";
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  color:#eef2f5;
  font-size:21rem;
  line-height:1;
  z-index:0;
}

.academy-info > *{
  position:relative;
  z-index:1;
}

.academy-info h2{
  font-family: Georgia, "Times New Roman", serif;
  color:#111;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height:1.05;
  margin-bottom:22px;
}

.academy-info p{
  margin-bottom:6px;
}

.academy-poster{
  min-height:520px;
  background:#000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px;
}

.poster{
  width:100%;
  max-width:440px;
  text-align:right;
  text-transform:uppercase;
  font-weight:800;
  line-height:.95;
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing:-1px;
}

.poster span{
  display:block;
  color:#cfcfcf;
}

.poster .light{
  font-style:italic;
  font-weight:400;
}