.sobre-mi-contenedor {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 2rem 1rem;
  box-sizing: border-box;
}

.sobre-mi-bloque {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 2rem 1.5rem;
}

.sobre-mi-bloque:nth-child(even) {
  flex-direction: row-reverse;
}

.sobre-mi-texto {
  flex: 1 1 0;
}

.sobre-mi-texto h2 {
  color: #009351;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.sobre-mi-texto p,
.sobre-mi-texto ul {
  font-size: 1.15rem;
  color: #222;
  line-height: 1.7;
  margin: 0 0 1rem 0;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.sobre-mi-texto ul {
  padding-left: 1.5rem;
}

.sobre-mi-texto ul li {
  margin-bottom: 0.7rem;
  list-style: disc;
}

.sobre-mi-img {
  flex: 0 0 220px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sobre-mi-img img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  background: #f8f8f8;
}

/* Responsive */
@media (max-width: 900px) {
  .sobre-mi-bloque {
    padding: 1.2rem 0.5rem;
    gap: 1rem;
  }
  .sobre-mi-img img {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 700px) {
  .sobre-mi-bloque {
    flex-direction: column !important;
    text-align: center;
    padding: 1rem 0.2rem;
  }
  .sobre-mi-img {
    margin-bottom: 1rem;
    justify-content: center;
  }
  .sobre-mi-img img {
    width: 110px;
    height: 110px;
  }
  .sobre-mi-texto h2 {
    font-size: 1.2rem;
  }
  .sobre-mi-texto p,
  .sobre-mi-texto ul {
    font-size: 15px;
  }
}