body {
  margin: 0;
  padding: 0;
  font-family: "Gowun Dodum", sans-serif;
  background: linear-gradient(
    -45deg,
    rgba(255, 0, 0, 0.4),
    rgb(255, 0, 0),
    rgb(68, 68, 68),
    rgba(11, 77, 153, 0.5)
  );
  background-size: 400% 400%;
  animation: auroraAnimation 5s ease infinite;
  display: flex;
  justify-content: center;
  overflow: auto; /* rolagem da pagina */
  flex-direction: column;
  align-items: stretch;
  gap: 50px;
  z-index: 1;
}
#aurora {
  position: fixed;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(34, 139, 230, 0.4),
    rgba(0, 255, 180, 0.4),
    rgba(34, 139, 230, 0.4),
    rgba(23, 32, 42, 0.5)
  );
  background-size: 400% 400%;
  animation: auroraMove 4.4s cubic-bezier(0.25, 1, 0.5, 1) infinite;
  will-change: background-position;
  z-index: -1;
}
@keyframes auroraMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(236, 235, 235, 0.05),
    rgba(47, 184, 20, 0.05)
  );
  mix-blend-mode: overlay;
  animation: fogMove 2s infinite ease-in-out;
  z-index: -1;
}

img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid white;
  margin-bottom: 15px;
}
.section {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-bruno {
  .section-bruno {
    background: linear-gradient(135deg, #000000, #000000);
    padding: 50px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 0;
  }
}
.photo {
  padding: 25px;
  text-align: center;
}

h1 {
  text-decoration: none;
  position: relative;
  text-align: center;
  margin-top: 0px;
}

h2 {
  font-size: 18px;
  color: #f5deb3;
  text-align: center;
  margin-top: -0.9em;
}
.about-me {
  font-size: 18px;
  text-align: justify;
  line-height: 1.6;
  color: #000000;
  margin-top: -25px;
}
.linha {
  border: none;
  height: 3px;
  background: linear-gradient(to right, transparent, #f5deb3, transparent);
  margin: 20px auto;
  width: 60%;
}

.glass {
  background: rgba(2228, 98, 241, -1000);
  backdrop-filter: blur(1px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px;
  margin: 20px auto;
  border-radius: 10px;
  max-width: 600px;
  text-align: justify;
  line-height: 1.6;
  color: #dfdfdf;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s ease-in-out forwards;
}

.glass2 {
  background: rgba(2228, 98, 241, -1000); /* Fundo translúcido */
  backdrop-filter: blur(1px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 20px;
  margin: 20px auto;
  max-width: 700px;
  border-radius: 20px;
  color: #ffffff;
  z-index: 1;
  position: relative;
}

/* linha bruno */
.glass2 .linha {
  background: linear-gradient(to right, transparent, #ffffff, transparent);
}

.glass2 .quote {
  font-style: italic;
  font-size: 1rem;
  color: rgb(255, 255, 255);
  text-align: center;
  margin: 10px auto;
  padding: 10px;
  border-left: transparent;
  max-width: 261px;
  background: rgba(255, 255, 255, 0.05);
}
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
h1,
h2,
h3 {
  color: rgb(255, 255, 255);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.quote {
  font-style: italic;
  font-size: 1rem;
  color: rgb(255, 255, 255);
  text-align: center;
  margin: 10px auto;
  padding: 10px;
  border-left: transparent;
  max-width: 261px;
  background: rgba(255, 255, 255, 0.05);
}
.hearts-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}
.heart {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: rgba(199, 199, 199, 0.726);
  transform: rotate(-45deg);
  animation: float 5s infinite ease-in-out;
  z-index: -1;
  will-change: transform, opacity;
}
.heart::before,
.heart::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: rgba(199, 199, 199, 0.726);
  border-radius: 50%;
}
.heart::before {
  top: -10px;
  left: 0;
}
.heart::after {
  top: 0;
  left: 10px;
}
@keyframes float {
  0% {
    transform: translateY(0) rotate(-45deg) scale(1);
  }
  50% {
    transform: translateY(-20px) rotate(-45deg) scale(1.2);
  }
  100% {
    transform: translateY(0) rotate(-45deg) scale(1);
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1) rotate(-45deg);
  }
  50% {
    transform: scale(1.2) rotate(-45deg);
  }
}
/* Foto dela */
.photo-container {
  position: relative;
  display: inline-block;
  margin: 20px;
}

.foto {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.thought-balloon {
  position: absolute;
  top: -5px;
  right: -460px;
  width: 200px;
  height: 130px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: appear 0.5s ease-in-out;
  z-index: 10;
  padding: 10px;
  font-size: 16px;
  line-height: 1.4; /* Espaçamento entre linhas */
  color: #333; /* Cor do texto */
  font-family: "Gowun Dodum", sans-serif; /* Fonte personalizada */
}
/* Rabinho do balão */
.thought-balloon::after {
  content: "";
  position: absolute;
  bottom: 35px; /* Abaixo do balão */
  left: -10%;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
@keyframes appear {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.spoiler-click {
  background-color: #000;
  color: #000;
  border-radius: 4px;
  padding: 0 3px;
  cursor: pointer;
  transition: color 0.3s ease;
  font-size: 0.75em;
}
.spoiler-click.revealed {
  color: #fff;
}
