/* Reset básico */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #000;
  color: #fff;
  font-family: 'Arial', sans-serif;
  overflow-x: hidden;
}

/* Sección Sobre Mí */
.sobre-mi {
  padding: 4rem 1rem;
  background-color: #111; /* fondo oscuro para contraste */
  color: #fff;
}

.sobre-mi-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.sobre-mi-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: red;
  margin: 0.5rem auto 0;
  border-radius: 4px;
}

.sobre-mi-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 2rem auto 0;
  padding: 0 1rem;
}

.sobre-mi-img img {
  width: 100%;
  max-width: 350px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  filter: brightness(0.95) contrast(1.1);
}

.sobre-mi-texto {
  max-width: 500px;
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: left;
}

/* Responsive para pantallas pequeñas */
@media screen and (max-width: 768px) {
  .sobre-mi-content {
    flex-direction: column;
    text-align: center;
  }

  .sobre-mi-texto {
    text-align: center;
    padding: 0 1rem;
  }

  .sobre-mi-img img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
}

/* Subtema: Formación Académica dentro de Sobre mí */
.educacion {
  margin-top: 3rem;
  padding: 0 1rem;
  color: #fff;
}

.educacion h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.educacion h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: red;
  margin: 0.5rem auto 0;
  border-radius: 3px;
}

.instituciones {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1000px;
  margin: auto;
}

.institucion {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background-color: #1a1a1a;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(255,255,255,0.05);
  flex-wrap: wrap;
}

.institucion img {
  width: 80px;
  height: auto;
  border-radius: 6px;
  filter: brightness(1.1);
}

.texto {
  text-align: left;
}

.institucion-nombre {
  font-size: 1.2rem;
  font-weight: bold;
}

.carrera {
  font-style: italic;
  margin-bottom: 0.3rem;
}

/* Responsive para móviles */
@media screen and (max-width: 768px) {
  .institucion {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .institucion img {
    margin-bottom: 0.5rem;
  }

  .texto {
    text-align: center;
  }
}
