
*{
  text-decoration: none;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

body {
  margin: 0;
  background-color: rgb(114, 48, 248);
  font-family: sans-serif;
  height: 100vh;
  overflow: hidden;
  position: relative;
}


  a{
    color: gold;
  }

  header {
    width: 100%;
    max-width: 100vw;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 2;
    position: relative;
  }

  .container {
    display: flex;
    gap: 5vw;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 600px;
  }

  .floating-item {
    width: 100px;
    height: 100px;
    background: rgba(132, 46, 244, 0.418);
    border-radius: 50%;
    border: solid gold 2px;
    box-shadow: 0 15px 25px rgba(0,0,0,0.25);
    animation: floatUpDown 3s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    color: gold;
    font-weight: bold;
    user-select: none;
    cursor: default;
    flex-shrink: 0;
  }
  .floating-item:nth-child(1) {
    animation-delay: 0s;
  }
  .floating-item:nth-child(2) {
    animation-delay: 0.3s;
  }
  .floating-item:nth-child(3) {
    animation-delay: 0.6s;
  }
  .floating-item:nth-child(4) {
    animation-delay: 0.9s;
  }
  .floating-item:nth-child(5) {
    animation-delay: 1.2s;
  }

  @keyframes floatUpDown {
    0%, 100% {
      transform: translateY(0);
      box-shadow: 0 15px 25px rgba(0,0,0,0.25);
    }
    50% {
      transform: translateY(-30px);
      box-shadow: 0 25px 35px rgba(0,0,0,0.35);
    }
  }

  /* Responsividade */
  @media (max-width: 350px), (max-height: 600px) {
    header {
      height: 160px;
      padding: 6px 10px;
    }
    .container {
      gap: 110px;
      max-width: 350px;
    }
    .floating-item {
      width: 80px;
      height: 80px;
      font-size: 1rem;
    }
    .board{
      height: 100px;
      width: 100px;
    }
  }
  

  .container {
    display: flex;
    gap: 5vw;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 600px;
  }

  .floating-item {
    width: 100px;
    height: 100px;
    background: rgba(132, 46, 244, 0.418);
    border-radius: 50%;
    border: solid gold 2px;
    box-shadow: 0 15px 25px rgba(0,0,0,0.25);
    animation: floatUpDown 3s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    color: gold;
    font-weight: bold;
    user-select: none;
    cursor: default;
    flex-shrink: 0;
  }
  .floating-item:nth-child(1) {
    animation-delay: 0s;
  }
  .floating-item:nth-child(2) {
    animation-delay: 0.3s;
  }
  .floating-item:nth-child(3) {
    animation-delay: 0.6s;
  }
  .floating-item:nth-child(4) {
    animation-delay: 0.9s;
  }
  .floating-item:nth-child(5) {
    animation-delay: 1.2s;
  }

  @keyframes floatUpDown {
    0%, 100% {
      transform: translateY(0);
      box-shadow: 0 15px 25px rgba(0,0,0,0.25);
    }
    50% {
      transform: translateY(-30px);
      box-shadow: 0 25px 35px rgba(0,0,0,0.35);
    }
  }

  /* Responsividade */
  @media (max-width: 350px), (max-height: 600px) {
    header {
      height: 160px;
      padding: 6px 10px;
    }
    .container {
      gap: 110px;
      max-width: 350px;
    }
    .floating-item {
      width: 80px;
      height: 80px;
      font-size: 1rem;
    }
    .board{
      height: 100px;
      width: 100px;
    }
  }

  .nuvem {
position: absolute;
top: 200px;
left: 300px;
background: white;
padding: 20px 40px;
border-radius: 50px;
font-weight: bold;
box-shadow: 0 4px 10px rgba(0,0,0,0.2);
cursor: pointer;
z-index: 3;
opacity: 0;

animation: aparecerEMover 9s ease-in-out infinite alternate;
animation-delay: 1s;
}


  .nuvem.expandida {
    animation: none;
    transform: translate(-50%, -50%) scale(1.3);
  }

  @keyframes aparecerEMover {
0% {
  opacity: 0;
  transform: translate(-50%, -50%) translateY(20px) translateX(-100px);
}
10% {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0) translateX(-100px);
}
100% {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0) translateX(150px);
}
}
  .popup-container {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
  }

  .fundo-clique {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: transparent;
    z-index: 9;
  }

  .opcoes {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    z-index: 11;
  }

  .opcao {
position: relative;
padding: 15px 30px;
background: white;
color: #6a0dad;
font-weight: bold;
border: none;
border-radius: 50px;
cursor: pointer;
box-shadow: 0 0 10px rgba(0,0,0,0.2);
text-align: center;
z-index: 1;
overflow: visible;
}

.opcao:nth-child(1)::before,
.opcao:nth-child(1)::after {
content: '';
position: absolute;
background: white;
border-radius: 50%;
z-index: -1;
}

.opcao:nth-child(1)::before {
width: 30px; height: 30px;
top: -10px; left: 20px;
}

.opcao:nth-child(1)::after {
width: 40px; height: 40px;
bottom: -15px; right: 25px;
}

.opcao:nth-child(2)::before,
.opcao:nth-child(2)::after {
content: '';
position: absolute;
background: white;
border-radius: 50%;
z-index: -1;
}
.opcao:nth-child(2)::before {
width: 25px; height: 25px;
top: -12px; left: 10px;
}
.opcao:nth-child(2)::after {
width: 35px; height: 35px;
top: -10px; right: 10px;
}

.opcao:nth-child(3)::before,
.opcao:nth-child(3)::after {
content: '';
position: absolute;
background: white;
border-radius: 50%;
z-index: -1;
}
.opcao:nth-child(3)::before {
width: 20px; height: 20px;
bottom: -10px; left: 15px;
}
.opcao:nth-child(3)::after {
width: 30px; height: 30px;
top: -15px; right: 20px;
}

.opcao:nth-child(4)::before,
.opcao:nth-child(4)::after {
content: '';
position: absolute;
background: white;
border-radius: 50%;
z-index: -1;
}
.opcao:nth-child(4)::before {
width: 35px; height: 35px;
top: -20px; left: 5px;
}
.opcao:nth-child(4)::after {
width: 25px; height: 25px;
bottom: -10px; right: 15px;
}

.opcao:nth-child(5)::before,
.opcao:nth-child(5)::after {
content: '';
position: absolute;
background: white;
border-radius: 50%;
z-index: -1;
}
.opcao:nth-child(5)::before {
width: 40px; height: 40px;
top: -10px; left: 25px;
}
.opcao:nth-child(5)::after {
width: 20px; height: 20px;
bottom: -5px; right: 10px;
}

  .popup-detalhe {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    justify-content: center;
    align-items: center;
    z-index: 20;
    animation: fadeIn 0.3s ease-in-out;
  }

  .popup-conteudo {
    background: white;
    color: black;
    padding: 30px;
    border-radius: 20px;
    width: 300px;
    text-align: center;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
  }

  .imagem-fundo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
  }

  .estrela {
    position: absolute;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards, brilhar 2s infinite;
    width: 15px;
    z-index: 2;
  }

  @keyframes brilhar {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
  }

  .efeitin {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

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

.efeitin:nth-child(1) { animation-delay: 0.5s; }
.efeitin:nth-child(2) { animation-delay: 1s; }
.efeitin:nth-child(3) { animation-delay: 1.5s; }
.efeitin:nth-child(4) { animation-delay: 2s; }
.efeitin:nth-child(5) { animation-delay: 2.5s; }
