/* ============================================================
   PREMIUM LAYOUT — Estruturas Globais
============================================================ */

/* ------------------------------------------------------------
   CONTAINERS PRINCIPAIS
------------------------------------------------------------ */
.premium-wrapper {
  width: 100%;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.premium-narrow {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

/* ------------------------------------------------------------
   FOOTER BASE (usado junto com premium-footer)
------------------------------------------------------------ */
.premium-footer {
  background: var(--color-bg-soft);
  border-top: 1px solid var(--color-border);
  padding: var(--space-8) 16px var(--space-6);
  margin-top: var(--space-12);
}

.premium-footer-inner {
  max-width: var(--content-wide);
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.premium-footer h4 {
  font-size: 1.05rem;
  margin-bottom: var(--space-3);
}

.premium-footer a {
  display: block;
  color: var(--color-text-light);
  padding: 4px 0;
}

.premium-footer a:hover {
  color: var(--color-primary);
}

.premium-footer .footer-about p {
  color: #444;
  margin-bottom: var(--space-3);
}

.premium-footer-bottom {
  text-align: center;
  padding-top: var(--space-6);
  margin-top: var(--space-6);
  border-top: 1px solid var(--color-border);
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 768px) {
  .premium-footer-inner {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------
   BLOCO GLOBAL DE SEÇÕES
------------------------------------------------------------ */
.premium-section {
  margin-top: var(--space-12);
  margin-bottom: var(--space-12);
}

.premium-section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: var(--space-6);
}

/* ------------------------------------------------------------
   ALINHAMENTO GLOBAL
------------------------------------------------------------ */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

/* Espaçamentos utilitários */
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }

.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

/* ------------------------------------------------------------
   SEÇÕES PADRÃO DAS PÁGINAS
------------------------------------------------------------ */
.premium-page-header {
  text-align: center;
  padding-top: var(--space-8);
  padding-bottom: var(--space-6);
}

.premium-page-header h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-text);
}

.premium-page-container {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
  padding-bottom: var(--space-12);
}

/* ------------------------------------------------------------
   LINHA DIVISÓRIA SUAVE
------------------------------------------------------------ */
.divider {
  border-bottom: 1px solid var(--color-border);
  margin: var(--space-6) 0;
}
