html {
  scroll-behavior: smooth;
}

body {
  background-image: url('../img/textura.png');
  font-family: 'Nunito', sans-serif;
  margin: 0;
}

h2,
h3 {
  font-family: 'Nunito', cursive;
  color: #1D4ED8;
}

.page {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.session {
  width: 100%;
  max-width: 1280px;
  aspect-ratio: 16/9;
  margin: 0px auto;
  position: relative;
  overflow: hidden;
}

.session img {
  position: absolute;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: all 1s ease;
}

.session .wave {
  position: absolute;
  bottom: 0;
  z-index: -10;
  left: 0;
  width: 100%;
  height: 120px;
  overflow: hidden;
  line-height: 0;
}

.session .wave svg {
  position: relative;
  display: block;
  width: calc(250% + 1px);
  height: 120px;
  animation: waveMove 6s linear infinite;
}

@keyframes waveMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-25%);
  }
}


.next-session {
  background: #0e3368;
  color: #fff;
}

.session.active .left {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0s;
}

.session.active .right {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.5s;
}

.session.active .bottom {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}

.left {
  transform: translateX(-100%);
}

.right {
  transform: translateX(100%);
}

.bottom {
  transform: translateY(100%);
}

.explain {
  max-width: 800px;
  margin: 0px auto;
  text-align: center;
  padding: 40px 20px;
  background: #bdbdbd;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.cta {
  text-align: center;
  background-color: #9ca4b8;
  padding: 60px 20px;
}

footer {
  background: #151515;
  color: #fff;
  text-align: center;
  padding: 30px 10px;
}

.btn-primary {
  background-color: #1D4ED8;
  border: none;
  font-size: 1.2rem;
  padding: 12px 30px;
  border-radius: 12px;
}

.btn-success {
  background-color: #16A34A;
  border: none;
  font-size: 1.2rem;
  padding: 12px 30px;
  border-radius: 12px;
}

.hotspot {
  position: absolute;
  display: block;
  cursor: pointer;
}

/* botão vermelho (esquerda) */
.red-btn {
  left: 11%;
  bottom: 6%;
  width: 33%;
  height: 31%;
}

/* botão azul (direita) */
.blue-btn {
  right: 10%;
  bottom: 6%;
  width: 34%;
  height: 31%;
}


#conhecendofriendvs {
  scroll-margin-top: 56px;
}

.swal-login-container {
  padding: 0 !important;
}