/* EuPedi — seção "No seu estabelecimento".
   Arquivo isolado para não alterar o site.css existente. */

.estabelecimento-section {
  background: #f7f9fb;
}

.estabelecimento-section .section-h {
  max-width: 760px;
}

.estabelecimento-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.estab-card {
  min-height: 248px;
  padding: 26px 22px;
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 31, 63, .055);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.estab-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 180, 216, .6);
  box-shadow: 0 16px 34px rgba(0, 31, 63, .10);
}

.estab-icone {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  border-radius: 15px;
  background: linear-gradient(145deg, #e8faff, #d5f5fb);
  color: #001f3f;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(0, 180, 216, .12);
}

.estab-icone svg {
  width: 28px;
  height: 28px;
  display: block;
}

.estab-titulo {
  margin: 0 0 10px;
  color: #001f3f;
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: -.015em;
}

.estab-desc {
  margin: 0;
  color: #5f6b7a;
  font-size: .86rem;
  line-height: 1.7;
}

@media (max-width: 960px) {
  .estabelecimento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .estab-card {
    min-height: 220px;
  }
}

@media (max-width: 560px) {
  .estabelecimento-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 30px;
  }

  .estab-card {
    min-height: 0;
    padding: 22px 20px;
  }

  .estab-icone {
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
  }
}
