.cuerpo-sobre-mi {
  padding: 10px;
  color: #cbcbcb;
  background-color: rgb(17 17 37);
}

.mi-biooo {
  font-family: 'Segoe UI', sans-serif;
}

.biografia-empresa {
  display: flex;
  align-items: center;
  padding: 20px;
  margin-bottom: 20px;
  background-color: #1a1a2e;
  color: #eaeaea;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgb(0 0 0 / 30%);
  transition: transform 0.3s;
}

.biografia-empresa:hover {
  transform: translateY(-5px);
}

.biografia-empresa img {
  border-radius: 8px;
  width: 400px;
  height: 400px;
  margin-right: 20px;
  border: 4px solid #f0f0f0;
  box-shadow: 0 4px 10px rgb(0 0 0 / 20%);
  object-fit: cover;
}

.biografia-empresa div {
  flex: 1;
}

.biografia-empresa h2 {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.biografia-empresa p {
  text-align: justify;
  line-height: 2;
  margin: 10px 0;
}

.biografia-empresa strong {
  color: #ffdd57;
}

/* Estilos responsivos */
@media (max-width: 850px) {
  .biografia-empresa {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .biografia-empresa img {
    margin-right: 0;
    margin-bottom: 15px;
    width: 100%;
    max-width: 220px;
  }
    
  .biografia-empresa h2 {
    font-size: 1.6em;
  }
}


.testimonios-titulo {
  font-size: 2em;
  height: 100px;
  border-top: 2px solid #cbcbcb;
  text-align: center;
  padding-top: 10px;
}

.testimonio {
  display: flex;
  align-items: center;
  background-color: #1a1a2e;
  color: #fff;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgb(0 0 0 / 20%);
}

.testimonio img {
  border-radius: 50%;
  width: 90px;
  height: 90px;
  margin-right: 15px;
}

.testimonio p {
  font-style: italic;
  margin-bottom: 5px;
}

.testimonio span {
  display: block;
  text-align: right;
  font-weight: bold;
}

.badges {
  background-color: rgb(228 207 207);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding-top: 10px;
}
  
.badges > div {
  border: 2px solid #0073e6;
  border-radius: 10px;
  box-sizing: border-box;
  flex: 1 1 150px; /* se adapta al espacio, mínimo 150px */
  max-width: 180px;
}
  
/* Opcional: mejora la visualización en pantallas más pequeñas */
@media (max-width: 480px) {
  .badges {
    gap: 15px;
  }
  
  .badges > div {
    max-width: 100%;
    flex: 1 1 100%;
  }
}
  

.timeline-section {
  font-family: 'Segoe UI', sans-serif;
}
  
.timeline-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #333;
}
  
.timeline {
  position: relative;
  margin-left: 20px;
  border-left: 4px solid #07f;
}
  
.timeline-block {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 25px;
}
  
.marker {
  width: 16px;
  height: 16px;
  background-color: #07f;
  border: 3px solid #fff;
  border-radius: 50%;
  position: absolute;
  left: -10px;
  top: 5px;
  box-shadow: 0 0 0 3px #07f3;
}
  
.timeline-content {
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 6%);
}
  
.timeline-content .date {
  display: block;
  font-size: 0.85rem;
  color: #07f;
  margin-bottom: 0.3rem;
  font-weight: bold;
}
  
.timeline-content h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #222;
}
  
.timeline-content p {
  font-size: 0.95rem;
  color: #555;
  margin-top: 0.4rem;
}
  