* {
    border: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Barlow Semi Condensed", sans-serif;
    font-size: 13px;
}

html, body {
    display: flex;
    flex-direction: column;
    background-color:  hsl(214, 17%, 92%);
    height: 100%;
    width: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: 1440px;
    text-align: center;

}

h2 {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.text {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}


.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Em vez de 8 fr */
  gap: 30px;
  margin-bottom: 50px;
}

.card {
    border-radius: 10px;
    padding: 40px;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.personal-informations {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  text-align: left;
}

.name {
   font-weight: 600;
   font-size: 14px;   
}


.description {
    opacity: 0.6;
    font-size: 12px;
}

.text-info {
    display: flex;
    flex-direction: column;
}

.personal-informations .description {
    font-weight: 100;
}

.personal-informations img{
    border-radius: 50px;
    margin-right: 20px;
    width: 40px;
    height: 40px;
}

img {
    float: inline-end;
}


.card-daniel {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
  background-color: hsl(263, 55%, 52%);
  color: white;
}

.card-jonathan {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
  background-color: hsl(217, 19%, 35%);
  color: white;
}

.card-jeanette {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  background-color: white;
  color: hsl(217, 19%, 35%);
}

.card-patrick {
  grid-column: 2 / 4;
  grid-row: 2 / 3;
  color: hsl(0, 0%, 81%);
  background-color: hsl(219, 29%, 14%);
}

.card-kira {
  grid-column: 4 / 5;
  grid-row: 1 / 3;
  background-color: white; 
  color: hsl(217, 19%, 35%);
}

@media (max-width: 768px) {
  .card-grid {
    display: flex;
    flex-direction: column;
  }

  .container {
    height: 100%;
    padding: 20px;
  }
}
