body {
  font-family: 'Hemi Head', sans-serif;
  background-image: url('images/InShot_20250305_101445569.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  color: white;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* HEADER igual ao Home */
.styled-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  min-width: 100vw;
  height: 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  padding: 0 50px;
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.2);
  z-index: 1000;
  border-bottom: 2px solid #f12400;
  box-sizing: border-box;
}
.logo img {
  height: 80px;
  transition: transform 0.3s ease;
}
.logo img:hover {
  transform: scale(1.05);
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 50px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.main-nav ul li a {
  color: white;
  font-size: 24px;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
  transition: color 0.3s ease, transform 0.2s ease;
  position: relative;
}
.main-nav ul li a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #f12400;
  transition: width 0.3s ease;
  position: absolute;
  bottom: -6px;
  left: 0;
}
.main-nav ul li a:hover::after {
  width: 100%;
}
.main-nav ul li a:hover {
  color: #f12400;
  transform: scale(1.05);
}

/* MENU MOBILE */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
  width: 32px;
  height: 32px;
  justify-content: center;
  transition: transform 0.3s;
}
.hamburger span {
  width: 100%;
  height: 4px;
  background-color: #f12400;
  border-radius: 2px;
  transition: 0.3s;
  display: block;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .styled-header{
    padding: 0 12px;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 110px;
    left: 0;
    width: 100%;
    background-color: #000;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
  }
  .main-nav.show {
    display: flex;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 15px;
  }
  .main-nav ul li a {
    font-size: 20px;
  }
}

main {
  margin-top: 130px;
}
section {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 10px;
  padding: 40px 30px 30px 30px;
  margin: 30px auto 40px auto;
  width: 92%;
  max-width: 600px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.533);
}

#discografia h1 {
  color: #f12400;
  font-size: 2.1rem;
  letter-spacing: 2px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

/* GRID DE ÁLBUNS - DESKTOP: 1 POR LINHA */

.disco-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
  justify-items: center;
}

.disco-card {
  background: #181818;
  border-radius: 12px;
  box-shadow: 0 2px 12px #0006;
  padding: 18px 10px 14px 10px;
  text-align: center;
  transition: transform 0.24s cubic-bezier(.31,1.56,.45,.81), box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  animation: discoCardEntry 0.8s cubic-bezier(.32,1.13,.56,1.15) backwards;
}
@keyframes discoCardEntry {
  0% {
    transform: scale(0.7) translateY(40px);
    opacity: 0.2;
  }
  70% {
    transform: scale(1.06) translateY(-10px);
    opacity: 1;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}
.disco-card:hover {
  animation: discoCardPulse 0.4s;
  transform: scale(1.08) translateY(-6px) rotate(-1deg);
  box-shadow: 0 8px 32px #f124002a, 0 2px 8px #fff3;
  border: 1.5px solid #f12400;
}
@keyframes discoCardPulse {
  0% { transform: scale(1) }
  45% { transform: scale(1.09) rotate(-2deg);}
  75% { transform: scale(1.06) rotate(1deg);}
  100% { transform: scale(1.08) rotate(-1deg);}
}

.disco-card img {
  background: #000000;
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 9px;
  margin-bottom: 10px;
  box-shadow: 0 1px 6px #f1240036;
  transition: transform 0.18s;
}
.disco-card:hover img {
  transform: scale(1.12);
}
.disco-card p {
  color: #fff;
  font-size: 0.98rem;
  margin: 0;
  letter-spacing: 1px;
  font-family: 'Hemi Head', sans-serif;
}

/* RESPONSIVO: MOBILE = 1 POR LINHA */
@media (max-width: 700px) {
  section {
    padding: 18px 0 18px 0;
    margin: 10px 0 20px 0;
    width: 100vw;
    max-width: 100vw;
    border-radius: 0;
    box-shadow: none;
  }
  .disco-grid {
    grid-template-columns: 1fr;
    gap: 16px 0;
    max-width: 100vw;
    width: 100vw;
    border-radius: 2px solid red;
  }

  .disco-card{
    width: 190px;
    height: auto;
    gap: 15px;
  }
  .disco-card img {
    width: 140px;
    height: 140px;
  }
}


/* FOOTER igual ao Home */
.footer-content {
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-social {
  background-color: #000;
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 18px;
  margin-top: 6px;
}
.footer-social a {
  background-color: #111;
  padding: 13px;
  border-radius: 50%;
  margin: 0 6px;
  text-decoration: none !important;
  outline: none;
  box-shadow: none;
  display: inline-block;
  transition: background 0.23s;
}
.footer-social a i {
  font-size: 26px;
  color: #f12400;
  transition: color 0.3s, transform 0.3s;
}
.footer-social a:hover i {
  text-decoration: underline;
  color: #ff4c4c;
  transform: scale(1.18);
}

.footer-logo {
  width: 150px;   /* antes era 160px */
  height: auto;
  margin-bottom: 12px;
}

.footer-links {
  margin-top: 12px;
  color: #bbb;
  font-size: 15px;
  margin-bottom: 15px;
}
.footer-links a {
  color: #f12400;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: darkred;
}

footer {
  text-align: center;
  padding: 40px 5px;
  background-color: #000000;
  color: #888;
  font-size: 14px;
  margin-top: 50px;
  border-top: 2px solid #f12400;
  margin-bottom: auto;
}

footer a {
    color: #f12400;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover{
    color: #ff4c4c;
}