* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialised;
  -moz-osx-smoothing: grayscale;
}

:root {
  font-size: 62.5%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  font-family: 'Inter', sans-serif;
}

main {
  min-height: 1vh;
}

.logo {
  max-width: 30rem;
  margin: 2rem auto 4rem auto;
  display: block;
}

h2 {
  padding: 2rem;
  width: 90%;
  background-color: rgb(252, 181, 38);
  border-bottom-right-radius: 4rem;
  /* display: inline; */
  font-weight: 900;
  text-transform: uppercase;
  color:rgb(82, 24, 24);
  margin-bottom: .5rem;
}

h3 {
  padding: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  color:rgb(82, 24, 24);
  margin-top: .5rem;
}

.separador {
  height: .7rem;
  background-color: rgb(252, 181, 38);
  display: block;
  padding: 0;
}

.pacotes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}

.produto {
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
}

.produto:nth-child(odd){
  background-color: rgb(255, 183, 0, .2)
}

.produto .preco {
  display: flex;
  align-items: center;
}

.produto .preco::before {
  content: "R$";
  font-size: .7rem;
  margin-right: .5rem;
}

.produto div span {
  font-size: 1rem;
  display: block;
}

.aviso {
  text-align: center;
  display: block;
  font-weight: 700;
}

.rodape {
  padding: 2rem 2rem 0 2rem;
  text-align: center;
  font-size: 1.2rem;
}

.rodape::after {
  content: "";
  width: 40%;
  margin: 0 auto;
  background-color: rgb(252, 181, 38);
  height: 2.5rem;
  display: block;
  margin-top: 2rem;
}

.pagamento {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

.pagamento div {
  border: 1px solid rgb(252, 181, 38);
  background-color: rgb(255, 183, 0, .2);
  border-radius: 1.6rem;
  padding: 2rem;
  font: bold;
}

.menu-title {
  text-align: center;
}

.menu {
  display: flex;
  justify-content: center;
  padding: 2rem;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 4rem;
  background-color: #f1f1f1;
}

.menu a,
.pacotes a {
  max-width: 48%;
  border-radius: 1.6rem;
  background-color: rgb(252, 181, 38);
  color:rgb(82, 24, 24);
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  align-items: center;
  align-content: center;
  align-self: center;
  padding: 2rem;
  text-decoration: none;
}

.menu a:hover
.pacotes a:hover {
  background-color: rgb(255, 154, 3);
}

.float {
  justify-content: center;
  flex-direction: row;
}

.float a {
  font-size: 1rem;
  padding: 1rem;
  border-radius: .4rem;
  max-width: 100%;
}

.disable {
  background-color: #ccc !important;
}

.v-topo {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: rgba(17, 25, 40, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);
  text-decoration: none;
}
.v-topo::after {
  content: "↑";
  font-size: 32px;
  font-weight: bold;
  color: aliceblue;
  transition: margin-top 250ms;
}
.v-topo:hover::after {
  margin-top: -8px;
}

.page-loader {
  background: #8be9fd;
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
}

.page-loader-inner {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  padding: 20px;
  transform: translateY(-50%);
}

.spinner {
  position: relative;
  height: 30px;
  width: 30px;
  margin: 100px auto;
}

.double-bounce1,
.double-bounce2 {
  position: absolute;
  background-color: #1c97b7;
  border-radius: 50%;
  opacity: 0.5;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  -webkit-animation: bounce 2s infinite ease-in-out;
  animation: bounce 2s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: scale(0);
  }

  50% {
    transform: scale(1);
  }
}