.container-principal {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: auto !important;
}

.introduccion {
  text-align: center;
  color: #7a7a7a;
  font-size: 30px;
  width: 80%;
}

.infografia-container {
    margin: 30px 0;
}

.boton-infografia {
  background-color: #049c84;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.boton-infografia:hover {
  background-color: #007f6f;
}

.subtitulo {
  color: #049c84;
  font-size: 24px;
  margin-top: 100px;
  text-align: center;
  font-weight: bold;
}

.seccion-tablas {
  width: 100%;
}

.tablas {
  width: 100%;
  border-collapse: collapse;
  height: 10px;
  color: #7a7a7a;
}

.tablas th,
.tablas td {
  font-size: 14px;
  padding: 12px;
  border: 1px solid #e0e0e0;
  text-align: center;
  max-width: 10px;
}


.tablas th {
    background-color: #f2f2f2;
    font-weight: bold;
    text-transform: uppercase;
    color: #7a7a7a;
  }

.tablas td svg {
  transition: transform 0.3s;
}

.tablas td svg:hover {
  transform: scale(1.1);
}

.tablas tr:nth-child(odd) {
  background-color: #fafafa;
}

.table-norm tr:hover {
  background-color: #e8f5f4;
}

.integrantes-container .foto {
  border-color: #e0e0e0;
  border-width: 2px;
  border-style: solid;
}