body {
  margin: 0;
  overflow-x: hidden;
}

/* CAPA */
.capa {
  height: 100vh;
  position: relative;
}

/* FUNDO */
.bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("https://i.ibb.co/TDK8K49R/F176-BD36-D655-4-DB9-B203-A6-DF80670781.png") center/cover;
  z-index: -2;
}

/* ARTE */
.arte {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* INSTAGRAM */
.insta {
  position: absolute;
  width: 35px;
  bottom: 120px;
  left: 45%;
}

/* BOTÃO FINAL PREMIUM */
.botao {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);

  width: 240px;
  height: 65px;
  border-radius: 18px;

  background: linear-gradient(90deg, #00ff88, #ffd700, #ff0000);

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;

  color: #000;

  box-shadow: 0 0 25px rgba(255, 200, 0, 0.6);

  animation: pulse 1.2s infinite;
}

/* ANIMAÇÃO */
@keyframes pulse {
  0% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.08); }
  100% { transform: translateX(-50%) scale(1); }
}

/* GALERIA */
.galeria {
  margin-top: -80px;
  display: flex;
  gap: 10px;
  padding: 15px;
  overflow-x: auto;
}

.galeria img {
  width: 140px;
  border-radius: 10px;
  cursor: pointer;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.modal img {
  max-width: 90%;
  border-radius: 10px;
}