@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Oxanium:wght@200;300;400;500;600;700;800&display=swap");
:root {
  --primary_font: "Oxanium", Helvetica, Arial, Lucida, sans-serif;
  --secondary_font: "Lato", Helvetica, Arial, Lucida, sans-serif;
  --base_color: #f1f1f1;
  --light_color: rgba(255, 255, 255, 0.5);
  --standard_color: #009a93;
  --dark_color: #003c5c;
  --back_color: rgba(198, 198, 198, 0.4);
  --box_color: rgba(0, 60, 92, 25%);
  --box_graph_color: rgba(0, 60, 92, 35%);
  --value-donut: #009a93;
  --fill-donut: rgba(255, 255, 255, 0.5);
  --tooltip-text: yellow;
  --tooltip-baloon: green;
}

* {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

body {
  background: rgb(255, 255, 255);
  background: linear-gradient(152deg, rgb(255, 255, 255) 21%, rgba(0, 60, 92, 0.2049194678) 89%);
  font-family: var(--secondary_font);
  color: var(--dark_color);
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
  cursor: default;
}

body h1 {
  font-family: var(--primary_font);
  margin: 1rem 0 1rem;
}

/* Logo */
#logo {
  position: fixed;
  top: 1rem;
  right: 1rem;
  display: block;
  margin: auto;
  width: 6rem;
  height: auto;
  z-index: 10;
}

hr {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 5px;
}

/* Fundos Telas Iniciais */
body:has(.tela-login, .tela-recuperacao, .tela-cadastro) {
  position: relative;
  overflow-y: hidden;
}

body:has(.tela-login, .tela-recuperacao, .tela-cadastro, .mudarEmail, .mudarSenha, .paginaSuporte)::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("_images/fundo.jpeg") no-repeat center center fixed;
  background-size: cover;
  background-position: center;
  filter: blur(5px);
  z-index: -1;
}

body:has(.tela-login, .tela-recuperacao, .tela-cadastro)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 60, 92, 0.5);
  -webkit-clip-path: polygon(0 100%, 0 90%, 70% 0, 100% 0, 100% 100%);
          clip-path: polygon(0 100%, 0 90%, 70% 0, 100% 0, 100% 100%);
  z-index: -1;
}

/* ============ */
/* == Graphs == */
/* ============ */
/* DONUT GRAPH */
#NPSGraph .ct-chart-donut .ct-series-a .ct-slice-donut {
  stroke: var(--value-donut);
}

#NPSGraph .ct-chart-donut .ct-fill-donut .ct-slice-donut {
  stroke: var(--fill-donut);
  opacity: 1;
}

/* BAR GRAPHS */
.graphs {
  /* Chartist plugin for TOOLTIP by Markus Padourek in https://github.com/tmmdata/chartist-plugin-tooltip */
  position: relative;
}
.graphs .ct-line {
  fill: var(--dark_color);
}
.graphs .ct-label {
  color: var(--dark_color);
}

.graphs .chartist-tooltip {
  background: var(--tooltip-baloon);
  font-family: var(--secondary-font);
  font-weight: 700;
  color: var(--tooltip-text);
  text-align: center;
  position: absolute;
  display: inline-block;
  z-index: 1;
  min-width: 5em;
  padding: 0.5em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s linear;
}

.graphs .chartist-tooltip:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top-color: var(--tooltip-baloon);
}

.graphs .chartist-tooltip.tooltip-show {
  opacity: 1;
}

.graphs .ct-area,
.graphs .ct-line {
  pointer-events: none;
}

.graphs .ct-series-a .ct-bar,
.graphs .ct-series-a .ct-line,
.graphs .ct-series-a .ct-point,
.graphs .ct-series-a .ct-slice-donut {
  stroke: #aabbcc;
}

.graphs .ct-series-b .ct-bar,
.graphs .ct-series-b .ct-line,
.graphs .ct-series-b .ct-point,
.graphs .ct-series-b .ct-slice-donut {
  stroke: #ccaa44;
}

.graphs .ct-series-c .ct-bar,
.graphs .ct-series-c .ct-line,
.graphs .ct-series-c .ct-point,
.graphs .ct-series-c .ct-slice-donut {
  stroke: #ddff33;
}

.graphs .ct-series-d .ct-bar,
.graphs .ct-series-d .ct-line,
.graphs .ct-series-d .ct-point,
.graphs .ct-series-d .ct-slice-donut {
  stroke: #3344ff;
}

.graphs .ct-series-e .ct-bar,
.graphs .ct-series-e .ct-line,
.graphs .ct-series-e .ct-point,
.graphs .ct-series-e .ct-slice-donut {
  stroke: #bbbbbb;
}

.graphs .ct-series-f .ct-bar,
.graphs .ct-series-f .ct-line,
.graphs .ct-series-f .ct-point,
.graphs .ct-series-f .ct-slice-donut {
  stroke: #bbbbbb;
}

.graphs .ct-series-g .ct-bar,
.graphs .ct-series-g .ct-line,
.graphs .ct-series-g .ct-point,
.graphs .ct-series-g .ct-slice-donut {
  stroke: #bbbbbb;
}

/* ============= */
/* === PAGES === */
/* ============= */
/* Header */
header {
  font-family: var(--primary_font);
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 5rem;
  padding: 2% 6%;
  border-bottom: 4px solid var(--dark_color);
}

header li {
  margin: 1px 0;
}

header h1 {
  display: flex;
  align-items: center;
}

header h1 span {
  font-size: 2.4rem;
  line-height: 2.2rem;
  margin-left: 2rem;
}

header a {
  color: var(--standard_color);
  text-decoration: none;
  padding: 5px 5px 3px;
  cursor: pointer;
}

header a:hover {
  background-color: var(--back_color);
  border-radius: 4px;
  transition: 0.6s;
}

header #conta {
  text-align: end;
  position: relative;
  display: inline-block;
  margin-left: 8px;
  list-style-type: none;
}

header #conta #contaOptions {
  background-color: #f9f9f9;
  display: none;
  position: absolute;
  left: -100%;
  z-index: 1;
  min-width: 160px;
  padding: 12px 16px;
  border-radius: 4px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

header #conta:hover #contaOptions {
  display: block;
}

/* Main */
main {
  min-width: 80vw;
  padding: 0 6% 0;
}

main hr {
  margin-bottom: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

main section {
  background-color: var(--base_back_color);
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 100px;
  padding: 0.6rem 1.5rem 0.4rem;
  margin: 0.6rem 1.4rem 0.6rem 0;
  border-radius: 4px;
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.16);
}

main section form {
  all: revert;
}

/* Gráficos */
/* Estes textos servem para dar informações sobre os valores dos gráficos */
.infoGrafico {
  display: flex;
  margin: 0;
  padding: 0;
  color: var(--dark_color);
}

