.sobre-mi {
  padding: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  font-family: var(--fuente-principal);
}

.presentacion {
  display: flex;
  gap: 2rem;
  margin-bottom: 4rem;
  align-items: flex-start;
  background-color: #f0f4f1;
  flex-wrap: wrap;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);

}

.foto-col {
  width: 100%;
  max-width: 400px;
  /* o lo que desees */
  height: 35rem;
  /* fuerza altura visible */
  overflow: hidden;
  border-radius: 1rem;
  margin: 0 auto;
  /* centra horizontalmente */
  display: flex;
  justify-content: center;
  align-items: start;
}

.foto-sobre-mi {
  width: 100%;
  max-height: 27rem;
  object-fit: cover;
  object-position: top;
  /* Corta por abajo */
  border-radius: 1rem;
  overflow: hidden;
  margin-top: 5rem;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.texto-col {
  flex: 2;
}

.texto-col h2 {
  font-size: 2rem;
  color: #344e41;
  margin-bottom: 0.5rem;
}

.subtitulo {
  font-weight: bold;
  color: #50614e;
  margin-bottom: 1rem;
}

.descripcion {
  color: #444;
  font-size: 1.1rem;
  line-height: 1.7;
  padding: 1rem 0;
  text-align: justify;
}


.formacion-section {
  margin-bottom: 3rem;
  position: relative;
  padding: 2rem;
  margin-bottom: 3rem;
  z-index: 1;
  overflow: hidden;
}

.formacion-section h3 {
  font-size: 1.4rem;
  color: #50614e;
  margin-bottom: 1rem;
  border-left: 4px solid #a3b18a;
  padding-left: 0.6rem;
}

.formacion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.formacion-card {
  background-color: #f7f7f4;
  padding: 1.2rem 1rem;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #f7f7f4;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.formacion-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.formacion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.formacion-card:hover {
  transform: translateY(-5px);
}

.formacion-card strong {
  font-size: 1.05rem;
  color: #344e41;
  margin-bottom: 0.3rem;
  display: block;
}

.formacion-card .centro {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0.3rem;
}

.formacion-card .fecha {
  font-size: 0.85rem;
  color: #999;
}

.formacion-card {
  color: #344e41;
  text-align: center;
}

.formacion-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(163, 177, 138, 0.2);
  filter: blur(30px);
  z-index: 0;
  pointer-events: none;
}


/* Responsive */
@media (max-width: 768px) {
  .presentacion {
    flex-direction: column;
    text-align: center;
  }

  .foto-col {
    margin-bottom: 2rem;
    height: 25rem;
  }

  .foto-sobre-mi {
    max-height: 17rem;

  }

  .texto-col h2 {
    font-size: 1.7rem;
  }

  .descripcion {
    font-size: 1rem;
  }

  .formacion-section h3 {
    font-size: 1.2rem;
  }
}