body {
  background-color: #dad8d8; /* cinza claro */
}

.estilocor {
  color: #121643 /* azul   #121643 */
}


.certificacoes .cards {
    display: flex;
    justify-content: center;
    /* Centraliza horizontalmente */
    align-items: center;
    /* Alinha verticalmente, útil se as imagens tiverem alturas diferentes */
    gap: 24px;
    /* Espaço entre as imagens */
    flex-wrap: wrap;
    /* Permite quebrar linha no mobile */
}

.certificacoes .card {
    border: 0;
    background: transparent;
    box-shadow: none;
}

.certificacoes .card img {
    display: block;
    max-width: 200px;
    /* Ajuste conforme o layout desejado */
    height: auto;
}