body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: radial-gradient(circle, rgba(67, 56, 73, 0.452), rgba(67, 56, 73, 0.918));
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

header {
  text-align: center;
  padding: 20px;
  background: radial-gradient(circle, rgba(67, 56, 73, 0.918), rgb(66, 41, 43));
  color: rgb(59, 29, 0);
  width: 100%;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

header img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

header h1 {
  margin-top: 10px;
  font-size: 2rem;
  text-transform: uppercase;
}

  /* Container para os links */
.links-container {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 30px; /* Espaçamento entre os links */
      margin-top: 10px;
  }

    .links-container h2 {
      margin: 0;
      font-size: 1.2em;
    }

    .links-container a {
      color: #4caf50;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .links-container a:hover {
      color: #8b0000;
    }

header a{
  padding: 4px 10px;
  font-size: 1rem;
}

header button {
  padding: 4px 10px;
  font-size: 10px;
  border: none;
  background-color: #6e1a1a;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

header button:hover {
  background-color: #8c2b2b;
}

.intro-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
  text-align: center;
  width: 100%;
  background-image: url('sakuGif.gif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      
}

.intro-container img {
  max-width: 80%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.accordion {
  border-radius: 5px;
  margin-bottom: 6px;
  overflow: hidden;
  padding-top: 20px;
  width: 100%; /* Garante que eles ocupem a largura total do container */
  max-width: 800px; /* Define um tamanho consistente para todos */
  height: 100px; /* Define altura fixa para todos */
}
.accordion-header {
  background-color: #f5707048;
  cursor: pointer;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header:hover {
  background-color: #8673a3d2;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 10px;
  background-color: #9193ff4f;
}

.accordion-content p {
  margin: 10px 0;
}

.accordion.active .accordion-content {
  max-height: 100px; /* Ajuste conforme necessário */
}

.arrow {
  transition: transform 0.3s ease;
}

.accordion.active .arrow {
  transform: rotate(90deg);
}

.options-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
  background: linear-gradient(rgba(67, 56, 73, 0), rgba(83, 86, 153, 0.534), rgba(0, 13, 255, 0));
  width: 100%;
}

.options-wrapper {    
  display: flex;
  justify-content: center;
  gap: 50px;
}

h1 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin: 0;
}

.option {
  position: relative;
  width: 280px;
  height: 100px;
  cursor: pointer;
  border-radius: 50px; /* Pílula */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #0026ff8c;
}

.option p {
  position: absolute;
  color: rgb(0, 16, 235);
  font-size: 25px;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
  margin: 0;
  transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
}

.option:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
  box-shadow: 0 0 20px rgba(0, 29, 158, 0.8), 0 0 40px rgba(95, 0, 204, 0.5);
  border: 3px solid #0026ff; /* Borda neon */
  filter: brightness(0.7);
}

.option:hover p {
  color: #ffffff;
  text-shadow: 0 0 10px #6f00ff, 0 0 20px #000e8f, 0 0 30px #8700bd;
  transform: scale(1.2);
}
