/* ===================================
   ABOUT ME SECTION - OPTIMIZED
   =================================== */
.about { padding: 100px 0; overflow: hidden; }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

/* EFECTO FOTO & CANVAS */
.about__visual, .btn-link { display: flex; align-items: center; }
.about__visual { justify-content: center; width: 100%; }

.about__image-canvas {
  position: relative;
  z-index: 1;
  width: clamp(180px, 35vw, 300px);
  aspect-ratio: 4 / 6;
}

.about__img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 24px;
  filter: grayscale(20%);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: .5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about__image-canvas::before {
  content: '';
  position: absolute;
  top: -1.5vw; left: -1.5vw;
  width: 100%; height: 100%;
  border: 2px solid rgba(15, 76, 207, 0.3);
  border-radius: 24px;
  z-index: -1;
  transition: .5s ease;
}

/* HOVER EFFECTS */
.about__image-canvas:hover::before { top: 0; left: 0; border-color: rgba(15, 76, 207, 0.8); }
.about__image-canvas:hover .about__img { transform: scale(1.02); filter: grayscale(0); }

/* TIPOGRAFÍA & CONTENIDO */
.about__badge {
  display: inline-block;
  padding: 12px 28px;
  background: rgba(15, 76, 207, 0.1);
  color: var(--brand-2);
  border-radius: 99px;
  font: 700 1.1rem var(--font-primary);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about__headline {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 24px;
}

.highlight { color: var(--brand-2-btn); font-style: italic; }

.about__paragraph {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about__footer { margin-top: clamp(2rem, 5vh, 3rem); width: fit-content; }

/* BOTÓN LINK DINÁMICO */
.btn-link {
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
  font: 600 1rem var(--font-primary);
  position: relative;
  padding-bottom: 4px;
  transition: .3s ease;
}

.btn-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40%; height: 2px;
  background: var(--brand-2);
  transition: .4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-link__icon { font-size: 1.2rem; transition: .4s cubic-bezier(0.25, 0.8, 0.25, 1); }

.btn-link:hover::after { width: 100%; }
.btn-link:hover .btn-link__icon { transform: translateX(6px); }

/* RESPONSIVIDAD */
@media (max-width: 992px) {
  .about__grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .about__image-canvas::before { display: none; }
}