/* Estilos específicos para a seção delivery */
/* .delivery-section, .delivery-card, .delivery-grid, etc. */

.delivery-section {
  padding: 3.5rem 0 2.5rem 0;
  background: #f8f8fc;
}

.delivery-section .delivery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.delivery-section .delivery-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 6px #0001;
  padding: 1.5rem 1.2rem;
  max-width: 240px;
  flex: 1 1 180px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.delivery-section .delivery-card i {
  color: var(--primary-color, #9B6B9E); /* alinhado com o padrão roxo da página */
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.delivery-section .delivery-card h3 {
  color: var(--primary-color, #9B6B9E);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.delivery-section .delivery-card p {
  font-size: 0.98rem;
  color: #444;
}
