#delivery-section {
  background: #fff8f8;
  padding: 60px 20px;
}

.delivery-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.delivery-column {
  flex: 1 1 30%;
  padding: 20px;
  min-width: 250px;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-left, .text-right {
  display: flex;
  flex-direction: column;
}

.text-left {
  text-align: left;
  align-items: flex-start;
}

.text-right {
  text-align: right;
  align-items: flex-end;
}

.pedido-btn {
  background-color: #d96b72;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 10px;
  display: inline-block;
}

@media (max-width: 768px) {
  #delivery-section {
    padding: 20px 10px !important;
  }

  .delivery-container {
    flex-direction: column !important;
    align-items: center !important;
    row-gap: 20px !important;
    column-gap: 0 !important;
    margin: 0 auto !important;
  }

  .delivery-column {
    flex: 1 1 100% !important;
    max-width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 10px !important;
  }

  .delivery-column > div {
    align-items: center !important;
    width: 100% !important;
  }

  .text-left,
  .text-right {
    text-align: center !important;
    align-items: center !important;
  }

  .pedido-btn {
    align-self: center !important;
    margin-top: 10px !important;
  }

  .center {
    order: 0 !important;
    max-width: 300px !important;
    justify-content: center !important;
  }
}