/* Reset básico */
*{margin:0;padding:0;box-sizing:border-box}
body{font-family:'Roboto',sans-serif;line-height:1.6;color:#333;background:#fff}
h1,h2{font-family:'Bangers',cursive}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-sticker {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 220px; /* más grande */
  z-index: 1000;
  filter: drop-shadow(3px 3px 6px rgba(0,0,0,0.6));
  animation: zoomIn 0.8s ease-out;
}
@keyframes zoomIn {
  0% { transform: scale(0) rotate(-15deg); opacity: 0; }
  60% { transform: scale(1.2) rotate(5deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); }
}

/* ===== Secciones ===== */
section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}
section h2 {
  color: #E62429; /* rojo Spider-Man */
  margin-bottom: 20px;
  font-size: 2rem;
}

/* ===== Historia ===== */
.story {
  background: #f4f4f4;
  border-radius: 10px;
  padding: 40px 20px;
}

/* ===== Detalles ===== */
.details ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}
.details li {
  margin: 10px 0;
  font-size: 1.2rem;
}

/* ===== Cuenta regresiva ===== */
.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.countdown div {
  background: #203E96;
  color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 1rem;
}
.countdown span {
  display: block;
  font-size: 2rem;
  color: #FFD700;
}

/* ===== Llamado épico ===== */
.heroes-call {
  background: #E62429;
  color: #fff;
  border-radius: 10px;
  padding: 60px 20px;
}
.heroes-call h2 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.heroes-call p {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

/* ===== Botones ===== */
.btn {
  display:inline-block;
  padding:14px 28px;
  border-radius:8px;
  text-decoration:none;
  font-weight:bold;
  transition:transform .3s, background .3s;
  margin-top:10px;
}
.btn:hover { transform: scale(1.05); }
.btn-blue { background:#203E96; color:#fff; }
.btn-blue:hover { background:#162a66; }
.btn-orange { background:#F36F21; color:#fff; }
.btn-orange:hover { background:#d95d1a; }

/* ===== Footer ===== */
footer {
  background: #203E96;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* ===== Animaciones scroll ===== */
[data-animate] {opacity:0;transform:translateY(30px);transition:all .8s ease}
[data-animate].active {opacity:1;transform:translateY(0)}
/* Botón flotante de música */
.music-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;               /* esquina opuesta al sticker */
  background: #E62429;      /* rojo Spider-Man */
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 3px 3px 8px rgba(0,0,0,0.4);
  z-index: 1001;
  transition: transform 0.2s, background 0.3s;
}
.music-btn:hover {
  background: #b81c1f;
  transform: scale(1.1);
}
/* Hero estilo cómic */
.hero-comic {
  height: 100vh;
  background: url('../images/fondo.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-comic .overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.comic-title {
  max-width: 90%;
  width: 480px;
  animation: comicPop 1s ease-out;
}

/* Animación POP */
@keyframes comicPop {
  0% { transform: scale(0) rotate(-20deg); opacity: 0; }
  60% { transform: scale(1.2) rotate(10deg); opacity: 1; }
  80% { transform: scale(0.9) rotate(-5deg); }
  100% { transform: scale(1) rotate(0); }
}

/* Botón */
.btn {
  display:inline-block;
  padding:14px 28px;
  border-radius:8px;
  text-decoration:none;
  font-weight:bold;
  transition:transform .3s, background .3s;
  margin-top:30px;
}
.btn:hover { transform: scale(1.05); }
.btn-orange { background:#F36F21; color:#fff; }
.btn-orange:hover { background:#d95d1a; }
