@import url("https://fonts.googleapis.com/css2?family=Poppins: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");

/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins", sans-serif;
  color: #063449;
}
.ocult {
  display: none;
}

body {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding: 1rem 0;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  overflow: auto;
  background: linear-gradient(
    315deg,
    rgba(101, 0, 94, 1) 3%,
    rgba(60, 132, 206, 1) 38%,
    rgba(48, 238, 226, 1) 68%,
    rgba(255, 25, 25, 1) 98%
  );
  animation: gradient 15s ease infinite;
  background-size: 100% 400%;
  background-attachment: fixed;
}

@keyframes gradient {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

.wave {
  background: rgb(255 255 255 / 25%);
  border-radius: 1000% 1000% 0 0;
  position: fixed;
  width: 200%;
  height: 12em;
  animation: wave 10s -3s linear infinite;
  transform: translate3d(0, 0, 0);
  opacity: 0.8;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.wave:nth-of-type(2) {
  bottom: -1.25em;
  animation: wave 18s linear reverse infinite;
  opacity: 0.8;
}

.wave:nth-of-type(3) {
  bottom: -2.5em;
  animation: wave 20s -1s reverse infinite;
  opacity: 0.9;
}

@keyframes wave {
  2% {
    transform: translateX(1);
  }

  25% {
    transform: translateX(-25%);
  }

  50% {
    transform: translateX(-50%);
  }

  75% {
    transform: translateX(-25%);
  }

  100% {
    transform: translateX(1);
  }
}

.titles {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.titles img {
  width: 100px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.space {
  height: 1px;
  background-color: #d4d4d4;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

form {
  background: rgba(255, 255, 255, 0.5);
  padding: 1.25rem;
  backdrop-filter: blur(10px);
  margin: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5); /* Borda sutil */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 720px;
  min-width: 370px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Define linhas de campos em flexbox */
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Define a largura dos inputs */
.form-row > div {
  flex: 1; /* Para inputs ocuparem o mesmo espaço */
}

label {
  display: block;
  margin-bottom: 0.3125rem;
  font-weight: 600;
}

input[type="number"] {
  -webkit-appearance: none; /* Remove o seletor no Chrome/Safari */
}

/* Ocultar os botões de incremento e decremento */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input {
  width: 100%;
  padding: 0.625rem;
  margin-bottom: 0.625rem;
  border: 1px solid #ccc;
  box-sizing: border-box;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.7);
}

input:focus {
  border-color: #5cb;
  outline: none;
}

select {
  width: 100%;
  padding: 0.625rem;
  margin-bottom: 0.625rem;
  border: 1px solid #ccc;
  background: rgba(255, 255, 255, 0.7);
  box-sizing: border-box;
  border-radius: 1.1rem;
  -webkit-appearance: none;
}

select:focus {
  border-color: #5cb;
  outline: none;
}

/* Estilo para checkboxes */
.checkbox-group {
  display: flex;
  flex-direction: column;
}

.checkbox-group div {
  display: flex;
  align-items: center;
}

.checkbox-group label {
  margin-left: 0.625rem;
  color: #555;
}

.wrapper-content {
  position: fixed;
  bottom: 1rem; /* Distância do fundo da tela */
  right: 1rem; /* Distância do lado direito */
  z-index: 1000;
}

.wrapper-content .icon {
  position: relative;
  background-color: #f3f3f3;
  border-radius: 50%;
  padding: 0.9375rem;
  margin: 0.625rem;
  width: 3.125rem;
  height: 3.125rem;
  font-size: 1.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 19px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper-content .tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  background-color: #ffffff;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper-content .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background-color: #ffffff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper-content .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wrapper-content .icon:hover span,
.wrapper-content .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
}
.wrapper-content .whatsapp:hover span i {
  color: white; /* Muda a cor do ícone para branco ao passar o mouse */
}
.wrapper-content .whatsapp:hover,
.wrapper-content .whatsapp:hover .tooltip,
.wrapper-content .whatsapp:hover .tooltip::before {
  background-color: #25d366;
  color: #ffffff;
}

/* From Uiverse.io by StealthWorm */
.contain-button {
  width: 100%;
  display: flex;
  justify-content: center;
}
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 13rem;
  overflow: hidden;
  height: 3rem;
  background-size: 300% 300%;
  cursor: pointer;
  backdrop-filter: blur(1rem);
  border-radius: 5rem;
  transition: 0.5s;
  animation: gradient_301 5s ease infinite;
  border: double 4px transparent;
  background-image: linear-gradient(#212121, #212121),
    linear-gradient(
      137.48deg,
      #ffdb3b 10%,
      #fe53bb 45%,
      #8f51ea 67%,
      #0044ff 87%
    );
  background-origin: border-box;
  background-clip: content-box, border-box;
}

#container-stars {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: 0.5s;
  backdrop-filter: blur(1rem);
  border-radius: 5rem;
}

strong {
  z-index: 2;
  font-family: "Avalors Personal Use";
  font-size: 12px;
  letter-spacing: 5px;
  color: #ffffff;
  text-shadow: 0 0 4px white;
}

#glow {
  position: absolute;
  display: flex;
  width: 12rem;
}

.circle {
  width: 100%;
  height: 30px;
  filter: blur(2rem);
  animation: pulse_3011 4s infinite;
  z-index: -1;
}

.circle:nth-of-type(1) {
  background: rgba(254, 83, 186, 0.636);
}

.circle:nth-of-type(2) {
  background: rgba(142, 81, 234, 0.704);
}

.btn:hover #container-stars {
  z-index: 1;
  background-color: #212121;
}

.btn:hover {
  transform: scale(1.1);
}

.btn:active {
  border: double 4px #fe53bb;
  background-origin: border-box;
  background-clip: content-box, border-box;
  animation: none;
}

.btn:active .circle {
  background: #fe53bb;
}

#stars {
  position: relative;
  background: transparent;
  width: 200rem;
  height: 200rem;
}

