/* Fundo gradiente */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: linear-gradient(135deg, #f9a8d4, #7dd3fc, #0ea5e9);
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
}

/* Hero central */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Wrapper centraliza texto e mascote */
.content-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

.content {
  max-width: 400px;
  animation: fadeIn 1.5s ease;
}

.subtitle {
  font-size: 0.9rem;
  color: #ffe4f1;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h1 {
  font-size: 2.8rem;
  margin: 10px 0;
}

h1 span {
  color: #f472b6;
}

p {
  font-size: 1.1rem;
  margin: 20px 0;
  color: #fdf2f8;
}

/* Botão */
.cta {
  background: linear-gradient(45deg, #f472b6, #ec4899);
  border: none;
  padding: 12px 28px;
  border-radius: 25px;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.4);
}

/* Mascote */
.mascote img {
  width: 260px;
  animation: bounce 3s infinite ease-in-out;
}

/* Bolhas, estrelas e conchas */
.bubbles, .stars, .shells, .fishes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}

.bubbles span {
  position: absolute;
  bottom: -50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  animation: rise 10s infinite ease-in;
}

@keyframes rise {
  0% { transform: translateY(0) scale(1); opacity: 0.7; }
  100% { transform: translateY(-100vh) scale(0.3); opacity: 0; }
}

.stars span {
  position: absolute;
  background: white;
  border-radius: 50%;
  opacity: 0.8;
  animation: twinkle 2s infinite alternate;
}
@keyframes twinkle {
  from { opacity: 0.2; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1.2); }
}

.shells span {
  position: absolute;
  bottom: 0;
  font-size: 1.5rem;
  animation: floatShells 12s infinite ease-in-out;
}
@keyframes floatShells {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
  50% { transform: translateY(-20px) rotate(15deg); }
  100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
}

/* Peixinhos */
.fish {
  position: absolute;
  width: 70px;
  transition: transform 0.2s linear;
  pointer-events: none;
}

/* Animações */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Responsivo */
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}
