/* ===== SOBRE MÍ (misma base que .hero) ===== */

/* Apagar animaciones SOLO en esta vista */
.hero.hero-sobre-mi{
  animation: none !important;
}

/* Overlay para lectura (si tu .hero ya tiene overlay, este lo refuerza) */
.hero.hero-sobre-mi::after{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.60) 70%,
    rgba(0,0,0,0.82) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Centro (igual idea que projects-center) */
.about-center{
  position: relative;
  z-index: 2;

  width: min(900px, 92vw);
  padding: 26px 22px;

  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(10px);

  text-align: center;
}

/* Entrada por partes */
.about-title,
.about-lead,
.about-text,
.about-points,
.about-cta{
  opacity: 0;
  transform: translateY(10px);
  animation: aboutIn .65s ease forwards;
}

.about-title{ animation-delay: .2s; }
.about-lead{ animation-delay: .4s; }
.about-text{ animation-delay: .6s; }
.about-points{ animation-delay: .8s; }
.about-cta{ animation-delay: 1s; }

@keyframes aboutIn{
  to{ opacity: 1; transform: translateY(0); }
}

/* Colores (para que nunca “desaparezca” el título) */
.about-title{
  font-family: 'Courier New', monospace;
  font-size: 28px;
  letter-spacing: 2px;
  margin: 0 0 10px;
  color: #fff;
}

.about-lead{
  font-family: 'Courier New', monospace;
  font-size: 16px;
  letter-spacing: .6px;
  margin: 0 0 14px;
  color: #fff;
  opacity: .92;
}

.about-text{
  font-family: 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.75;
  margin: 0 auto 16px;
  max-width: 70ch;
  color: #fff;
  opacity: .88;
}

.about-points{
  list-style: none;
  padding: 0;
  margin: 0 auto 18px;
  max-width: 70ch;
  text-align: left;
  display: grid;
  gap: 10px;

  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: #fff;
  opacity: .92;
}

.about-cta{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-family: 'Courier New', monospace;
  font-size: 14px;
  letter-spacing: 1px;
  color: #fff;
  text-decoration: none;

  padding: 12px 16px;
  border-radius: 14px;

  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
}

.about-cta:hover{
  border-color: rgba(0,224,255,.45);
  box-shadow: 0 0 0 3px rgba(0,224,255,.12);
}

@media (max-width: 768px){
  .about-center{ padding: 22px 18px; }
  .about-title{ font-size: 24px; }
}






