/* ===== OPERAÇÃO SEGURA ===== */
.operacao-section { background: var(--light); padding: 96px 0; }
.operacao-section .section-label { color: var(--text-muted); }
.operacao-section h2 { font-family: var(--font-serif); font-size: clamp(28px, 3vw, 40px); font-weight: 500; color: var(--dark); margin-bottom: 48px; line-height: 1.2; }

.operacao-list { list-style: none; }
.operacao-item { display: flex; align-items: baseline; gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--light-2); }
.operacao-item:first-child { border-top: 1px solid var(--light-2); }
.operacao-num { font-family: var(--font-serif); font-size: 28px; font-weight: 600; color: var(--gold); flex-shrink: 0; width: 48px; line-height: 1; }
.operacao-text { font-size: 16px; color: var(--dark); line-height: 1.5; }
.operacao-text strong { font-weight: 600; }
.operacao-text em { font-style: normal; color: var(--teal); font-weight: 500; }

/* ===== IMAGENS ===== */
.images-section { background: var(--light-2); padding: 0; }
.images-grid { display: grid; grid-template-columns: 1fr 1fr; }
.image-block { aspect-ratio: 3/2; background: var(--light); display: flex; align-items: flex-end; justify-content: center; padding-bottom: 20px; overflow: hidden; }
.image-block:nth-child(2) { background: var(--light-2); }
.image-label { font-size: 11px; color: var(--text-muted); }

/* ===== ALERTA ===== */
.alerta-section { background: var(--dark-2); padding: 80px 0; text-align: center; }
.alerta-section p { font-size: 17px; color: rgba(255,255,255,0.6); max-width: 640px; margin: 0 auto 32px; line-height: 1.75; }
.alerta-section h2 { font-family: var(--font-serif); font-size: clamp(24px, 3vw, 36px); font-style: italic; color: var(--teal); max-width: 560px; margin: 0 auto; line-height: 1.25; }

/* ===== RESPONSIVE (page-specific) ===== */
@media (max-width: 900px) {
  .images-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .operacao-section { padding: 64px 0; }
}
