/* =========================
   SOBRE MÍ
========================= */
.sobre-mi {
  padding: 60px 20px;
}

.sobre-mi__contenedor {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  padding: 40px 20px 0;
}

.sobre-mi__texto {
  text-align: center;
  max-width: 520px;
}

.sobre-mi h2 {
  margin-bottom: 2rem;
  color: var(--color-texto);
  text-align: center;
}

.sobre-mi p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-texto);
  text-align: center;
}

.sobre-mi__imagen img {
  border-radius: 24px;
  width: 100%;
  max-width: 320px;
  height: auto;
}

.sobre-mi__imagen {
  margin-top: 8px;
}

.sobre-mi__redes {
  margin-top: 20px;
  text-align: center;
}

.sobre-mi__redes h3 {
  font-size: 1.2rem;
  margin: 50px 0 20px;
  color: var(--color-texto);
}

.sobre-mi__redes nav {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.sobre-mi__redes nav a {
  transition: transform 0.3s ease;
}

.sobre-mi__redes nav a:hover {
  transform: scale(1.1);
}
