@charset "UTF-8";
@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";
*::-webkit-scrollbar {
  width: 8px;
}

*::-webkit-scrollbar-track {
  background: #f2f2f2;
}

*::-webkit-scrollbar-thumb {
  background-color: #bddc04;
  border-radius: 20px;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background: #f2f2f2;
}

p {
  font-family: "Poppins", sans-serif;
  font-size: 1.1em;
  font-weight: 300;
  line-height: 1.7em;
  color: #999;
}

a,
a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
}

.line {
  width: 90%;
  height: 1px;
  border-bottom: 1px solid #cdcdcd;
  margin: 40px 5%;
}

.csv-list {
  width: 90%;
  margin: 40px 5%;
}

.hidden {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}

.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#content {
  width: 100%;
  min-height: 100vh;
  transition: all 0.3s;
  position: absolute;
  overflow-x: hidden;
}

.column {
  display: flex;
  flex-direction: column;
}

.infobox {
  width: 30%;
  border-radius: 4px;
  border: 2px solid #ced4da;
  margin: 0 0 20px;
  height: 40px;
  padding-left: 10px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.infobox:focus {
  outline: none;
  border-color: #bddc04;
  box-shadow: 0 0 2.5px 2.5px #bddc04;
}

.infobox-img {
  border: none;
}

.infobox-img:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

.botao {
  outline: none;
  border: none;
  background-color: #bddc04;
  text-decoration: none;
  transition: all 0.3s;
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  border-radius: 5px;
}

.botao:hover {
  background-color: rgb(145.96875, 169.9107142857, 3.0892857143);
  transition: all 0.3s;
}

.botao:focus {
  outline: none;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgb(145.96875, 169.9107142857, 3.0892857143) 0px 0px 0px 2px !important;
  background-color: rgb(145.96875, 169.9107142857, 3.0892857143) !important;
}

.botao:active {
  background-color: rgb(145.96875, 169.9107142857, 3.0892857143);
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, #bddc04 0px 0px 0px 2px !important;
}

.block {
  display: block;
}

.none {
  display: none;
}

.row {
  display: flex;
}

#mensagem {
  font-family: "Poppins", sans-serif;
  transition: opacity 0.5s ease;
  opacity: 0;
}

.spinner {
  width: 30px;
  height: 30px;
  border: 4px solid #ccc;
  border-top: 4px solid #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 10px auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.title {
  text-align: center;
  color: #bddc04;
  margin: 30px 0;
}

#popup-carrinho {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  color: #333;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  font-weight: bold;
  z-index: 9999;
  align-items: center;
  gap: 10px;
}

#popup-carrinho .botao {
  font-size: 12px;
}

.form {
  margin: 0 5%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding-bottom: 120px;
  width: 90%;
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: 600px;
  position: relative;
}
.form form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.form .infobox {
  margin: 10px 0;
}
.form label {
  margin: 10px 0;
}

#cadastro-produtos {
  flex-direction: row;
  align-items: flex-start;
}
#cadastro-produtos form .infobox {
  width: 50%;
  margin: 10px 5%;
}
#cadastro-produtos form .botao {
  width: 50%;
  margin: 0 5%;
}

.form-btn {
  margin-top: 1.3%;
  width: 30%;
  margin-bottom: 2%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.titulo {
  color: rgb(145.96875, 169.9107142857, 3.0892857143);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.titulo .form-title {
  margin: 0;
}
.titulo svg {
  transform-origin: center;
  transition: transform 1s ease-in-out;
}
.titulo:hover svg {
  transform: rotate(360deg);
  transition: transform 1s ease-out;
}

.alert {
  padding: 10px;
  margin: 1% 0 10px 0;
  border-radius: 5px;
  text-align: center;
}

.alert-success {
  color: #4CAF50;
  /* Verde */
}

.alert-error {
  color: #f44336;
  /* Vermelho */
}

.logs {
  margin: 0 20%;
  display: flex;
  flex-direction: column;
  width: 60%;
  gap: 10px;
  padding-bottom: 120px;
}
.logs input {
  margin-bottom: 10px;
}
.logs .log {
  width: 100%;
  padding: 20px 30px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
.logs .log p {
  margin: 0;
}

.navbar {
  padding: 15px 20px;
  background: #fff;
  border: none;
  border-radius: 0;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 3fr 9fr 1fr 1fr 1fr 1fr;
}
.navbar button {
  box-shadow: none;
  outline: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.navbar .nav-btn {
  justify-content: center;
  display: flex;
}
.navbar .nav-btn svg {
  width: 20px;
  height: 20px;
}

#search-btn {
  margin-right: -8%;
  padding-left: 10px;
  display: flex;
  align-items: center;
}
#search-btn svg {
  width: 18px;
  height: 18px;
}

.search-bar:focus {
  border-color: #bddc04;
  box-shadow: 0 0 2.5px 2.5px #bddc04;
}

#search-form {
  padding: 0px 80px;
}

#logo {
  width: 150px;
}

