/*
 * export-modal.css - Export Modal Component
 * ===========================================
 * PORQUE: O modal de exportacao tinha CSS inline via style.cssText
 * no App.js. Extraido para CSS dedicado, consistente com o sistema
 * de tokens e a arquitetura CSS do projeto.
 */

.export-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.2s ease both;
}

.export-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 32px;
  max-width: 360px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: springIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.export-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.export-subtitle {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 20px;
}

.export-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.export-option {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.export-option:hover {
  border-color: var(--red-dim);
  background: var(--red-glow);
  transform: translateY(-1px);
}

.export-option--pdf {
  background: rgba(203, 51, 59, 0.08);
}

.export-option--sheets {
  background: rgba(34, 197, 94, 0.06);
}

.export-option--txt {
  background: transparent;
  color: var(--muted);
}

.export-option__icon {
  font-size: 18px;
}

.export-hint {
  font-size: 10px;
  color: var(--muted);
  margin-top: 14px;
  opacity: 0.6;
}