#infoGrafico-Meses {
  justify-self: center;
}

footer {
  visibility: hidden;
}

/* Tabelas */
table {
  font-size: 1rem;
  font-family: var(--secondary-font);
  color: var(--dark_color);
  margin: 1.5rem auto;
  width: 100%;
  max-width: 1024px;
  border-collapse: collapse;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
}

table thead tr {
  background-color: var(--standard_color);
  color: #ffffff;
  text-align: left;
}

table thead tr th:first-of-type {
  border-radius: 15px 0 0 0;
}

table thead tr th:last-of-type {
  border-radius: 0 15px 0 0;
}

table thead tr th:only-child {
  border-radius: 15px 15px 0 0;
}

table th,
table td {
  padding: 12px 15px;
}

table tbody tr {
  border-bottom: 1px solid #dddddd;
}

table tbody tr:nth-of-type(even) {
  background-color: rgba(255, 255, 255, 0.5);
}

table tbody tr:last-of-type {
  border-radius: 0 0 15px 15px;
}

/* Painel Principal */
.painelPrincipal, .paginaEnviarNumeros {
  background-color: var(--box_color);
  border-radius: 15px;
}

.ferramentasMobile, .ferramentasDesktop {
  background-color: var(--dark_color);
}

/* Disparos */
#sectionCards {
  display: flex;
}

#sectionCards #squares {
  display: flex;
  flex-direction: column;
}

#sectionCards #squares section {
  background-color: var(--base_color);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  width: 120px;
  height: 80px;
  padding: 15px;
}

#sectionCards .grafico {
  width: 100%;
}

#sectionCards h2 {
  font-family: var(--primary_font);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

/* Dados das Pesquisas */
#sectionIGF {
  margin: 1rem auto;
}

#sectionIGF section {
  background-color: var(--base_color);
  text-align: center;
  margin: 1rem;
}
#sectionIGF section form {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: space-between;
}
#sectionIGF section form .btn {
  width: 1.5rem;
  height: 2rem;
}
#sectionIGF section form #de0, #sectionIGF section form #para0 {
  font-size: medium;
}
#sectionIGF section #disparosGraph {
  margin-top: 5rem;
  margin-bottom: 0;
  width: 100%;
}

#sectionIGF section h2,
#sectionIGF section h3 {
  font-family: var(--primary_font);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1rem 0 0.5rem;
}

#sectionIGF section h3 {
  font-size: 1rem;
}

/* Questão 2, Questão 3 */
#sectionTable section {
  background-color: var(--dark_color);
}

#sectionTable section #scoreCommentTable {
  text-align: center;
  margin: 1rem 0 1.2rem;
}

#sectionTable section #scoreCommentTable .btn {
  background-color: #ffffff;
  color: var(--standard_color);
}

#sectionTable section #scoreCommentTable .btn:focus {
  color: var(--dark_color);
  box-shadow: 0px 5px 0px 0px rgba(0, 60, 92, 0.52);
}

#sectionTable h2,
#sectionTable h3 {
  font-family: var(--primary_font);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1rem 0 0.5rem;
}

#sectionTable h3 {
  font-size: 1rem;
}

#sectionTable .gridjs-container .gridjs-search-input {
  width: 100%;
  border-radius: 100px;
  font-size: 14px;
  font-family: "Lato", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 700;
  padding: 12px 36px;
  line-height: 1.7em;
}

#sectionTable .gridjs-container .gridjs-summary {
  margin-left: 12px;
}

#sectionTable .gridjs-container .gridjs-pages button {
  color: #ffffff;
  border-width: 5px;
  border-color: #009a93;
  border-radius: 100px;
  font-size: 14px;
  font-family: "Lato", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #009a93;
  cursor: pointer;
  text-shadow: 0em 0.08em 0em rgba(0, 0, 0, 0);
  box-shadow: 0px 5px 0px 0px rgba(0, 154, 147, 0.52);
  text-decoration: none;
  padding: 5px 15px;
  margin: 5px 5px 15px;
  line-height: 1.7em;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  border: 0;
  line-height: 1em;
}

/* NPS Score Range */
#sectionShotsForm {
  display: flex;
  margin-bottom: 2rem;
}

#sectionShotsForm .grafico {
  width: 100%;
}

#sectionShotsForm h2 {
  font-family: var(--primary_font);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

#sectionShotsForm button {
  position: relative;
  float: right;
  right: 55%;
}

/* Botão Padrão */
.btn {
  /* Alinhamento ao centro */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  border-width: 5px;
  border-color: #009a93;
  border-radius: 100px;
  font-size: 14px;
  font-family: "Lato", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #009a93;
  cursor: pointer;
  text-shadow: 0em 0.08em 0em rgba(0, 0, 0, 0);
  box-shadow: 0px 5px 0px 0px rgba(0, 154, 147, 0.52);
  text-decoration: none;
  padding: 12px 36px;
  margin: 5px;
  line-height: 1.7em;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  border: 0;
  line-height: 1em;
}

/* ============ */
/* == FOOTER == */
/* ============ */
footer {
  background-color: rgba(255, 255, 255, 0.3);
  font-size: 0.6rem;
  text-align: center;
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  margin: 1rem 0 0;
  padding: 4px 0;
} 
/* FORMS */
/* FORMS GRID */
form {
  background-color: var(--base_color);
  justify-content: center;
  text-align: center;
  display: grid;
  grid-template-columns: 5rem 10rem 5rem;
  place-items: center;
  min-width: 100px;
  min-height: 200px;
  margin: 5rem 0 2rem;
  padding: 0.5rem 0 0.5rem;
  border-radius: 15px;
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.16);
  white-space: nowrap;
}

form label {
  text-align: start;
  font-family: var(--primary_font);
  font-weight: 500;
  cursor: pointer;
}

form input[type=radio] {
  cursor: pointer;
}

form div {
  text-align: start;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 80%;
  height: 15px;
  margin: 1rem;
}

form div input {
  background: none;
  padding: 4px 5px;
  width: 20vw;
  border: none;
  border-bottom: 2px solid rgba(198, 198, 198, 0.4);
}

form .header {
  justify-content: space-between;
  margin: 0.5rem;
}

form .header h2 {
  font-family: var(--primary_font);
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--dark_color);
}

form .shelf {
  align-items: initial;
  margin: 0;
  padding: 0;
}

form .shelf label {
  padding: 1rem 0;
}

.esqueceu {
  margin-bottom: 12px;
  grid-column: 1/4;
  grid-row: 6;
}

.sem-cadastro {
  grid-column: 1/4;
  grid-row: 7;
}

