body {
  background-color: #fff1f5;
  font-family: 'Comic Sans MS', 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  padding: 1rem;
  position: relative;
}

/* Bolhas fofas de fundo */
body::before, body::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 182, 193, 0.3);
  animation: floatBubble 6s ease-in-out infinite;
  opacity: 0.7;
  pointer-events: none;
}

body::before {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 15%;
  animation-delay: 0s;
}

body::after {
  width: 60px;
  height: 60px;
  top: 75%;
  left: 70%;
  animation-delay: 3s;
}

@keyframes floatBubble {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.7; }
  50% { transform: translateY(-20px) translateX(15px); opacity: 0.3; }
}

h1 {
  font-size: 3rem;
  color: #ff6699;
  text-shadow: 2px 2px 4px #cc3366;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  padding: 0.5em 1em;
  animation: gentleGlow 3s ease-in-out infinite alternate;
  font-weight: bold;
  position: relative;
  user-select: none;
}

h1::before,
h1::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  width: 100%;
  color: #cc3366;
  opacity: 0.5;
  pointer-events: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25em 0.5em;
  font-weight: 700;
}

h1::before {
  top: -2px;
  left: -2px;
  animation: softGlitchTop 3s ease-in-out infinite alternate;
}

h1::after {
  top: 2px;
  left: 2px;
  animation: softGlitchBottom 3s ease-in-out infinite alternate;
}

@keyframes gentleGlow {
  0% {
    text-shadow:
      2px 2px 5px #cc3366,
      0 0 10px #ffc0cb,
      0 0 20px #ffc0cb;
  }
  100% {
    text-shadow:
      3px 3px 8px #cc3366,
      0 0 15px #ffc0cb,
      0 0 30px #ffc0cb;
  }
}

@keyframes softGlitchTop {
  0%, 100% { transform: translate(0, 0); opacity: 0.6; }
  50% { transform: translate(-1.5px, -1.5px); opacity: 0.4; }
}

@keyframes softGlitchBottom {
  0%, 100% { transform: translate(0, 0); opacity: 0.6; }
  50% { transform: translate(1.5px, 1.5px); opacity: 0.4; }
}

.image-container {
  text-align: center;
  margin: 2rem 0;
}

img {
  border: 5px dotted #ff99cc;
  border-radius: 20px;
  background: #fff0f5;
  padding: 5px;
  max-width: 100%;
  height: auto;
  box-shadow: 0 6px 12px rgba(255, 105, 180, 0.3);
  transition: transform 0.3s ease;
}

img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(255, 105, 180, 0.5);
}

p, li {
  font-size: 1.2rem;
  color: #ff6699;
  font-family: 'Poppins', sans-serif;
  text-shadow: 1px 1px 1px #ffe4ec;
}

a {
  font-size: 1.2rem;
  color: #cc3399;
  text-decoration: none;
  border-bottom: 2px dashed transparent;
  transition: border-color 0.3s ease;
}

a:hover {
  border-color: #ff6699;
  cursor: pointer;
}

.cute-title {
  font-size: 3.5rem;
  color: #e56c74;
  text-shadow:
    1px 1px 2px #a9438b,
    0 0 10px #fbb6c7,
    0 0 20px #fbb6c7;
  font-family: 'Comic Sans MS', 'Poppins', cursive, sans-serif;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0.4em 1em;
  border-radius: 20px;
  animation: bounceGlow 4s ease-in-out infinite alternate;
  text-align: center;
  user-select: none;
  margin-top: 1em;
}

/* animação suave com brilho */
@keyframes bounceGlow {
  0% {
    transform: scale(1);
    text-shadow:
      1px 1px 2px #a9438b,
      0 0 10px #fbb6c7,
      0 0 20px #fbb6c7;
  }
  100% {
    transform: scale(1.03);
    text-shadow:
      2px 2px 4px #a9438b,
      0 0 15px #fbb6c7,
      0 0 30px #fbb6c7;
  }
}

body {
  background-color: #fce4ec;
  overflow: hidden;
  position: relative;
  margin: 0;
  padding: 0;
  height: 100vh;
  font-family: "Comic Sans MS", cursive, sans-serif;
}

/* Bolhas Flutuantes */
.bubble {
  position: absolute;
  bottom: -100px;
  width: 40px;
  height: 40px;
  background: rgba(255, 182, 193, 0.3);
  border-radius: 50%;
  animation: rise 12s infinite ease-in;
}

.bubble:nth-child(1) { left: 10%; animation-delay: 0s; }
.bubble:nth-child(2) { left: 30%; animation-delay: 2s; }
.bubble:nth-child(3) { left: 50%; animation-delay: 4s; }
.bubble:nth-child(4) { left: 70%; animation-delay: 6s; }
.bubble:nth-child(5) { left: 90%; animation-delay: 8s; }

@keyframes rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translateY(-120vh) scale(1.2);
    opacity: 0;
  }
}

/* Estrelinhas Brilhantes */
.star {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fff8dc;
  border-radius: 50%;
  box-shadow: 0 0 5px #fff, 0 0 10px #ffd1dc;
  animation: twinkle 2s infinite alternate;
}

.star:nth-child(6) { top: 20%; left: 30%; animation-delay: 0s; }
.star:nth-child(7) { top: 50%; left: 60%; animation-delay: 1s; }
.star:nth-child(8) { top: 70%; left: 20%; animation-delay: 2s; }
.star:nth-child(9) { top: 30%; left: 80%; animation-delay: 3s; }

@keyframes twinkle {
  0% { opacity: 0.3; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.3); }
}


