/* === CONFIGS GERAIS === */
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    box-sizing: border-box;
}

body,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Fira Sans Condensed", serif;
}

body {
    overflow-x: hidden;
}

/* Estilos para o SweetAlert2 */
.swal-wide {
  width: 500px !important;
  padding: 2rem !important;
}

.swal-title {
  font-size: 24px !important;
  color: #1a237e !important;
  margin-bottom: 1rem !important;
}

.swal-button {
  font-size: 16px !important;
  padding: 12px 24px !important;
  border-radius: 4px !important;
}

/* Animação do SweetAlert2 */
.swal2-popup {
  animation: swal2-show 0.3s !important;
}

.swal2-icon {
  margin: 1.5rem auto !important;
}

.swal2-title {
  font-family: 'Poppins', sans-serif !important;
}

.swal2-html-container {
  font-size: 16px !important;
  line-height: 1.5 !important;
  margin: 1rem 0 !important;
}




