* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(270deg, #2563eb, #9333ea, #f43f5e, #f59e0b);
  background-size: 800% 800%;
  animation: gradientBG 20s ease infinite;
}

/* Animação gradiente */
@keyframes gradientBG {
  0% {
    background-position: 0% 50%
  }

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

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



/* Navbar fixa no topo */
.navbar {
  gap: 15px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  background: rgba(216, 103, 38, 0.9);
  padding: 12px;
  z-index: 1000;
  box-shadow: 2px 2px 30px 2px aqua;
}



.navbar button {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.navbar button:hover {
  color: #2563eb;
}

.screen {
  display: none;
  width: 100%;
  max-width: 420px;
  padding: 80px 20px 20px;
  /* espaço por causa da navbar */
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.screen.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}


.cover {
  position: fixed;
  opacity: 0.5;
}

.container {
  background: repeating-conic-gradient(rgb(226, 86, 191) 0%, yellow 50%, rgb(21, 142, 172) 100%);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
  animation: fadeIn 0.6s ease;
}

.comecar {
  width: 120px;
  margin-top: 10px;
  padding: 5px;
  border-radius: 10px;
  background-color: aqua;
  font-weight: bold;
  box-shadow: 0px 5px 20px 5px aqua;
}

.comecar:hover {
  background-color: #6ab2f5;
  transform: translateY(-2px);
  transition: 0.4s;
  cursor: pointer;
}

h1,
h2 {
  margin-bottom: 15px;
}

.logo {
  color: aqua;
  font-weight: bold;
}

.subtitle {
  margin-bottom: 15px;
}

/* Carrossel */
.carousel {
  overflow: hidden;
  border-radius: 15px;
  margin-top: 15px;
 
}

.slides {
  display: flex;
  animation: slide 12s infinite;
  width: 200%;
}

.slides img {
  height: 50px;
  width: 150px;
  border-radius: 15px;
  
}

@keyframes slide {
  0% {
    transform: translateX(2);
  }

  80% {
    transform: translateX(-100%);
  }

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

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

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

/* Lista de hábitos */
ul {
  list-style: none;
  margin: 20px 0;
}

ul li {
  background: #f3f4f6;
  padding: 14px;
  margin-bottom: 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
}

ul li:hover {
  background: #e5e7eb;
}

ul li.done {
  text-decoration: line-through;
  background: #d1fae5;
  color: #047857;
}

/* Cards */
.card {
  background: #f9fafb;
  padding: 18px;
  border-radius: 15px;
  margin-bottom: 15px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  animation: fadeIn 0.6s ease;
}

.card h3 {
  margin-bottom: 8px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Quiz */
.quiz-options button {
  margin: 8px 0;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(90deg, #2563eb, #9333ea);
  color: #fff;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.quiz-options button:hover {
  transform: scale(1.05);
}

/* Notificação CTA */
.notification {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 1000;
  animation: fadeIn 0.5s ease;
}


/*stylo de bloqueio*/


.locked {
  background: #f9fafb;
  color: #444;
  text-align: center;
  border: 2px dashed #9333ea;
  border-radius: 12px;
  padding: 16px;
  margin-top: 20px;
}

.locked h3 {
  color: #9333ea;
  margin-bottom: 10px;
}

.locked button {
  background: linear-gradient(90deg, #9333ea, #2563eb);
  margin-top: 12px;
  padding: 10px 18px;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.locked button:hover {
  transform: scale(1.05);
}

.pay-link {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

.pay-link:hover {
  text-decoration: underline;
}

.spn {
  font-weight: bold;
  color: rgb(56, 6, 138);
}

.contact  {
  margin: 15px 0 0 19%;
  padding: 6px 20px;
  border-radius: 10px;
  box-shadow: 2px 5px 20px 6px rgb(62, 188, 226);
  background-color: rgb(56, 6, 138);
  color: white;
  font-weight: bold;
  font-weight: 500;
}

.contact a {
  color: white;
  text-decoration: none;
  list-style: none;
}

.contact:hover {
  background-color: aqua;
  color: #000;
  cursor: pointer;
  transform: translateY(-2px);
  transition: 0.4s;
}


.quekiz {
  opacity: 0.9;
  padding: 1px 20px;
  border-radius: 10px;
  margin: 15px auto;
  background-color: rgb(56, 6, 138);
  color: white;
  font-weight: 500;
  font-size: large;
  box-shadow: 2px 5px 20px 6px rgb(62, 188, 226);
}

.quekiz:hover {
  border: 1px solid black;
  background-color: aqua;
  color: #000;
  cursor: pointer;
  transform: translateX(-2px);
  transition: 0.3s;
}

.habitts {
  display: flex;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  margin-left: 30%;
  margin-top: 25px;
  padding: 4px 45px;
  background-color: rgb(56, 6, 138);
  color: white;
  border-radius: 5px;
}

.habitts:hover {
  background-color: aqua;
  color: #000;
  cursor: pointer;
  transform: translateY(-2px);
  transition: 0.4s;
}

.jogos a {
  list-style: none;
  text-decoration: none;
  color: black;
  font-size: 18px;
  font-weight: bold;
}