/* Dalié — páginas institucionais (sobre, trocas, frete) */

body {
  margin: 0;
  font-family: 'Jost', system-ui, -apple-system, sans-serif;
  background: var(--bg, #faf8f5);
  color: var(--text, #1a1a1a);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}

.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  border-bottom: 1px solid var(--border, #e6e2dc);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}
.page-header a.page-back {
  text-decoration: none;
  color: var(--text, #1a1a1a);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.65;
}
.page-header a.page-back:hover { opacity: 1; }
.page-header .page-logo {
  height: 44px;
  width: auto;
  color: var(--text, #1a1a1a);
}

.page-shell {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 28px 80px;
}

.page-shell h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(28px, 5vw, 40px);
  letter-spacing: 0.01em;
  margin: 0 0 8px;
}

.page-lead {
  font-size: 16px;
  color: var(--text-muted, #666);
  margin: 0 0 36px;
  font-style: italic;
  border-left: 2px solid var(--text, #1a1a1a);
  padding-left: 14px;
}

.page-shell h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 22px;
  margin: 40px 0 12px;
}

.page-shell h3 {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 28px 0 8px;
  color: var(--text-muted, #555);
}

.page-shell p {
  margin: 0 0 16px;
  font-size: 15.5px;
}

.page-shell ul, .page-shell ol {
  padding-left: 22px;
  margin: 0 0 18px;
}
.page-shell li { margin-bottom: 6px; font-size: 15.5px; }

.page-shell strong { font-weight: 500; }

.callout {
  background: #fff;
  border: 1px solid var(--border, #e6e2dc);
  border-left: 3px solid var(--text, #1a1a1a);
  padding: 18px 22px;
  border-radius: 4px;
  margin: 28px 0;
}
.callout p:last-child { margin-bottom: 0; }

.contact-card {
  background: #fff;
  border: 1px solid var(--border, #e6e2dc);
  border-radius: 6px;
  padding: 22px 26px;
  margin-top: 36px;
}
.contact-card h3 { margin-top: 0; }
.contact-card a {
  color: var(--text, #1a1a1a);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.contact-card a:hover { opacity: 0.7; }

table.shipping-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14.5px;
}
table.shipping-table th,
table.shipping-table td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border, #e6e2dc);
}
table.shipping-table th {
  background: #f6f3ee;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--text-muted, #555);
}

.page-footer {
  text-align: center;
  padding: 28px;
  border-top: 1px solid var(--border, #e6e2dc);
  font-size: 12px;
  color: var(--text-muted, #888);
  letter-spacing: 0.04em;
}
.page-footer a {
  color: inherit;
  margin: 0 8px;
  text-decoration: none;
  opacity: 0.7;
}
.page-footer a:hover { opacity: 1; }
