.import-content {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.import-column {
  max-width: 440px;
  width: 100%;
}

.import-column h2 {
  font-size: 26px;
  font-weight: 400;
  color: #1f2933;
  margin-bottom: 8px;
}

.import-subtitulo {
  color: #6b7280;
  margin-bottom: 24px;
}

.import-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drop-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 2px dashed #9aa3af;
  border-radius: 10px;
  padding: 40px 20px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.drop-zone:hover,
.drop-zone.dragging {
  border-color: #1a4fd6;
  background: #f0f4ff;
}

.drop-zone.has-file {
  border-color: #2f9e44;
  background: #f1faf3;
}

.drop-icon {
  font-size: 34px;
}

.drop-text {
  font-weight: 600;
  color: #1f2933;
}

.drop-hint {
  font-size: 13px;
  color: #9aa3af;
}

.file-info {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  background: #eef2f7;
  border-radius: 6px;
  padding: 10px 14px;
}

.file-name {
  font-weight: 600;
  color: #1f2933;
  word-break: break-all;
}

.file-remove {
  border: none;
  background: none;
  color: #9aa3af;
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
}

.file-remove:hover {
  color: #d6336c;
}

.file-error {
  color: #d6336c;
  font-size: 14px;
}

.btn-importar {
  align-self: center;
  background: #1a4fd6;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, opacity 0.15s ease;
}

.btn-importar:disabled {
  background: #b7c3e0;
  cursor: not-allowed;
}

.btn-importar:not(:disabled):hover {
  background: #143fac;
}