#sidebar {
  width: 250px;
  position: fixed;
  top: 0;
  left: -250px;
  height: 100vh;
  z-index: 999;
  background: #667177;
  color: #fff;
  transition: all 0.3s;
  overflow-y: scroll;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}
#sidebar #dismiss {
  width: 35px;
  text-align: center;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  transition: all 0.3s;
}
#sidebar #dismiss svg {
  margin-top: 16px;
}
#sidebar #dismiss:hover {
  color: #bddc04;
  background-color: #667177;
}
#sidebar .sidebar-header {
  padding: 20px;
  background: #667177;
}
#sidebar .sidebar-header h2 {
  font-size: 24px;
}
#sidebar .components {
  padding: 20px 0;
  border-bottom: 1px solid #f2f2f2;
  background: #667177;
}
#sidebar .components ul a {
  padding-left: 30px;
}
#sidebar ul li a {
  padding: 10px;
  display: block;
  background-color: #667177;
}
#sidebar ul li.active > a,
#sidebar a[aria-expanded=true] {
  color: #fff;
  background: #667177;
}
#sidebar a:hover {
  color: #bddc04;
  background: rgb(90.2307692308, 99.9615384615, 105.2692307692);
}
#sidebar .menu1 a {
  font-size: 21px;
}
#sidebar .menu2 a {
  font-size: 17px;
}
#sidebar .menu3 a {
  font-size: 15px;
}
#sidebar .menu4 li a {
  font-size: 12px;
}
#sidebar .desconectar {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s;
}
#sidebar .desconectar p {
  color: #fff;
  font-size: 16px;
  padding: 10px;
  margin: 0;
}
#sidebar .desconectar svg {
  margin-top: 17px;
  margin-right: 17px;
}
#sidebar .desconectar:hover {
  background-color: rgb(90.2307692308, 99.9615384615, 105.2692307692);
  transition: all 0.3s;
}
#sidebar .desconectar:hover p {
  color: #bddc04;
}
#sidebar .desconectar:hover svg {
  color: #bddc04;
}

#sidebar.active {
  left: 0;
}

.overlay {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.overlay.active {
  margin-top: -50%;
  height: 300%;
  display: block;
  opacity: 1;
}

a[data-toggle=collapse] {
  position: relative;
}

.dropdown-toggle::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.login {
  width: 35%;
  min-height: 100vh;
  z-index: 1000;
  background-color: #f2f2f2;
  box-shadow: -3px 3px 200px -8px rgba(0, 0, 0, 0.75);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.login #logo-login {
  margin: 0 25%;
  width: 50%;
  vertical-align: middle;
}
.login #login {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 0.7s ease-out forwards;
  margin-bottom: 120px;
}
.login #login h2 {
  color: black;
  text-align: center;
  font-size: 1.8rem;
}
.login #login input {
  width: 70%;
  margin-top: 2%;
}
.login #login button {
  margin-top: 2%;
  width: 70%;
}
.login #login #creditos {
  bottom: 0;
  font-size: 10px;
  position: absolute;
  margin-bottom: 2%;
}
.login #login #creditos a {
  color: #3397cd;
}

