* {
  box-sizing: border-box;
}

body {
  background-color: #161022;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

header {
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: background-color 0.3s ease;
}

header.scrolled {
  background-color: rgba(0, 0, 0, 0.8);
}

.section-hero {
  background-image: url("../imgs/hero.png");
  
}

.hero-card {
  background-image: linear-gradient(to right, #27377c, #9b3c77);
  border-radius: 1rem;
  width: calc(90%);
}

.hero-button {
  background-image: linear-gradient(to right, #27377c, #9b3c77);
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(39, 55, 124, 0.3);
  transition: all 0.3s ease;
}

.hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(39, 55, 124, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

.trilha {
  background-image: linear-gradient(to right,#5170ff, #7451ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sonora {
  background-image: linear-gradient(to right,#ffa2db, #ff7ccd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Hamburger Menu Styles */
#hamburger-btn {
  transition: transform 0.3s ease;
}

#hamburger-btn:hover {
  transform: scale(1.1);
}

#mobile-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 40;
}

#mobile-menu.open {
  max-height: 500px;
  opacity: 1;
}

/* Additional responsive styles */
@media (max-width: 640px) {
   .hero-button {
    width: 100%;
    max-width: 200px;
  }
}

