/* ══ MODAIS ══ */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,20,30,.45); z-index: 900; align-items: center; justify-content: center; backdrop-filter: blur(4px); padding: 16px; }
.modal-overlay.open { display: flex; }
.modal { background: var(--white); border-radius: var(--r); padding: 26px 24px; width: 100%; max-width: 500px; box-shadow: var(--shadow-lg); animation: modalIn .22s ease; max-height: 92vh; overflow-y: auto; }
.modal-wide { max-width: 640px; }
@keyframes modalIn { from{opacity:0;transform:scale(.95)translateY(8px)} to{opacity:1;transform:scale(1)translateY(0)} }
.modal h3 { font-family: 'Poppins', sans-serif; font-size: 1.2rem; color: var(--text); margin-bottom: 20px; font-weight: 600; }
.modal-footer { display: flex; gap: 10px; justify-content: flex-end; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--warm2); }