.background {
  background-image: url(../img/Wallpaper.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 200px center;
}

.banner {
  margin-left: 7%;
  margin-top: 4%;
  margin-right: 7%;
  border-radius: 10px;
  width: 86%;
}

.avisos-title {
  text-align: center;
  color: #bddc04;
}

#aviso-img {
  margin-bottom: 5%;
  margin-top: 1%;
  margin-left: 5%;
  width: 239px;
  height: 211px;
}

#aviso1 {
  margin-top: 3%;
  margin-left: 5%;
}
#aviso1 h2 {
  font-size: 21px;
}

#aviso2 {
  margin-top: 3%;
  margin-left: 5%;
}
#aviso2 h2 {
  font-size: 28px;
}

.fileira {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding-bottom: 140px;
}

.produto {
  background: #ffffff;
  border: 1px solid #d3d3d3;
  border-radius: 15px;
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.1);
  padding: 10px;
  text-align: center;
  width: calc(25% - 20px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.produto p {
  margin: 2px;
}
.produto h2 {
  font-size: 22px;
}

.produto:hover {
  border-style: solid;
  box-shadow: 6px 6px 3px rgba(0, 0, 0, 0.1);
  border-color: #636362;
  border-radius: 15px;
  border-width: 1px;
}

@media (max-width: 1200px) {
  .fileira {
    justify-content: center;
  }
  .produto {
    width: calc(33.33% - 20px);
  }
}
@media (max-width: 768px) {
  .produto {
    width: calc(50% - 20px);
  }
}
@media (max-width: 480px) {
  .produto {
    width: calc(100% - 20px);
  }
}
.carrinho {
  padding: 0 1% 120px 3%;
}
.carrinho .produtos-header {
  display: grid;
  grid-template-columns: 45px 5fr 3fr repeat(2, 90px) repeat(2, 2fr) 45px;
  font-weight: bold;
  padding: 10px;
  gap: 10px;
  align-items: center;
}
.carrinho .itens {
  display: grid;
  grid-template-columns: 45px 5fr 3fr repeat(2, 90px) repeat(2, 2fr) 45px;
  border-bottom: 1px solid #e0e0e0;
  padding: 10px;
  gap: 10px;
  align-items: center;
}
.carrinho .itens:hover {
  border-style: solid;
  box-shadow: 6px 6px 3px rgba(0, 0, 0, 0.1);
  border-color: #636362;
  border-radius: 5px;
  border-width: 1px;
}
.carrinho .itens div:first-child {
  justify-self: center;
  align-self: center;
}
.carrinho .remover {
  border: none;
  outline: none;
  background: none;
}
.carrinho .remover:hover {
  transform: scale(1.2);
}
.carrinho #total-carrinho {
  color: grey;
  margin-top: 25px;
}
.carrinho #data-entrega {
  color: grey;
  margin-top: 25px;
}
.carrinho .botao-row {
  display: flex;
}
.carrinho #concluir-btn {
  margin-top: 1.3%;
  border-radius: 5px;
}
.carrinho #continuar-comprando {
  background-color: transparent;
  color: #333;
  border: none;
  padding: 5px;
  cursor: pointer;
  text-decoration: underline;
  font-weight: bold;
  margin-left: 10px;
  margin-top: 1.3%;
  outline: none;
}

.pdfs {
  margin: 0 5%;
  display: flex;
  flex-direction: column;
  width: 90%;
  gap: 10px;
  padding-bottom: 120px;
}
.pdfs ul {
  margin-left: 30px;
}

.upload-pdf {
  max-width: 550px;
  margin-top: 4%;
  display: flex;
}
.upload-pdf .form-control:focus {
  border-color: #bddc04;
  box-shadow: 0 0 2.5px 2.5px #bddc04;
}
.upload-pdf .botao {
  margin-left: 2%;
  height: 45px;
}

li.url::marker {
  color: #bddc04;
}

li.url:hover {
  color: green;
  text-decoration: none;
  transition: all 0.3s;
}