.underForm {
  margin-top: 6px;
  padding: 5px 15px 5px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.underForm a {
  color: #009a93;
  text-decoration: none;
}

.underForm:hover {
  transition: 0.6s;
  background-color: rgba(198, 198, 198, 0.4);
  border-radius: 4px;
}

.underForm:last-of-type {
  margin-bottom: 25px;
}

#out {
  margin-top: 1.5rem;
}

.title {
  font-family: var(--primary_font);
  font-size: 2rem;
  font-weight: 600;
  margin: 1rem 0 0.5rem;
}

.title + .title {
  font-size: 1rem;
}

/* Estilização das telas individuais */
/*Tela de Login */
.tela-login {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-right: 7vw;
}
.tela-login #logo-aplicacao-mobile {
  display: none;
}
.tela-login #logo-aplicacao-desktop {
  width: auto;
  height: 10rem;
  margin: 1rem 0;
}
.tela-login h1 {
  color: #fff;
  align-items: center;
  text-align: center;
}
.tela-login h2 {
  color: #fff;
  text-align: center;
}
.tela-login form {
  margin-top: 1rem;
}
.tela-login form label {
  flex: 2;
  width: 100px;
  text-align: start;
  margin-right: 1rem;
  padding-left: 1rem;
}
.tela-login form .btn {
  display: block;
  margin: 1rem auto;
}
.tela-login .botao {
  grid-column: 2/3;
  grid-row: 5;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}
.tela-login .login-label {
  grid-column: 1/2;
  grid-row: 1;
}
.tela-login .login-input {
  grid-column: 1/4;
  grid-row: 2;
}
.tela-login .senha-label {
  grid-column: 1/2;
  grid-row: 3;
}
.tela-login .senha-input {
  grid-column: 1/4;
  grid-row: 4;
}
.tela-login p {
  margin: 1rem auto 0;
}

/*Tela de Recuperação de Senha */
.tela-recuperacao {
  margin: auto;
  margin-right: 7vw;
  margin-top: 5rem;
}
.tela-recuperacao h1 {
  color: #fff;
  align-items: center;
  text-align: center;
}
.tela-recuperacao h2 {
  color: #fff;
  text-align: center;
}
.tela-recuperacao form {
  grid-template-columns: 10rem 10rem;
  padding-right: 1rem;
}
.tela-recuperacao form label {
  flex: 2;
  width: 100px;
  text-align: start;
  margin-right: 1rem;
  padding-left: 1rem;
}
.tela-recuperacao form .btn {
  display: block;
  margin: 1rem auto;
}
.tela-recuperacao .email-label {
  grid-column: 1/3;
  grid-row: 1;
}
.tela-recuperacao .email-input {
  grid-column: 1/3;
  grid-row: 2;
}
.tela-recuperacao .botao-voltar {
  padding: 2rem 0;
  grid-row: 3;
}
.tela-recuperacao .botao-recuperar {
  padding: 2rem 0;
  grid-row: 3;
}
.tela-recuperacao p {
  margin: 1rem auto 0;
}

/*Tela de Cadastrar Empresa */

.tela-cadastro {
  margin: auto;
  margin-right: 3vw;
}
.tela-cadastro h1 {
  color: #fff;
  align-items: center;
  text-align: center;
}
.tela-cadastro h2 {
  color: #fff;
  text-align: center;
}
.tela-cadastro form {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 40rem;
  margin-top: 2rem;
  padding-bottom: 2rem;
}

.tela-cadastro form .nome, .empresa, .cnpj, .email, .senha, .confirmacao{
  width: 40%;
  display: flex;
  flex-direction: column;
  margin: 1.5rem auto;
  padding: 1rem;
  align-items: start;
}
.tela-cadastro form div input{
  width: 100%;
}

.tela-cadastro form div label {
  text-align: start;
}


.tela-cadastro .recaptcha {
  align-self: flex-end;
  width: 100%;
  height: 4rem;
  padding: 1rem;
}

.tela-cadastro .botoes {
  display: flex;
  justify-content: space-between;
}

.tela-cadastro .botoes .btn{
  width: 10rem;
}

