body {
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.navbar {
  display: flex;
  justify-content: space-between; /* Garante que os itens estejam nos extremos e no centro */
  align-items: center; /* Centraliza verticalmente os itens */
  background-color: #0d3bdd; /* Cor de fundo do navbar */
  padding-bottom: 10px;
  padding-left: 10px;
  border-top: 20px solid #001161;
}

.menu-icon, .logo-right, .logo-central {
  flex-grow: 0; /* Não permite que os itens cresçam */
  flex-shrink: 0; /* Não permite que os itens encolham */
}

.menu-icon, .logo-right {
  margin: 0; /* Remove margens para que fiquem nos extremos */
}

.logo-central {
  flex-grow: 1; /* Permite que a logo central cresça e ocupe todo o espaço restante */
  text-align: center; /* Centraliza a logo no espaço disponível */
}

.material-symbols-outlined {
  font-size: 24px; /* Ajuste o tamanho do ícone conforme necessário */
}

.logo-central img, .logo-right img {
  height: 4vh; /* Ajuste a altura conforme necessário */
}




.material-symbols-outlined {
font-variation-settings:
'FILL' 0,
'wght' 400,
'GRAD' 0,
'opsz' 24
}


.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin: 40px;
}

.product-container {
  text-align: center;
}

.product-item {
  transition: transform 0.3s ease;
}

.product-item img {
  width: 100%;
  height: auto;
}

p {
  font-size: 18px;
  color: #5e5e5e;
  font-weight: bold;
  font-family: 'GellixMedium';
}

.product-item:hover {
  transform: translateY(-10px);
}

.footer {
  position: relative;
  width: 100%;
  margin-bottom: -10px;
  background-color: #E8F1FF;
}


.resgatar {
  width: auto;
  padding-left: 20px;
  padding-right: 20px;
  height: 45px;
  background-color: black;
  color: white;
  display: block;
  margin: 0 auto;
  border: none;
  font-family: 'GellixRegular';
  font-size: 17px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.preview-container {
  position: relative;
  padding-bottom: 100%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  margin: 20px auto;
  width: 90%;
  max-width: 800px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}
.preview-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.ad1 {
  display: block;
  margin: 0 auto;
  background-color: rgb(226, 226, 226);
  width: 90%;
  border-radius: 15px;
}

.ad2 {
  display: block;
  margin: 0 auto;
  background-color: rgb(226, 226, 226);
  width: 90%;
  border-radius: 15px;
  height: 48vh;
}





#loadingGif, #loadingGif2 {
  text-align: center;
  margin: 20px 0;
}

.hidden {
  display: none;
}

.spinner {
  border: 6px solid rgba(0, 0, 0, 0.1);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border-left-color: #007bff;
  animation: spin 1s ease infinite;
  display: flex;
  margin: 0 auto;
}

@keyframes spin {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}

.spinner-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

#finalButton a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #111278;
  border: none;
  border-radius: 15px;
  color: white;
  cursor: pointer;
  animation: pulse 2s infinite;
  text-decoration: none;
}