/* Páginas institucionais */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--s-48) var(--s-16);
}

.page-content__title {
  font-size: var(--f-size-xl);
  font-weight: var(--f-weight-bold);
  text-align: center;
  margin-bottom: var(--s-32);
}

.page-content p {
  color: var(--c-text-light);
  line-height: 1.8;
  margin-bottom: var(--s-16);
}

.page-content h2 {
  font-size: var(--f-size-lg);
  font-weight: var(--f-weight-semibold);
  margin: var(--s-32) 0 var(--s-16);
}

.page-content h3 {
  font-size: var(--f-size-md);
  font-weight: var(--f-weight-semibold);
  margin: var(--s-24) 0 var(--s-12);
}

.page-content ul {
  margin: var(--s-16) 0;
  padding-left: var(--s-24);
}

.page-content li {
  list-style: disc;
  color: var(--c-text-light);
  line-height: 1.8;
  margin-bottom: var(--s-4);
}

/* Cards de lojas */
.stores-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-24);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--s-16);
}

.store-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  padding: var(--s-24);
  border-radius: var(--radius-md);
}

.store-card__name {
  font-size: var(--f-size-md);
  font-weight: var(--f-weight-semibold);
  margin-bottom: var(--s-8);
}

.store-card__address {
  font-size: var(--f-size-sm);
  color: var(--c-text-light);
  line-height: 1.6;
  margin-bottom: var(--s-12);
}

.store-card__phone {
  font-size: var(--f-size-sm);
  font-weight: var(--f-weight-medium);
}

.store-card__link {
  display: inline-block;
  margin-top: var(--s-12);
  font-size: var(--f-size-sm);
  font-weight: var(--f-weight-semibold);
  text-transform: uppercase;
  border-bottom: 1px solid var(--c-text);
}