@media (min-width: 769px) {
  /* Removendo o fundo das páginas desktop */
  body:has(.mudarSenha, .mudarEmail, .paginaSuporte)::before {
    background-image: none;
    background: var(--base_color);
  }
  body:has(.painelPrincipal, .paginaEnviarNumeros, .mudarSenha, .mudarEmail, .paginaSuporte, .telaPagamentos) {
    width: 100%;
    overflow-x: hidden;
  }
  body:has(.painelPrincipal, .paginaEnviarNumeros, .mudarSenha, .mudarEmail, .paginaSuporte, .telaPagamentos) header {
    display: flex;
    justify-content: space-between;
    background: rgb(0, 60, 92);
    position: fixed;
    z-index: 10;
  }
  body:has(.painelPrincipal, .paginaEnviarNumeros, .mudarSenha, .mudarEmail, .paginaSuporte, .telaPagamentos) header a {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  body:has(.painelPrincipal, .paginaEnviarNumeros, .mudarSenha, .mudarEmail, .paginaSuporte, .telaPagamentos) header h1 {
    color: var(--base_color);
  }
  body:has(.painelPrincipal, .paginaEnviarNumeros, .mudarSenha, .mudarEmail, .paginaSuporte, .telaPagamentos) header #logo {
    align-self: center;
    position: static;
    width: auto;
    height: 5rem;
    margin: 0 auto;
    box-shadow: none;
    background: none;
  }
  body:has(.painelPrincipal, .paginaEnviarNumeros, .mudarSenha, .mudarEmail, .paginaSuporte, .telaPagamentos) header .btn {
    background: none;
    box-shadow: none;
    font-size: large;
    color: #0a8680;
  }
  /* Barra de Ferramentas */
  .ferramentasMobile, .menuUsuarioMobile {
    display: none;
  }
  .ferramentasDesktop {
    position: fixed;
    margin: 6rem 1rem;
    top: 0;
    left: 0;
    width: 17vw;
    height: 80vh;
    border-radius: 30px;
    background-color: var(--dark_color);
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.3);
  }
  .ferramentasDesktop .iconeFerramentas img {
    width: 40px;
    height: 40px;
  }
  .ferramentasDesktop #itemMenu {
    display: flex;
    margin: 2rem;
  }
  .ferramentasDesktop #itemMenu a {
    display: flex;
    text-decoration: none;
  }
  .ferramentasDesktop #itemMenu h2 {
    color: var(--base_color);
    text-align: center;
    margin: 0.5rem 2rem;
    font-size: 1.5vw;
  }
  .ferramentasDesktop #opcoesUsuario {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    justify-content: space-between;
    padding: 1rem;
    background-color: var(--dark_color);
    border-top: #002235 solid 5px;
    border-radius: 0 0 30px 30px;
  }
  .ferramentasDesktop #opcoesUsuario h2 {
    margin-top: 0.5rem;
    color: var(--base_color);
    text-align: center;
  }
  .ferramentasDesktop .menuUsuarioDesktop {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    background: #002235;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 3;
    animation: fadeIn 0.5s ease;
  }
  .ferramentasDesktop .menuUsuarioDesktop ul {
    list-style: none;
    margin: 0;
    padding: 10px;
  }
  .ferramentasDesktop .menuUsuarioDesktop ul li {
    margin: 10px 0;
  }
  .ferramentasDesktop .menuUsuarioDesktop ul li a {
    text-decoration: none;
    color: var(--base_color);
    font-weight: bold;
    display: block;
    transition: background-color 0.2s ease;
    cursor: pointer;
  }
  .ferramentasDesktop .menuUsuarioDesktop ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  @keyframes fadeIn {
    from {
      transform: translateY(5px);
    }
    to {
      transform: translateY(0);
    }
  }
  .overlay {
    display: none;
  }
  /* Dashboard Principal */
  .painelPrincipal {
    display: flex;
    position: relative;
    gap: 1rem;
    flex-wrap: wrap;
    width: 80%;
    margin: 6rem 1rem 1rem 17vw;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.3);
  }
  .painelPrincipal .title {
    position: relative;
    flex-basis: 100%;
    color: var(--dark_color);
    margin: 0.5rem 1rem 0 1rem;
  }
  .painelPrincipal #enviarNumeros {
    display: flex;
    position: absolute;
    top: 1.5rem;
    right: 0;
    border: none;
    background: none;
    padding: 0;
    margin: auto 2rem;
    cursor: pointer;
  }
  .painelPrincipal #enviarNumeros a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--dark_color);
    font-family: var(--primary_font);
    font-weight: bold;
    font-size: larger;
  }
  .painelPrincipal #enviarNumeros a .circulo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: var(--standard_color);
    border-radius: 50%;
  }
  .painelPrincipal #enviarNumeros a .circulo img {
    width: 30px;
    height: 30px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .painelPrincipal #sectionIGF {
    margin: 0 1rem;
    border-radius: 15px;
    display: flex;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
  .painelPrincipal #sectionIGF #donutIndicador {
    margin: 0;
    background-color: var(--base_color);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.3);
    width: 25%;
  }
  .painelPrincipal #sectionIGF #donutIndicador #fundoDonut {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
  }
  .painelPrincipal #sectionIGF #donutIndicador div {
    margin: 0 auto;
  }
  .painelPrincipal #sectionIGF #donutIndicador div h2 {
    font-size: 1.5rem;
    text-align: center;
  }
  .painelPrincipal #sectionIGF #donutIndicador #donutGraph{
    margin: 0 auto;
  }
  .painelPrincipal #sectionIGF{
    flex-grow: 1;
  }
  .painelPrincipal #sectionIGF .grafico {
    margin: 0;
    padding: 1rem;
    border-radius: 15px;
    background-color: var(--base_color);
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.3);
  }
  .painelPrincipal #sectionIGF .grafico h2, .painelPrincipal #sectionIGF .grafico form, .painelPrincipal #sectionIGF .grafico div {
    margin: 0;
  }
  .painelPrincipal #sectionIGF .grafico #igfGraficoForm {
    margin: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    height: 25%;
  }
  .painelPrincipal #sectionIGF .grafico #igfGraficoForm #filtrosEsquerda {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 40%;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
    border-right: 2px solid var(--dark_color);
    margin-right: 1rem;
  }
  .painelPrincipal #sectionIGF .grafico #igfGraficoForm #filtrosEsquerda p {
    flex-basis: 100%;
    font-weight: bold;
  }
  .painelPrincipal #sectionIGF .grafico #igfGraficoForm #filtrosEsquerda div {
    display: flex;
    justify-content: flex-start;
    margin-left: 2rem;
  }
  .painelPrincipal #sectionIGF .grafico #igfGraficoForm #filtrosEsquerda div input {
    width: -moz-fit-content;
    width: fit-content;
    margin-right: 1rem;
  }

  #sectionIGF .grafico #fundoGrafico #igfGraficoForm #filtrosEsquerda label {
    width: 100%;
    display: flex;
    justify-content: space-around;
  }

  #sectionIGF .grafico #fundoGrafico #igfGraficoForm #filtrosEsquerda label input{
    width: auto;
  }

  .painelPrincipal #sectionIGF .grafico #igfGraficoForm #filtrosDireita {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: 1rem;
    flex-grow: 1;
    height: 100%;
  }
  .painelPrincipal #sectionIGF .grafico #igfGraficoForm #filtrosDireita div {
    justify-content: flex-start;
  }
  .painelPrincipal #sectionIGF .grafico #igfGraficoForm #filtrosDireita p {
    flex-basis: 100%;
    font-weight: bold;
  }
  .painelPrincipal #sectionIGF .grafico #igfGraficoForm #filtrosDireita #filtroTempo {
    margin-left: 1rem;
    display: flex;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
  .painelPrincipal #sectionIGF .grafico #igfGraficoForm #filtrosDireita #filtroAtendente {
    display: flex;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    width: 60%;
  }
  .painelPrincipal #sectionIGF .grafico #igfGraficoForm #filtrosDireita #filtroAtendente select {
    text-align: right;
    width: 50%;
  }
  .painelPrincipal #sectionIGF .grafico #igfGraficoForm input {
    background-color: var(--base_color);
    border-bottom: var(--dark_color) 1px solid;
  }
  .painelPrincipal #sectionIGF .grafico #NPSRangeGraph {
    margin: 0;
  }
  .painelPrincipal #sectionIGF .grafico #infoGrafico-Pontos {
    margin-top: 2rem;
  }
  .painelPrincipal .botao-ativar-coment-nota, .painelPrincipal .botao-ativar-coment-final {
    background-color: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
  }
  .painelPrincipal .seta {
    transition: transform 0.3s ease;
  }
  .painelPrincipal .escondido {
    display: none;
  }
  .painelPrincipal #sectionTable {
    margin: 0 1rem;
    width: 100%;
    flex-grow: 1;
    border-radius: 15px;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.3);
  }
  .painelPrincipal #sectionTable #botaoAtivarComentNota, .painelPrincipal #sectionTable #botaoAtivarComentFinal {
    display: flex;
    justify-content: space-between;
    background-color: var(--base_color);
    border-radius: 15px 15px 0 0;
    width: 100%;
    padding: 0.5rem;
    color: var(--dark_color);
    font-family: var(--primary_font);
    font-weight: bold;
  }
  .painelPrincipal #sectionTable section {
    margin: 0;
    width: 100%;
    border-radius: 0 0 15px 15px;
    background-color: var(--base_color);
    box-shadow: none;
  }
  .painelPrincipal #sectionTable #scoreCommentTable {
    display: flex;
    justify-content: space-evenly;
  }



  .painelPrincipal #sectionCards {
    width: 100%;
  }
  .painelPrincipal #sectionCards #squares {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
  }
  .painelPrincipal #sectionCards #squares section {
    background-color: var(--base_color);
    width: 30%;
    height: auto;
    margin: 0 auto;
    text-align: center;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.3);
  }
  .painelPrincipal #sectionShotsForm {
    background-color: var(--base_color);
    border-radius: 15px;
    width: 100%;
    margin: 0 1rem 1rem 1rem;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.3);
  }
  .painelPrincipal #sectionShotsForm .grafico {
    width: 100%;
    margin: auto;
  }
  .painelPrincipal #sectionShotsForm .grafico form button {
    margin-right: auto;
    height: 2rem;
    width: 3rem;
  }
  .painelPrincipal #sectionShotsForm .grafico form input {
    background-color: var(--base_olor);
    border-bottom: var(--dark_color) 1px solid;
  }
  /* Página de Enviar e Visualizar Números */
  .paginaEnviarNumeros {
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    margin: 6rem 1rem 1rem 17vw;
    justify-content: flex-start;
    justify-items: baseline;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.3);
  }
  .paginaEnviarNumeros h1 {
    text-align: center;
    color: var(--dark_color);
    margin: 2rem auto;
    height: -moz-fit-content;
    height: fit-content;
  }
  .paginaEnviarNumeros #menuEnvio {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding: 1rem;
    margin-top: 0;
    margin-bottom: auto;
    flex-basis: 100%;
  }
  .paginaEnviarNumeros #menuEnvio .file-label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    color: var(--dark_color);
    border: none;
    border-radius: 5px;
    font-size: medium;
    font-weight: bold;
    gap: 10px;
    transition: background-color 0.3s ease;
    margin: 1rem;
  }
  .paginaEnviarNumeros #menuEnvio .file-label:hover {
    background-color: #015f5a;
  }
  .paginaEnviarNumeros #menuEnvio #icone-anexo {
    width: 30px;
    height: 30px;
  }
  .paginaEnviarNumeros #menuEnvio #out {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .paginaEnviarNumeros #menuEnvio #out #shootNumbersTable {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .paginaEnviarNumeros #menuEnvio #out #shootNumbersTable .card-numeros-disparo {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    color: var(--dark_color);
    background-color: var(--base_color);
    border-radius: 15px;
    min-width: 30%;
    word-break: break-word;
    padding: 0.5rem;
    margin: 1rem auto;
    justify-content: space-between;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.3);
  }
  .paginaEnviarNumeros #menuEnvio #out #shootNumbersTable .card-numeros-disparo p {
    font-weight: bold;
    margin: 1rem;
  }
  .paginaEnviarNumeros #menuEnvio #out .btn {
    margin: auto;
  }
  .paginaEnviarNumeros a {
    margin: 1rem auto;
  }
  .mudarSenha, .mudarEmail {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    height: 80vh;
    justify-content: center;
    align-items: center;
    margin: 6rem 1rem 1rem 10vw;
    background-color: var(--box_color);
    border-radius: 15px;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.3);
  }
  .mudarSenha h1, .mudarEmail h1 {
    text-align: center;
    color: var(--dark_color);
    flex-basis: 100%;
    margin: 1rem auto;
  }
  .mudarSenha form, .mudarEmail form {
    margin: 0 2rem 8rem 2rem;
    display: grid;
    grid-template-columns: 15rem 20rem;
    row-gap: 1rem;
    padding: 1rem;
    align-items: center;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.3);
  }
  .mudarSenha form div, .mudarEmail form div {
    text-align: left;
  }
  .mudarSenha form label, .mudarEmail form label {
    margin: 0 1rem;
    width: 100%;
  }
  .mudarSenha form input, .mudarEmail form input {
    width: 80%;
  }
  .mudarSenha form .btn, .mudarEmail form .btn {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 8rem;
  }
  .paginaSuporte {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    height: 80vh;
    justify-content: center;
    align-items: center;
    margin: 6rem 1rem 1rem 10vw;
    background-color: rgba(0, 60, 92, 0.25);
    border-radius: 15px;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.3);
  }
  .paginaSuporte h1 {
    text-align: center;
    color: var(--dark_color);
    flex-basis: 100%;
    margin: 2rem auto;
  }
  .paginaSuporte #form {
    margin: 0 2rem 5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 1rem;
    align-items: center;
    background-color: var(--base_color);
    box-shadow: 15px 15px 15px 0px rgba(0, 0, 0, 0.3);
  }
  .paginaSuporte #form div {
    display: flex;
    text-align: left;
    margin: 2rem auto;
  }
  .paginaSuporte #form label {
    margin: 0 1rem;
  }
  .paginaSuporte #form .btn {
    width: 10rem;
  }
  .paginaSuporte #form #suporteAssuntoLabel {
    grid-column: 1/2;
    grid-row: 1;
  }
  .paginaSuporte #form #suporteAssuntoInput {
    grid-column: 2/3;
    grid-row: 1;
  }
  .paginaSuporte #form #suporteMensagemLabel {
    grid-column: 1/3;
    grid-row: 2;
  }
  .paginaSuporte #form #suporteMensagemInput {
    grid-column: 1/3;
    grid-row: 3;
  }
  .paginaSuporte #form #suporteVoltar, .paginaSuporte #form #suporteEnviar {
    margin: 3rem 0 1rem 0;
  }
  .telaPagamentos {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 85%;
    height: 100%;
    justify-content: center;
    align-items: center;
    margin: 6rem 1rem 1rem 16vw;
    background-color: var(--box_color);
    border-radius: 15px;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.3);
  }
  .telaPagamentos h1 {
    text-align: center;
    color: var(--dark_color);
    flex-basis: 100%;
    margin: 1rem auto;
  }
  .telaPagamentos form {
    background: none;
    box-shadow: none;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: space-evenly;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .telaPagamentos form #section3{
    width: 30%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    background-color: var(--base_color);
    border-radius: 15px;
    align-items: center;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.3);
  }

  
  .telaPagamentos form .textoCardPagamento {
    margin: 1rem 0;
    color: var(--dark_color);
  }
  .telaPagamentos #btnVoltarPagamentos {
    margin: 0 0 1rem 0;
  }
  body:has(.telaPagamento) {
    background: var(--base_color);
  }
  .telaPagamento {
    width: 70%;
  }
  .telaPagamento h1 {
    text-align: center;
    margin: 2rem auto;
  }
  .telaPagamento .sectionTable {
    display: flex;
    margin: 1rem;
    font-size: large;
    border-radius: 15px;
  }
  .telaPagamento .sectionTable form {
    background-color: var(--box_color);
    margin: 1rem;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.3);
  }
  .telaPagamento .sectionTable form div {
    margin: 1rem auto;
  }
  .telaPagamento .sectionTable form div p {
    flex-basis: auto;
    word-wrap: break-word;
  }
  .telaPagamento .sectionTable form p {
    flex-basis: 100%;
  }
  .telaPagamento .sectionTable form .btn {
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 12rem;
    margin: 1rem auto;
  }

  .telaBoleto{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .telaBoleto section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    word-wrap: break-word;
    gap: 1rem;
  }

}
@media (max-width: 768px) {
  form {
    margin: 1rem 0 1rem;
    grid-template-columns: 8rem 5rem 8rem;
  }
  /* Tela Login Mobile */
  body:has(.tela-login) {
    background-position: 10%;
  }
  body:has(.tela-login, .tela-recuperacao, .tela-cadastro)::before {
    filter: blur(1px);
  }
  body:has(.tela-login)::after {
    background: var(--base_back_color);
  }
  .tela-login {
    margin: auto;
  }
  .tela-login #logo-aplicacao-desktop {
    display: none;
  }
  .tela-login #logo-aplicacao-mobile {
    display: flex;
    width: auto;
    height: 5rem;
    margin: 2rem auto;
  }
  .tela-login h1 {
    color: var(--dark_color);
  }
  .tela-login h2 {
    padding-top: 0;
    color: var(--dark_color);
  }
  .tela-login form {
    padding: 0;
    margin: 5px;
  }
  .tela-login form div {
    text-align: start;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 80%;
    height: 15px;
    margin: 1rem;
  }
  .tela-login form div input {
    padding: 4px 5px;
    width: 20rem;
    height: 2rem;
    border: none;
    border-bottom: 2px solid rgba(198, 198, 198, 0.4);
  }
  .tela-login .btn {
    height: 2.5rem;
    width: 6rem;
  }
  .tela-login .botao {
    grid-column: 1/4;
    padding-bottom: 1rem;
    padding-top: 2rem;
  }
  /* Tela Recuperação Mobile */
  body:has(.tela-recuperacao) {
    background-position: 10%;
  }
  body:has(.tela-recuperacao)::after {
    background: var(--base_back_color);
  }
  .tela-recuperacao {
    margin: auto;
  }
  .tela-recuperacao h1 {
    color: var(--dark_color);
  }
  .tela-recuperacao #logo {
    padding-top: 0rem;
  }
  .tela-recuperacao form {
    margin: 2rem 5rem;
    grid-template-columns: 10rem 10rem;
    padding: 1rem 0;
  }
  .tela-recuperacao form div input {
    padding: 4px 5px;
    width: 50rem;
    height: 2rem;
    border: none;
    border-bottom: 2px solid rgba(198, 198, 198, 0.4);
  }
  .tela-recuperacao .email-label {
    grid-column: 1/4;
    grid-row: 1;
  }
  .tela-recuperacao .email-input {
    grid-column: 1/3;
    grid-row: 2;
  }
  .tela-recuperacao .botao-voltar {
    padding-left: 0.5rem;
    grid-column: 1/2;
    grid-row: 3;
  }
  .tela-recuperacao .botao-recuperar {
    padding-right: 0.5rem;
    grid-column: 2/3;
    grid-row: 3;
  }
  .tela-recuperacao .botao-recuperar input {
    height: 40px;
  }
  .tela-recuperacao p {
    margin: 1rem auto 0;
  }
  /*Tela de Cadastrar Empresa Mobile*/
  body:has(.tela-cadastro) {
    background-position: 10%;
  }
  body:has(.tela-cadastro)::after {
    background: var(--base_back_color);
  }
  .tela-cadastro h1 {
    color: var(--dark_color);
  }
  .tela-cadastro h2 {
    color: #fff;
    text-align: center;
  }
  .tela-cadastro #logo {
    padding-top: 0rem;
  }
  .tela-cadastro form {
    flex-direction: column;
    justify-content: center;
    margin: auto;
    width: 80%;
  }
  .tela-cadastro .recaptcha{
    transform: scale(0.70);
    -webkit-transform: scale(0.70);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    margin: auto;
    margin-top: 1.5rem;
  }


  .tela-cadastro form .nome, .empresa, .cnpj, .email, .senha, .confirmacao{
    width: 100%;
    margin: 1.5rem 0;
    padding: 1rem;
  }

  .tela-cadastro .recaptcha{
    position: relative;
    align-items: center;
    align-self: center;
    justify-content: center;
    padding: 0;
    height: auto;
  }

  .tela-cadastro .botoes{
    width: 100%;
    margin: 1.5rem auto;
    padding: 0 1rem;
    justify-content: space-evenly;
  }

  .tela-cadastro .botoes .btn{
    text-align: center;
    width: 9rem;
  }
}
@media (min-width: 375px) and (max-width: 768px) {
  /* Removendo o fundo das páginas mobile */
  body:has(.mudarSenha, .mudarEmail, .paginaSuporte)::before {
    background-image: none;
    background: var(--base_color);
  }
  /* Textos Principais */
  h1 {
    text-shadow: 2px 2px 5px rgb(255, 255, 255);
  }
  h2 {
    text-shadow: 2px 2px 5px rgb(255, 255, 255);
  }
  /* Logo */
  #logo {
    top: auto;
    right: auto;
    padding: 0;
    margin: 1rem auto 1rem auto;
    position: relative;
  }
  /* Tela Recuperação Mobile */
  .tela-recuperacao form {
    margin: 2rem;
  }
  .tela-cadastro {
    margin: 2rem;
  }
  /* Dashboard Principal */
  html, body {
    width: 100%;
    overflow-x: hidden;
  }
  #enviarNumeros {
    display: none;
  }
  header {
    background: rgb(0, 60, 92);
  }
  header #logo {
    position: relative;
    padding: 0;
    margin: 0;
    box-shadow: none;
    background: none;
    width: 12rem;
    height: auto;
  }
  header h1 {
    text-align: center;
    font-size: 4vw;
    text-shadow: none;
    color: var(--base_color);
  }
  header .btn {
    width: 6rem;
    background: none;
    box-shadow: none;
    color: #0a8680;
  }
  .painelPrincipal {
    background: none;
  }
  .title {
    text-align: center;
  }
  #sectionIGF {
    display: flex;
    flex-wrap: wrap;
    border-radius: 15px;
    box-sizing: border-box;
  }
  #sectionIGF #donutIndicador {
    display: flex;
    width: auto;
    margin: 1rem auto;
    padding: 1rem;
    background-color: var(--box_color);
    border-radius: 15px;
    height: 20rem;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.3);
  }
  #sectionIGF #donutIndicador #fundoDonut {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    background-color: var(--base_color);
    border-radius: 15px;
    margin: auto;
    width: 100%;
    height: 100%;
  }
  #sectionIGF #donutIndicador h2 {
    font-size: 1.5rem;
  }
  #sectionIGF #donutIndicador #donutGraph{
    width: auto;
    height: 10rem;
  }
  #sectionIGF #donutIndicador #donutGraph h3 {
    font-size: 1.5rem;
  }
  #sectionIGF .grafico {
    background-color: var(--box_color);
    border-radius: 15px;
    margin: auto;
    padding: 1rem;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.3);
    width: 95%;
  }
  #sectionIGF .grafico #fundoGrafico {
    background-color: var(--base_color);
    border-radius: 15px;
    margin: 0;
    padding: 0.5rem;
  }
  #sectionIGF .grafico #fundoGrafico #igfGraficoForm {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    row-gap: 1rem ;
  }
  #sectionIGF .grafico #fundoGrafico #igfGraficoForm #filtrosEsquerda {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 1rem;
  }
  #sectionIGF .grafico #fundoGrafico #igfGraficoForm #filtrosEsquerda p {
    flex-basis: 100%;
    font-weight: bold;
  }
  #sectionIGF .grafico #fundoGrafico #igfGraficoForm #filtrosEsquerda div {
    display: flex;
    justify-content: flex-start;
    margin-left: 2rem;
  }
  #sectionIGF .grafico #fundoGrafico #igfGraficoForm #filtrosEsquerda div input {
    width: -moz-fit-content;
    width: fit-content;
    margin-right: 1rem;
  }



  #sectionIGF .grafico #fundoGrafico #igfGraficoForm #filtrosDireita {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-grow: 1;
    height: 100%;
  }
  #sectionIGF .grafico #fundoGrafico #igfGraficoForm #filtrosDireita div {
    justify-content: flex-start;
  }
  #sectionIGF .grafico #fundoGrafico #igfGraficoForm #filtrosDireita p {
    flex-basis: 100%;
    font-weight: bold;
  }
  #sectionIGF .grafico #fundoGrafico #igfGraficoForm #filtrosDireita #filtroTempo {
    margin-left: 1rem;
    display: flex;
    flex-wrap: wrap;
    height: -moz-fit-content;
    height: fit-content;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
  #sectionIGF .grafico #fundoGrafico #igfGraficoForm #filtrosDireita #filtroTempo #labelPeriodo {
    flex-basis: 100%;
  }
  #sectionIGF .grafico #fundoGrafico #igfGraficoForm #filtrosDireita #filtroTempo label {
    flex-basis: 40%;
  }
  #sectionIGF .grafico #fundoGrafico #igfGraficoForm #filtrosDireita #filtroAtendente {
    margin-left: 1rem;
    display: flex;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
  #sectionIGF .grafico #fundoGrafico #igfGraficoForm #filtrosDireita #filtroAtendente select {
    text-align: right;
  }
  #sectionIGF .grafico #fundoGrafico #igfGraficoForm input {
    background-color: var(--base_color);
    border-bottom: var(--dark_color) 1px solid;
  }
  #sectionIGF .grafico #fundoGrafico #igfGraficoForm button {
    position: relative;
  }
  #sectionTable {
    background-color: var(--box_color);
    border-radius: 15px;
    margin-bottom: 1rem;
    text-align: center;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.3);
  }
  #sectionTable #botaoAtivarComentNota, #sectionTable #botaoAtivarComentFinal {
    display: none;
  }
  #sectionTable section {
    background-color: var(--base_color);
    border-radius: 15px;
    margin: 1rem auto;
    width: 90%;
  }
  #sectionTable section #scoreCommentTable {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
  #sectionTable section #scoreCommentTable .btn {
    background-color: var(--standard_color);
    color: white;
    width: 2rem;
    height: 1.5rem;
  }
  #sectionTable section #scoreCommentTable #btnBoa {
    grid-column: 1/2;
  }
  #sectionTable section #scoreCommentTable #btnNeutra {
    grid-column: 2/3;
  }
  #sectionTable section #scoreCommentTable #btnRuim {
    grid-column: 3/4;
  }
  #sectionCards {
    background-color: var(--box_color);
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.3);
  }
  #sectionCards #squares {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  #sectionCards #squares section {
    width: auto;
    height: auto;
    margin: 0.5rem 1rem;
  }
  #sectionCards #squares section h2 {
    font-size: 1rem;
  }
  #sectionCards #squares #totalDisparos {
    margin-top: 1rem;
    grid-column: 1/2;
    grid-row: 1;
  }
  #sectionCards #squares #taxaConclusao {
    margin-bottom: 1rem;
  }
  #sectionShotsForm {
    background-color: var(--box_color);
    border-radius: 15px;
    text-align: center;
    margin-bottom: 5rem;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.3);
  }
  #sectionShotsForm section {
    background-color: var(--base_color);
    border-radius: 15px;
    margin: 1rem;
  }
  #sectionShotsForm .grafico {
    width: 100%;
  }
  #sectionShotsForm input {
    height: 1.5rem;
    background-color: var(--base_color);
    border-bottom: var(--dark_color) 1px solid;
  }
  #sectionShotsForm .btn {
    left: 0;
    width: 2rem;
    height: 2rem;
    margin: 0 auto;
    align-self: center;
  }
  /* Barra de Ferramentas Mobile */
  .ferramentasDesktop {
    display: none;
  }
  .ferramentasMobile {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1rem 0;
    border-radius: 25px 25px 0 0;
    z-index: 3;
  }
  .ferramentasMobile .iconeFerramentas img {
    width: 30px;
    height: 30px;
  }
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1;
  }
  .menuUsuarioMobile {
    position: fixed;
    bottom: 60px;
    left: 5px;
    width: 10rem;
    background: var(--dark_color);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 3;
    animation: fadeIn 0.3s ease;
  }
  .menuUsuarioMobile ul {
    list-style: none;
    margin: 0;
    padding: 10px;
  }
  .menuUsuarioMobile ul li {
    margin: 10px 0;
  }
  .menuUsuarioMobile ul li a {
    text-decoration: none;
    color: var(--base_color);
    font-weight: bold;
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  /* Tela de Enviar Números Mobile */
  .paginaEnviarNumeros {
    margin: 1rem auto 5rem auto;
    padding: 1rem;
    width: 100%;
  }
  .paginaEnviarNumeros h1 {
    margin: 1rem auto;
    text-shadow: none;
    text-align: center;
  }
  .paginaEnviarNumeros #menuEnvio {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 1rem auto;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    border-radius: 15px;
  }
  .paginaEnviarNumeros #menuEnvio .file-label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    font-size: medium;
    font-weight: bold;
    gap: 10px;
    transition: background-color 0.3s ease;
    margin: 1rem 0;
  }
  .paginaEnviarNumeros #menuEnvio .file-label:hover {
    background-color: #015f5a;
  }
  .paginaEnviarNumeros #menuEnvio #icone-anexo {
    width: 30px;
    height: 30px;
  }
  .paginaEnviarNumeros #menuEnvio #out {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .paginaEnviarNumeros #menuEnvio #out #shootNumbersTable .card-numeros-disparo {
    flex-direction: row;
    width: 100%;
    color: var(--dark_color);
    background-color: var(--base_color);
    border-radius: 15px;
    padding: 0.5rem;
    margin: 1rem auto;
  }
  .paginaEnviarNumeros #menuEnvio #out #shootNumbersTable .card-numeros-disparo p {
    width: 100%;
    font-weight: bold;
    margin: 0.5rem auto;
  }
  .paginaEnviarNumeros #menuEnvio #out form input {
    margin: 1rem auto 0 auto;
  }
  /* Tela de Suporte Mobile */
  .paginaSuporte {
    display: flex;
    flex-wrap: wrap;
    margin: 2rem auto;
    background-color: var(--box_color);
    justify-content: center;
    border-radius: 15px;
    width: 80%;
    height: auto;
    padding-bottom: 1rem;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.3);
  }
  .paginaSuporte h1 {
    text-align: center;
    margin: 2rem 0;
    text-shadow: none;
  }
  .paginaSuporte #form {
    background-color: var(--base_color);
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    margin: auto;
    width: 90%;
    row-gap: 1.5rem;
  }
  .paginaSuporte #form input {
    width: 100%;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--dark_color);
  }
  .paginaSuporte #form .btn {
    margin-top: 2rem;
    width: 8rem;
    border-bottom: none;
  }
  /* Tela de Mudança de E-mail Mobile*/
  .mudarEmail {
    width: 100%;
    height: auto;
    margin: 5rem auto;
    padding: 1rem;
    text-align: center;
    background-color: var(--box_color);
    border-radius: 15px;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.3);
  }
  .mudarEmail h1 {
    text-shadow: none;
    margin: 3rem 0;
  }
  .mudarEmail #form {
    margin: 1rem auto;
    display: flex;
    flex-wrap: wrap;
    row-gap: 1rem;
    background-color: var(--base_color);
  }
  .mudarEmail #form div {
    margin: 1rem 0;
  }
  .mudarEmail #form div label {
    margin: 0;
  }
  .mudarEmail #form #novoEmailInput input {
    width: 15rem;
  }
  .mudarEmail #form .btn {
    width: 8rem;
    margin: 0 auto;
    margin-bottom: 1rem;
  }
  /* Tela de Mudança de Senha Mobile */
  .mudarSenha {
    width: 100%;
    margin: 5rem auto;
    margin-bottom: 5rem;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    background-color: var(--box_color);
    border-radius: 15px;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.3);
  }
  .mudarSenha h1 {
    text-shadow: none;
    text-align: center;
    margin: 2rem auto;
  }
  .mudarSenha #form {
    background-color: var(--base_color);
    margin: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .mudarSenha #form div {
    text-align: left;
    flex-basis: 100%;
  }
  .mudarSenha #form label {
    margin: 0 1rem;
    width: 100%;
  }
  .mudarSenha #form input {
    width: 100%;
  }
  .mudarSenha #form #novaSenhaLabel {
    grid-column: 1/2;
    grid-row: 1;
  }
  .mudarSenha #form #novaSenhaInput {
    grid-column: 1/3;
    grid-row: 2;
  }
  .mudarSenha #form #confirmeNovaSenhaLabel {
    grid-column: 1/2;
    grid-row: 3;
  }
  .mudarSenha #form #confirmeNovaSenhaInput {
    grid-column: 1/3;
    grid-row: 4;
  }
  .mudarSenha #form #voltarMudarSenha {
    grid-column: 1/2;
    grid-row: 5;
    margin-bottom: 2rem;
  }
  .mudarSenha #form #voltarMudarSenha .btn {
    width: 10rem;
  }
  .mudarSenha #form #confirmarMudarSenha {
    grid-column: 2/3;
    grid-row: 5;
    margin-bottom: 2rem;
  }
  .mudarSenha #form #confirmarMudarSenha input {
    width: 10rem;
  }
  /* Tela de Pagamentos Mobile*/
  .telaPagamentos {
    margin: auto;
    width: 100%;
    height: auto;
  }
  .telaPagamentos h1 {
    text-align: center;
    text-shadow: none;
  }
  .telaPagamentos form {
    background: none;
    box-shadow: none;
    display: flex;
    flex-wrap: wrap;
    margin: 1rem auto;
    text-align: center;
    padding: 0;
    width: 100%;
  }
  .telaPagamentos form #section3 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background-color: var(--base_color);
    margin: 1rem;
    padding: 0;
    height: 100%;
    width: 100%;
  }
  .telaPagamentos form .textoCardPagamento {
    margin: 1rem 0;
    color: var(--dark_color);
    font-size: medium;
    font-weight: bold;
    flex-basis: 100%;
  }
  .telaPagamentos form .btn {
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 50%;
    
  }
  .telaPagamentos form input {
    margin: 1rem auto;
  }
  .telaPagamentos #btnVoltarPagamentos {
    margin: 1rem auto;
    margin-bottom: 6rem;
    width: 5rem;
  }
  /* Tela de Pagamento Mobile*/
  .telaPagamento {
    margin: auto;
    background-color: var(--box_graph_color);
  }
  .telaPagamento h1 {
    text-align: center;
    text-shadow: none;
  }
  .telaPagamento .sectionTable {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin: auto;
    margin-bottom: 2rem;
  }
  .telaPagamento #form {
    display: flex;
    flex-direction: column;
    align-self: center;
    margin: 1rem;
    padding: 1rem;
    width: 100%;
    white-space: normal;
  }
  .telaPagamento #form p {
    text-align: center;
  }
  .telaPagamento #form .header {
    display: block;
    text-align: center;
    margin: 2rem auto;
  }
  .telaPagamento #form .header h2, .telaPagamento #form .header p {
    display: block;
    white-space: normal;
    overflow-wrap: break-word;
    text-shadow: none;
  }
  .telaPagamento #form .btn {
    width: 12rem;
  }

  .telaBoleto{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: auto;
  }

  .telaBoleto section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    word-wrap: break-word;
    gap: 1rem;
  }

}/*# sourceMappingURL=style.css.map */
