/* ================================================================
   FISCUM — Layout
   Container, sections, grid utilities, texturas e reveal animation.
   ================================================================ */

/* ===== Container ===== */
.c {
  max-width: var(--w);
  margin: 0 auto;
  width: 100%;
  padding: 0 56px;
}

/* ===== Sections ===== */
.sec {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.sec.bg-g {
  background: var(--g1);
}

.sec.bg-dark {
  background: var(--black);
  color: rgba(255, 255, 255, .55);
}

/* ===== Section headers ===== */
.sec-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #0055D4; /* WCAG AA — ratio ≥4.8:1 sobre #FFF e #F5F5F5 */
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sec-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: #0055D4;
}

.sec-h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.05;
}

.sec-h2 em {
  font-style: italic;
  font-family: var(--serif);
  color: var(--blue);
}

.sec-p {
  font-size: 16px;
  font-weight: 300;
  color: var(--g5);
  line-height: 1.8;
  max-width: 540px;
  margin-top: 12px;
}

/* Section header — dark variant */
.sec.bg-dark .sec-eyebrow {
  color: rgba(204, 224, 255, .7);
}

.sec.bg-dark .sec-eyebrow::before {
  background: rgba(204, 224, 255, .5);
}

.sec.bg-dark .sec-h2 {
  color: #fff;
}

.sec.bg-dark .sec-h2 em {
  color: var(--blue3);
}

.sec.bg-dark .sec-p {
  color: rgba(255, 255, 255, .5);
}

/* Section header — centered */
.sec-header-center .sec-eyebrow {
  justify-content: center;
}

.sec-header-center .sec-eyebrow::before {
  display: none;
}

.sec-header-center .sec-p {
  margin: 12px auto 0;
}

/* ===== Texturas decorativas (removidas — padrão limpo) ===== */
.tex-dots,
.tex-grid,
.tex-diag {
  background-image: none;
}

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s, transform .55s cubic-bezier(.22, 1, .36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== Responsive — 1024px ===== */
@media (max-width: 1024px) {
  /* Utility overrides handled per component */
}

/* ===== Responsive — 768px ===== */
@media (max-width: 768px) {
  .c {
    padding: 0 24px;
  }
}
