#checks {
  padding: 80px;
}

.checks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 40px;
  width: 100%;
}

.checks-container-left {
  display: flex;
  flex-direction: column; /* Organiza os itens em coluna */
  align-items: flex-start; /* Alinha os itens no início da linha (lado esquerdo) */
  gap: 40px; /* Espaçamento entre os itens */
  background: rgba(172, 128, 247, 0.1);
  border-radius: 10px;
  padding: 32px;
  height: 100%;
}

.checks-container-right {
  display: flex;
  flex-direction: column; /* Organiza os itens em coluna */
  align-items: flex-start; /* Alinha os itens no início da linha (lado esquerdo) */
  gap: 40px; /* Espaçamento entre os itens */
  background: rgba(18, 30, 72, 0.05);
  border-radius: 10px;
  padding: 32px;
  height: 100%;
}

.text-container {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;  */
}

.checks-title {
  font-size: 40px;
  font-weight: bold;
  opacity:0.9;
  letter-spacing: 0;
  line-height: 1.2;
  width: 100%;
}

.checks-title.-white {
  color: white;
}

.checks-title .-blue {
  color: rgba(18, 30, 72, 0.9);
}

.checks-description {
  width: 100%;
  font-size: 24px;
  letter-spacing: -0.17px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.9);
}

.checks-description .-white {
  color: rgba(255, 255, 255, 0.9);
}

.checks-description .-blue {
  color: rgba(18, 30, 72, 0.7);
}

.checks-flex{
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  align-items: center;
}

.checks-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%; 
}

.check-item {
  display: flex;
  gap: 6px;
  align-items: top;
  justify-content: center;
}

#checks .checks-column .check-item .image {
  display: block;
  width: 24px;
  height: 24px;
}

#checks .checks-column .check-item .text {
  display: block;
  color: rgba(18, 30, 72, 0.7);
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.4;
  white-space: normal;
}

@media (max-width: 768px) {
  #checks {
    margin: 40px 20px;
    padding: 0px;
  }

  #checks .container {
    gap: 40px;
    width: fit-content;
  }

  #checks .container > .text .c-title {
    font-size: 28px;
    line-height: 36px;
  }

  #checks .container > .text .c-description {
    font-size: 16px;
    line-height: 24px;
  }

  #checks .grid-checks {
    gap: 10px; /* Menor espaçamento para grid no mobile */
  }
}


@media (max-width: 768px) {
  #checks {
    margin: 40px 20px;
    padding: 0px;
  }

  /* Ajustando o container para flex-direction coluna */
  .checks-grid {
    display: flex;
    flex-direction: column; /* Muda de grid para flex coluna */
    gap: 20px; /* Ajuste do espaçamento para ficar mais compacto */
    width: 100%;
  }

  /* Ajustando as containers internas para ficarem em coluna */
  .checks-container-left,
  .checks-container-right {
    display: flex;
    flex-direction: column; /* Mantém a estrutura em coluna */
    align-items: flex-start;
    gap: 20px; /* Ajusta o espaçamento entre os itens */
    background: rgba(172, 128, 247, 0.1);
    border-radius: 10px;
    padding: 16px; /* Reduz o padding no mobile */
    height: auto; /* Ajusta a altura para caber no conteúdo */
    width: 100%;
  }

  /* Ajuste no texto para o mobile */
  .checks-title {
    font-size: 24px; /* Reduz o tamanho da fonte no mobile */
    line-height: 32px; /* Ajusta o line-height */
  }

  .checks-description {
    font-size: 16px; /* Tamanho de fonte ajustado */
    line-height: 24px;
  }

  /* Ajusta o flex para o mobile */
  .checks-flex {
    display: flex;
    flex-direction: column; /* Mantém o layout flex em coluna */
    gap: 12px; /* Reduz o gap */
    width: 100%;
    align-items: flex-start; /* Alinha à esquerda */
  }

  .checks-column {
    display: flex;
    flex-direction: column;
    gap: 16px; /* Espaçamento reduzido */
    width: 100%;
  }

  .check-item {
    display: flex;
    gap: 8px; /* Ajuste no espaçamento */
    align-items: center;
    justify-content: flex-start; /* Alinha à esquerda */
  }

  #checks .checks-column .check-item .image {
    width: 20px; /* Tamanho ajustado da imagem */
    height: 20px;
  }

  #checks .checks-column .check-item .text {
    font-size: 16px; /* Reduz o tamanho da fonte */
    line-height: 20px;
    color: rgba(18, 30, 72, 0.6); /* Cor ajustada */
  }

  /* Ajuste nas margens e padding do texto */
  .text-container {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px; /* Reduz o gap */
  }
}