li.url {
  font-size: 20px;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.modal .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 22px;
  text-align: center;
  width: 40%;
  border-radius: 8px;
  box-shadow: 5px 5px 5px rgb(56, 54, 54);
}
.modal .modal-content h2 {
  font-size: 24px;
}
.modal .modal-content input {
  width: 12%;
  text-align: center;
}
.modal .modal-content #adicionar {
  margin-left: 30%;
  width: 40%;
}

#fechar {
  background-color: transparent;
  color: #333;
  border: none;
  padding: 5px;
  cursor: pointer;
  text-decoration: underline;
  font-weight: bold;
}

#fechar:hover {
  text-decoration: none;
}

#fechar:focus {
  outline: none;
}

#detalhes-pedido {
  margin-left: 30px;
  padding-bottom: 120px;
}
#detalhes-pedido li {
  margin: 5px 2.5%;
}
#detalhes-pedido h2 {
  color: grey;
}

#enviar-btn {
  margin-left: 3%;
  margin-top: 1.3%;
}

#inauguracao {
  display: none;
}

#data-entrega {
  display: block;
}
#data-entrega .data {
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer {
  background-color: #D3D3D3;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 10px 0;
  display: flex;
  align-items: center;
}
footer img {
  margin-left: 5%;
  width: 150px;
}
footer p {
  color: black;
  text-align: center;
  font-size: 16px;
  margin: 0 auto;
  flex: 1;
}

.hvr-grow {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-grow:hover,
.hvr-grow:focus,
.hvr-grow:active {
  transform: scale(1.1);
  z-index: 1000;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 991.98px) {
  .title {
    font-size: 30px;
  }
  .produto h2 {
    font-size: 18px;
  }
  .produto p {
    font-size: 14px;
  }
  .form .infobox {
    width: 60%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .form .botao {
    width: 60%;
  }
  #login h4 {
    font-size: 1.2rem;
  }
  .carrinho .produtos-header {
    display: none;
    /* Esconde o cabeçalho em telas pequenas */
  }
  .carrinho .itens {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  .carrinho .itens > div {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 5px 0;
    font-size: 14px;
  }
  .carrinho .itens > div::before {
    content: attr(data-label);
    font-weight: bold;
    margin-right: 10px;
    flex-basis: 40%;
  }
  .carrinho .itens > div:not(:last-child) {
    border-bottom: 1px dashed #ccc;
  }
  .carrinho .remover {
    align-self: center;
    margin-top: 10px;
  }
  #search-form {
    display: none;
  }
  .navbar {
    grid-template-columns: 1fr 5fr 1fr 1fr 1fr 1fr;
  }
  .navbar #logo {
    margin-right: 50%;
  }
  .modal .modal-content {
    width: 60%;
  }
}
@media (max-width: 767.98px) {
  footer img {
    display: none;
  }
  .pdfs div {
    display: flex;
    flex-direction: column;
  }
  .pdfs div button {
    margin: 10px 0 0 0;
    width: 50%;
  }
  .login {
    width: 100%;
  }
  .login #logo-login {
    margin: 10% 30%;
    width: 40%;
    vertical-align: middle;
  }
  .modal .modal-content #adicionar {
    width: 60%;
    margin-left: 20%;
  }
}
@media (max-width: 575.98px) {
  .title {
    font-size: 24px;
  }
  .img-fluid {
    width: 160px;
  }
  #total-carrinho {
    font-size: 1.5rem;
  }
  .form .infobox {
    width: 80%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .form .botao {
    width: 80%;
  }
  .navbar {
    gap: 5%;
  }
  .navbar #logo {
    width: 120px;
    margin-right: 0;
  }
  .navbar .nav-btn svg {
    width: 16px;
    height: 16px;
  }
  footer p {
    font-size: 12px;
  }
}
@media (max-width: 420px) {
  .navbar #logo {
    width: 80px;
  }
  #total-carrinho {
    font-size: 1.2rem;
  }
  .botao-row {
    font-size: 14px;
  }
  .botao-row #concluir-btn {
    font-size: 14px;
  }
  .modal .modal-content {
    width: 80%;
  }
  .modal .modal-content #adicionar {
    width: 80%;
    margin-left: 10%;
  }
}/*# sourceMappingURL=styles.css.map */