.schedule-section {
  margin: 60px auto;
}
.schedule-title {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
}
.schedule-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.schedule-item {
  background: #fff;
  border-radius: 12px;
  flex: 0 1 calc(25% - 1rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.5rem 2.5rem 1.5rem;
  min-width: 200px;
  max-width: 300px;
  position: relative;
}
.schedule-item img {
  max-width: 85px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 1.2rem;
}
.schedule-item-title {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  text-align: center;
}
.schedule-item-desc {
  font-size: 1rem;
  text-align: center;
}
/* Separador entre o 1º-2º, 2º-3º e 3º-4º de cada linha, exceto o último item */
.schedule-item:not(:nth-child(4n))::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 0;
  width: 1px;
  height: 70%;
  background: #e0e0e0;
}
.schedule-item:last-child::after {
  display: none !important;
}

@media (max-width: 1200px) {
  .schedule-item {
    min-width: 180px;
    max-width: 260px;
  }
}
@media (max-width: 1000px) {
  .schedule-list {
    gap: 1.2rem;
  }
  .schedule-item {
    flex: 0 1 calc(50% - 1.2rem);
    min-width: 200px;
    max-width: 100%;
  }
  .schedule-item:nth-child(odd)::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 0;
    width: 1px;
    height: 70%;
    background: #e0e0e0;
    display: block;
  }
  .schedule-item:nth-child(even)::after {
    display: none;
  }
}
@media (max-width: 600px) {
  .schedule-list {
    flex-direction: column;
    gap: 1rem;
  }
  .schedule-item {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 0;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
  }
  .schedule-item:last-child {
    border-bottom: none;
  }
  .schedule-item::after {
    display: none !important;
  }
}

