* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  width: 100%;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #ffe6f0, #fff);
  color: #333;
  overflow-x: hidden;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  text-align: center;
}

h1 {
  font-size: 3em;
  color: #cc0066;
  margin-bottom: 20px;
}

#typed-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
  min-height: 80px;
}

.media {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
  align-items: center;
  width: 100%;
}

.media img, .media video {
  width: 90%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.media img:hover, .media video:hover {
  transform: scale(1.03);
}

#music-btn, #btn-mensagem {
  padding: 12px 24px;
  font-size: 1.1em;
  background-color: #ff6699;
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

#music-btn:hover, #btn-mensagem:hover {
  background-color: #ff3366;
}

#mensagem-secreta p {
  font-size: 1.2em;
  color: #cc0066;
  background: rgba(255, 255, 255, 0.6);
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.final {
  font-size: 1.5em;
  color: #cc0066;
  background: rgba(255, 255, 255, 0.6);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.heart {
  position: fixed;
  width: 20px;
  height: 20px;
  background: red;
  transform: rotate(45deg);
  animation: floatUp 4s linear forwards;
  opacity: 0.7;
  z-index: 999;
  left: 50%;
  top: 100%;
}

.heart::before,
.heart::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: red;
  border-radius: 50%;
}

.heart::before {
  top: -10px;
  left: 0;
}

.heart::after {
  top: 0;
  left: -10px;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) rotate(45deg);
    opacity: 0.7;
  }
  100% {
    transform: translateY(-120vh) rotate(45deg);
    opacity: 0;
  }
}
#galeria-img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  transition: opacity 0.3s ease;
}

.slow-fade {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.galeria {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.botao-magico-wrapper {
  margin-top: 10px;
}

.btn-slide-magico {
  background: linear-gradient(to right, #ff758c, #ff7eb3);
  border: none;
  color: #fff;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.btn-slide-magico:hover {
  transform: scale(1.05);
}

.contador {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  margin-bottom: 40px; /* Dá espaço entre o contador e a galeria */
  text-align: center;
  font-size: 1.2rem;
}

.contador span {
  animation: pulse 1.5s infinite;
  color: hotpink;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.assinatura {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.assinatura.mostrar {
  opacity: 1;
  transform: translateY(0);
}
.video-galeria {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.video-galeria video {
  width: 300px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.video-galeria video:hover {
  transform: scale(1.05);
}
#tela-senha {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #ffe6f0, #fff);
  color: #cc0066;
  text-align: center;
  padding: 20px;
}

#senha-secreta {
  width: 100%;
  max-width: 400px;
  padding: 12px 16px;
  font-size: 1rem;
  border-radius: 10px;
  border: 2px solid #ff6699;
  outline: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
 

}

#tela-senha button {
  margin-top: 10px;
  background-color: #ff66a3;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

#tela-senha button:hover {
  background-color: #ff3380;
}