#stars::after {
  content: "";
  position: absolute;
  top: -10rem;
  left: -100rem;
  width: 100%;
  height: 100%;
  animation: animStarRotate 90s linear infinite;
}

#stars::after {
  background-image: radial-gradient(#ffffff 1px, transparent 1%);
  background-size: 50px 50px;
}

#stars::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 170%;
  height: 500%;
  animation: animStar 60s linear infinite;
}

#stars::before {
  background-image: radial-gradient(#ffffff 1px, transparent 1%);
  background-size: 50px 50px;
  opacity: 0.5;
}

@keyframes animStar {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-135rem);
  }
}

@keyframes animStarRotate {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0);
  }
}

@keyframes gradient_301 {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulse_3011 {
  0% {
    transform: scale(0.75);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }

  100% {
    transform: scale(0.75);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

/* Estilo do Modal */

#loading {
  position: fixed; /* Fica fixo na tela */
  top: 50%; /* Centralizado verticalmente */
  left: 50%; /* Centralizado horizontalmente */
  transform: translate(-50%, -50%); /* Centraliza realmente */
  font-size: 20px;
  z-index: 1000; /* Fica acima de outros elementos */
  background-color: #3534343f; /* Cor de fundo */
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  align-content: center;
}
#loading span {
  padding: 2rem;
  border-radius: 1rem;
  color: #063449;
  background-color: #ffffffc4;
  font-weight: 800;
}

.modal {
  display: none; /* Escondido por padrão */
  position: fixed;
  z-index: 1; /* Fica em cima do conteúdo */
  left: 0;
  top: 0;
  width: 100%; /* Largura total */
  height: 100%; /* Altura total */
  overflow: auto; /* Adiciona rolagem se necessário */
  background-color: rgba(0, 0, 0, 0.4); /* Fundo com transparência */
  justify-content: center; /* Centraliza horizontalmente */
  align-items: center; /* Centraliza verticalmente */
}
.modal-content {
  background-color: #fefefe;
  margin: 0 auto; /* 15% da parte superior e centralizado */
  padding: 1.25rem;
  border: 1px solid #888;
  width: fit-content; /* Largura do modal */
  border-radius: 0.625rem;
  text-align: center;
  position: relative;
}

.modal-heading {
  font-size: 1.25rem;
  font-weight: bold;
  color: rgb(27, 27, 27);
  text-align: center;
}
.modal-description {
  color: rgb(102, 102, 102);
  text-align: center;
}
.exit-button {
  border: none;
  background: transparent;
  cursor: pointer;
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
}

footer {
  margin-top: 2rem;
  margin-bottom: 0;
}
/* Estilos para telas menores que 600px */
@media (max-width: 600px) {
}
