* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: #0a0e27; color: #fff; line-height: 1.6; }

/* NAVBAR */
.navbar { background: linear-gradient(135deg, #1a1f3a 0%, #2d1b4e 100%); padding: 1.5rem 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 8px 32px rgba(0,255,255,0.1); }

.nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 2rem; }

.logo { font-size: 1.8rem; font-weight: bold; color: #00ffff; letter-spacing: 2px; }

.logo-icon { margin-right: 0.5rem; }

.nav-links { display: flex; list-style: none; gap: 2rem; }

.nav-links a { color: #fff; text-decoration: none; font-weight: 600; transition: color 0.3s ease, text-shadow 0.3s ease; }

.nav-links a:hover { color: #00ffff; text-shadow: 0 0 10px rgba(0,255,255,0.8); }

/* HERO */
.hero { min-height: 100vh; background: linear-gradient(135deg, #1a0033 0%, #330055 50%, #003366 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }

.hero-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 50% 50%, rgba(0,255,255,0.1) 0%, transparent 50%), radial-gradient(circle at 100% 0%, rgba(255,0,127,0.1) 0%, transparent 50%); animation: pulse 15s ease-in-out infinite; }

@keyframes pulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

.hero-content { text-align: center; z-index: 1; }

.hero-title { font-size: 4rem; font-weight: 900; margin-bottom: 1rem; background: linear-gradient(135deg, #00ffff, #ff00ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-shadow: 0 0 30px rgba(0,255,255,0.5); letter-spacing: 4px; }

.hero-subtitle { font-size: 1.3rem; color: #00ffff; margin-bottom: 2rem; }

.hero-buttons { display: flex; gap: 1.5rem; justify-content: center; }

/* BUTTONS */
.btn { padding: 0.8rem 2rem; border: none; border-radius: 5px; font-weight: 700; cursor: pointer; transition: all 0.3s ease; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; }

.btn-primary { background: linear-gradient(135deg, #00ffff, #0080ff); color: #000; box-shadow: 0 0 20px rgba(0,255,255,0.5); }

.btn-primary:hover { transform: scale(1.05); box-shadow: 0 0 40px rgba(0,255,255,0.8); }

.btn-secondary { background: transparent; border: 2px solid #00ffff; color: #00ffff; }

.btn-secondary:hover { background: #00ffff; color: #000; }

.btn-play {
  background: #ff0080;
  color: #fff;
  padding: 0.4rem 0.9rem;   /* menor */
  font-size: 0.80rem;       /* um pouco menor */
  border-radius: 999px;     /* formato de pílula */
}


.btn-play:hover { background: #ff4db8; box-shadow: 0 0 20px rgba(255,0,128,0.6); }

/* SECTIONS */
section { padding: 4rem 2rem; }

.container { max-width: 1200px; margin: 0 auto; }

section h2 { font-size: 2.5rem; margin-bottom: 2rem; text-align: center; background: linear-gradient(135deg, #00ffff, #ff00ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* RELEASES */
/* LANÇAMENTOS */
.releases {
  padding: 3rem 2rem;
}

.releases h2 {
  margin-bottom: 2rem;
  font-size: 1.8rem;
  text-align: center;
}

.releases-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.release-card {
  width: 100%;
  max-width: 260px;
  border-radius: 12px;
  overflow: hidden;
  background: #151935;
  display: flex;
  flex-direction: column;
}

/* Foto em cima */
.release-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}

/* Fundo colorido com as informações */
.release-info {
  padding: 1.5rem;
  background: linear-gradient(135deg, #ff1493 0%, #00bfff 50%, #ffeb3b 100%);
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.release-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.release-info p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.btn-ouvir {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.85rem;
  border: 2px solid #fff;
}

.btn-ouvir:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* ARTISTS */
.artists { background: linear-gradient(135deg, #0f0a1a 0%, #1a0033 100%); }

.artists-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }

.artist-card { text-align: center; padding: 2rem 1rem; background: linear-gradient(135deg, rgba(40,20,80,0.6), rgba(60,20,100,0.6)); border: 1px solid rgba(255,0,255,0.3); border-radius: 15px; transition: all 0.3s ease; backdrop-filter: blur(10px); }

.artist-card:hover { transform: scale(1.05); border-color: #ff00ff; box-shadow: 0 10px 40px rgba(255,0,127,0.3); }

.artist-avatar { width: 120px; height: 120px; margin: 0 auto 1rem; border-radius: 50%; border: 3px solid #80ffff; box-shadow: 0 0 20px rgba(0,255,255,0.5); overflow: hidden; }

.artist-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }

.artist-card p { color: #aaa; font-size: 0.9rem; }

/* SERVICES */
.services { background: linear-gradient(135deg, #0a0e27 0%, #2d1b4e 100%); }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }

.service-card { background: linear-gradient(135deg, rgba(30,50,100,0.6), rgba(50,20,120,0.6)); border: 2px solid #00ffff; border-radius: 10px; padding: 2rem; text-align: center; transition: all 0.3s ease; backdrop-filter: blur(10px); }

.service-card:hover { transform: translateY(-5px); border-color: #ff00ff; box-shadow: 0 15px 50px rgba(0,255,255,0.3); }

.service-icon { font-size: 3rem; margin-bottom: 1rem; }

.service-card h3 { font-size: 1.3rem; margin-bottom: 0.8rem; }

.service-card p { color: #bbb; font-size: 0.95rem; }

/* CONTACT */
.contact { background: linear-gradient(135deg, #0f0a1a 0%, #1a1a3a 100%); }

.contact-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.contact-form input, .contact-form select, .contact-form textarea { background: rgba(255,255,255,0.1); border: 1px solid rgba(0,255,255,0.3); color: #fff; padding: 1rem; border-radius: 5px; font-size: 1rem; backdrop-filter: blur(10px); }

.contact-form input::placeholder, .contact-form textarea::placeholder { color: #888; }

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: #00ffff; box-shadow: 0 0 15px rgba(0,255,255,0.5); }

.contact-info h3 { font-size: 1.3rem; margin-bottom: 1rem; color: #00ffff; }

.contact-info p { margin-bottom: 0.8rem; color: #bbb; }

.social-links { display: flex; gap: 1rem; margin-top: 1.5rem; }

.social-links a { display: inline-block; background: linear-gradient(135deg, #00ffff, #0080ff); color: #000; padding: 0.6rem 1.2rem; border-radius: 5px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; }

.social-links a:hover { transform: scale(1.1); box-shadow: 0 0 20px rgba(0,255,255,0.6); }

/* FOOTER */
.footer { background: #000; text-align: center; padding: 2rem; border-top: 1px solid rgba(0,255,255,0.2); color: #888; }

@media (max-width: 768px) { 
  .hero-title { font-size: 2.5rem; }
  .contact-content { grid-template-columns: 1fr; }
  .nav-links { flex-direction: column; gap: 0.5rem; }
}