/* ESTILOS SECCIÓN MEDIO2 ORIGINAL */
/* Estilos generales */
body {
  margin: 0;
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #0b3d2e; /* verde oscuro */
  background-color: #ffffff;
}
h1, h2, h3, h4 {
  margin: 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
/* Título superior */
.titulo-principal {
  text-align: center;
  margin-bottom: 40px;
}
.titulo-principal h1 {
  font-size: 36px;
  font-weight: bold;
  color: #0b3d2e;
}
.titulo-principal h2 {
  font-size: 28px;
  font-weight: normal;
  margin-top: 10px;
  color: #0b3d2e;
}
/* Columna izquierda */
.col-izquierda {
  flex: 1;
}
.col-izquierda h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #0b3d2e;
}
.col-izquierda p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
}
.logros {
  margin-top: 20px;
}
.logros h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #0b3d2e;
}
.logros-lista {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.logro-item {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #0b3d2e;
}
.logro-item::before {
  content: "✔";
  color: #1fb64f;
  font-weight: bold;
  margin-right: 8px;
}
/* Columna derecha - tarjeta */
.col-derecha {
  flex: 1;
  display: flex;
  justify-content: center;
}
.tarjeta {
  background: linear-gradient(135deg, #2f6d60, #0b3d2e);
  border-radius: 20px;
  padding: 40px 30px;
  color: #fff;
  max-width: 450px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.tarjeta .icono {
  font-size: 40px;
  margin-bottom: 15px;
  color: #f4c542;
}
.tarjeta h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.tarjeta p {
  font-size: 14px;
  margin-bottom: 30px;
}
.tarjeta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: center;
}
.tarjeta-item {
  color: #f4c542;
  font-weight: bold;
  font-size: 22px;
}
.tarjeta-item span {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  margin-top: 5px;
}
/* Responsive */
@media (max-width: 900px) {
  .container {
    flex-direction: column;
    align-items: center;
  }
  .col-izquierda, .col-derecha {
    width: 100%;
  }
  .tarjeta {
    width: 100%;
  }
}