@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #1a1a1a;
  --accent: #e63946;
  --accent-dark: #b52d38;
  --accent-glow: rgba(230, 57, 70, 0.3);
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #666666;
  --border-color: #2a2a2a;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.6rem 2rem;
  background: rgba(10, 10, 10, 0.95);
}

.navbar__logo {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-primary);
}

.navbar__logo span {
  color: var(--accent);
}

.navbar__menu {
  display: flex;
  gap: 2.5rem;
}

.navbar__link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.3s ease;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--accent);
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.navbar__hamburger span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

.navbar__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 2rem 60px;
}

.hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--bg-primary) 0%, rgba(10,10,10,0.7) 40%, rgba(10,10,10,0.2) 100%);
}

.hero__bg::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: 600px;
}

.hero__logo {
  margin-bottom: 1.5rem;
  max-width: 440px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.3s;
}

.hero__logo img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 20px rgba(230, 57, 70, 0.4));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.hero__logo img:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 0 35px rgba(230, 57, 70, 0.7));
}

.hero__tagline {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.6s;
}

.hero__tagline .dot {
  color: var(--accent);
  margin: 0 0.5rem;
}

.hero__description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 480px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.8s;
}

.hero__cta {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 1s;
}

.hero__cta:hover {
  background: var(--accent);
  color: var(--text-primary);
  box-shadow: 0 0 30px var(--accent-glow);
}

/* ===== GALLERY ===== */
/* ===== SOBRE O ARTISTA ===== */
.about {
  padding: 80px 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 3px;
  color: var(--text-primary);
  line-height: 1;
}

.section-title span {
  color: var(--accent);
}

.section-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.about__grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.about__card:hover {
  border-color: rgba(230, 57, 70, 0.5);
  box-shadow: 0 10px 40px rgba(230, 57, 70, 0.15);
  transform: translateY(-4px);
}

.about__card--reverse {
  grid-template-columns: 1fr 1fr;
}

.about__card--reverse .about__image {
  order: 2;
}

.about__card--reverse .about__content {
  order: 1;
}

.about__image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/10;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about__card:hover .about__image img {
  transform: scale(1.06);
}

.about__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.about__content {
  position: relative;
}

.about__number {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(230, 57, 70, 0.15);
  line-height: 1;
  position: absolute;
  top: -2.5rem;
  left: 0;
  user-select: none;
}

.about__content h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.about__content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ===== INFO GRID ===== */
.info-grid {
  padding: 60px 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--border-color);
}

.info-card {
  padding: 2rem 1.5rem;
}

.info-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.info-card__icon {
  color: var(--accent);
  font-size: 1.5rem;
}

.info-card__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 2px;
}

.info-card__subtitle {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.info-card__subtitle:first-of-type {
  margin-top: 0;
}

.info-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-card__list li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-left: 1rem;
  position: relative;
}

.info-card__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.info-card__image {
  margin-top: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.info-card__image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.info-card__image:hover img {
  transform: scale(1.05);
}

/* ===== CONTACT ITEMS ===== */
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.contact-item:hover {
  color: var(--accent);
}

.contact-item__icon {
  color: var(--accent);
  width: 20px;
  text-align: center;
  font-size: 1rem;
}

/* ===== CTA BOX ===== */
.cta-box {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 2px solid var(--accent);
  background: rgba(230, 57, 70, 0.08);
  text-align: center;
}

.cta-box__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.cta-box__subtitle {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--text-primary);
  line-height: 1.2;
}

/* ===== FOOTER ===== */
.footer {
  padding: 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__genre {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__genre-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer__genre-name {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text-primary);
  letter-spacing: 4px;
}

.footer__equalizer {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 30px;
}

.footer__equalizer span {
  width: 3px;
  background: var(--accent);
  animation: equalize 1.2s ease-in-out infinite;
}

.footer__equalizer span:nth-child(1) { height: 60%; animation-delay: 0s; }
.footer__equalizer span:nth-child(2) { height: 80%; animation-delay: 0.2s; }
.footer__equalizer span:nth-child(3) { height: 100%; animation-delay: 0.1s; }
.footer__equalizer span:nth-child(4) { height: 50%; animation-delay: 0.3s; }
.footer__equalizer span:nth-child(5) { height: 70%; animation-delay: 0.15s; }

.footer__social {
  text-align: center;
}

.footer__social-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.footer__social-links {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
  transform: translateY(-3px);
}

.footer__signature {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--accent);
  letter-spacing: 2px;
  font-style: italic;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes equalize {
  0%, 100% { height: 30%; }
  50% { height: 100%; }
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE OVERLAY ===== */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.95);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-overlay__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-overlay__link {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 4px;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.mobile-overlay__link:hover {
  color: var(--accent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__bg {
    width: 65%;
  }
  
  .info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .info-grid .info-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .about {
    padding: 60px 1.5rem;
  }

  .about__card,
  .about__card--reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .about__card--reverse .about__image {
    order: 1;
  }

  .about__card--reverse .about__content {
    order: 2;
  }
}

@media (max-width: 768px) {
  .navbar__menu {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .hero {
    min-height: 100vh;
    flex-direction: column;
    padding: 100px 1.5rem 40px;
  }

  .hero__bg {
    width: 100%;
    height: 60%;
    top: 0;
  }

  .hero__bg::after {
    background: linear-gradient(to top, var(--bg-primary) 20%, rgba(10,10,10,0.6) 60%, rgba(10,10,10,0.3) 100%);
  }

  .hero__content {
    margin-top: auto;
  }

  .hero__logo {
    max-width: 340px;
  }

  .gallery {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 1rem;
  }

  .info-grid {
    grid-template-columns: 1fr;
    padding: 40px 1.5rem;
  }

  .info-grid .info-card:last-child {
    grid-column: auto;
  }

  .footer {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .footer__social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero__logo {
    max-width: 270px;
  }
  
  .hero__tagline {
    font-size: 0.8rem;
    letter-spacing: 4px;
  }
}
