.sectionLigue {
  background-color: var(--color-green2);
  color: var(--background);
  padding: 60px 20px;
  height: auto;
}

.sectionLigue .row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 20px;
}

.sectionLigue .sobTitle {
  font-size: 24px;
  font-weight: 700;
  color: var(--background);
  width: 100%;
  text-align: center;
}

.sectionLigue .title {
  font-size: 48px;
  font-weight: 700;
  color: var(--background);
  width: 60%;
  text-align: center;
}

.sectionLigue .info-contato {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.sectionLigue .icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background);
  border-radius: 16px;
  padding: 20px;
}

.sectionLigue .number {
  font-size: 24px;
  font-weight: 700;
  color: var(--background);
  padding: 0px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Responsividade para tablets e celulares */
@media (max-width: 768px) {
  .sectionLigue {
    padding: 40px 15px;
  }

  .sectionLigue .title {
    font-size: 32px;
    width: 100%;
  }

  .sectionLigue .sobTitle {
    font-size: 20px;
  }

  .sectionLigue .number {
    font-size: 20px;
    padding: 0 10px;
  }

  .sectionLigue .icon {
    width: 60px;
    height: 60px;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .sectionLigue .title {
    font-size: 24px;
  }

  .sectionLigue .sobTitle {
    font-size: 18px;
  }

  .sectionLigue .number {
    font-size: 18px;
  }
}
