/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --primary-color: #FF8C00; /* Laranja/Dourado */
  --dark-bg: #1a1a1a;
  --black-bg: #000000;
  --light-text: #FFFFFF;
  --gray-text: #adb5bd;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--light-text);
  background-color: var(--dark-bg);
  overflow-x: hidden;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: #ffae42;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
}

/*--------------------------------------------------------------
# Seções Gerais
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.section-bg {
  background-color: var(--black-bg);
}

.section-title {
  text-align: center;
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-text);
}

.section-title p {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  color: var(--light-text);
}


/*--------------------------------------------------------------
# Header / Navbar
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
  background: rgba(0, 0, 0, 0.5);
}

#header.header-scrolled {
  background: var(--black-bg);
  padding: 10px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.logo-img {
  max-height: 50px;
  transition: all 0.3s;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar .nav-link {
  color: var(--light-text);
  font-weight: 500;
  margin: 0 15px;
  transition: all 0.3s;
  text-transform: uppercase;
  font-size: 14px;
}

.navbar .nav-link:hover, .navbar .nav-link.active {
  color: var(--primary-color);
}

.btn-cta {
  background-color: var(--primary-color);
  color: var(--black-bg);
  border-radius: 50px;
  padding: 8px 25px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.3s;
  border: 2px solid var(--primary-color);
}

.btn-cta:hover {
  background-color: transparent;
  color: var(--primary-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url('../images/background.webp') top center;
  background-size: cover;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero:before {
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

#hero .container {
  position: relative;
  z-index: 3;
  text-align: center;
}

.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5; /* Garante que o conteúdo fique sobre as imagens dos artistas */
}

.hero-logo-nome {
    max-width: 500px;
    margin-bottom: 30px;
    filter: drop-shadow(0 3px 10px rgba(0,0,0,0.3));
}

.btn-hero-cta {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  color: var(--black-bg);
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  text-transform: uppercase;
}

.btn-hero-cta:hover {
  background: transparent;
  color: var(--primary-color);
}

/* Imagem da dupla para Desktop */
.hero-duo-img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-height: 95vh;
  max-width: 50%;
  z-index: 2;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 5px 20px rgba(0, 0, 0, 0.5));
  opacity: 1;
}

/* ESTILOS PARA O NOVO HERO PARALLAX - MOBILE */
.hero-parallax-artists {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.hero-artist-left,
.hero-artist-right {
  position: absolute;
  bottom: 0;
  height: 60vh;
  max-height: 500px;
  width: auto;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.hero-artist-left {
  left: -10%; /* Posição inicial */
}

.hero-artist-right {
  right: -10%; /* Posição inicial */
}


/*--------------------------------------------------------------
# Slogan Divider Section
--------------------------------------------------------------*/
.slogan-divider {
    padding: 40px 0;
    background-color: var(--dark-bg);
}
.slogan-divider img {
    max-width: 400px;
    opacity: 0.8;
}

/*--------------------------------------------------------------
# Sobre Section
--------------------------------------------------------------*/
.artist-img {
    max-width: 100%;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
    border-radius: 8px;
}

.artist-img-mobile {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.storyline {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    position: relative;
}

.storyline li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    margin-bottom: 30px;
}

.storyline li:last-child {
    margin-bottom: 0;
}

.storyline li i {
    flex-shrink: 0;
    font-size: 20px;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: var(--black-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 5px rgba(255, 140, 0, 0.1);
    transition: transform 0.3s ease;
}

.storyline li:hover i {
    transform: scale(1.1);
}

.storyline li h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 5px;
}

.storyline li p {
    font-size: 15px;
    color: var(--gray-text);
    margin-bottom: 0;
}


/*--------------------------------------------------------------
# Agenda Section
--------------------------------------------------------------*/
.agenda {
    background-size: 400% 400%;
    background-image: linear-gradient(-45deg, #1a1a1a, #2c2c2c, #1a1a1a, #000000);
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.agenda-list .list-group-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: rgba(0,0,0,0.2);
  border-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  transition: all 0.3s;
  color: var(--light-text);
}
.agenda-list .list-group-item:hover {
    background-color: rgba(0,0,0,0.4);
}
.agenda-date {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--black-bg);
  padding: 8px;
  border-radius: 5px;
  font-weight: 700;
  width: 85px;
  height: 45px;
  text-align: center;
  flex-shrink: 0;
  line-height: 1;
}
.agenda-details {
    display: flex;
    flex-direction: column;
}
.agenda-location {
  font-weight: 600;
  font-size: 18px;
}
.agenda-venue {
    font-size: 16px;
    color: var(--gray-text);
}
.btn-cta-outline {
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 50px;
  transition: 0.5s;
  color: var(--light-text);
  border: 2px solid var(--primary-color);
  text-transform: uppercase;
}
.btn-cta-outline:hover {
  background: var(--primary-color);
  color: var(--black-bg);
}

/*--------------------------------------------------------------
# Músicas Section
--------------------------------------------------------------*/
.player-title {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-text);
    margin-bottom: 15px;
    text-align: center;
}
.music-embed-wrapper {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.music-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/*--------------------------------------------------------------
# Contratante Section
--------------------------------------------------------------*/
.contratante {
  padding: 80px 0;
  text-align: center;
}
.contratante h3 {
  color: var(--light-text);
  font-size: 28px;
  font-weight: 700;
}
.contratante p {
  color: var(--gray-text);
  margin: 20px auto 30px auto;
  max-width: 600px;
}
.btn-contratante {
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--primary-color);
  color: var(--light-text);
}
.btn-contratante:hover {
  background: var(--primary-color);
  color: var(--black-bg);
}

/*--------------------------------------------------------------
# Contato Section
--------------------------------------------------------------*/
.contact-box {
  padding: 30px;
  width: 100%;
  background: var(--dark-bg);
  border-radius: 8px;
  transition: all 0.3s;
}
.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.contact-icon {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: block;
}
.social-links a {
  font-size: 24px;
  display: inline-block;
  color: var(--light-text);
  line-height: 1;
  padding: 8px 0;
  margin: 0 12px;
  text-align: center;
  width: 48px;
  height: 48px;
  transition: 0.3s;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
}
.social-links a:hover {
  color: var(--black-bg);
  background: var(--primary-color);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--black-bg);
  padding: 30px 0;
  color: var(--gray-text);
  font-size: 14px;
  text-align: center;
}
#footer .logo-footer img {
    max-height: 25px;
}
#footer .credits {
    margin-top: 5px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: var(--black-bg);
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Responsive Styles
--------------------------------------------------------------*/

/* Para Tablets e Telas Menores */
@media (max-width: 991px) {
  section {
    padding: 60px 0;
  }
  
  .section-title p {
    font-size: 28px;
  }

  .navbar-collapse {
    background: rgba(0, 0, 0, 0.9);
    margin-top: 15px;
    border-radius: 8px;
    padding: 20px;
  }
  .btn-cta {
    display: block;
    width: fit-content;
    margin: 15px auto 0 auto;
  }

  #hero {
    align-items: flex-start;
    padding-top: 0;
  }

  #hero .container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100vh;
    padding: 140px 15px 0 15px; /* AUMENTADO: Mais espaço do topo */
  }
  
  .hero-content-wrapper {
    /* O conteúdo fica posicionado pelo padding do container */
  }

  .hero-logo-nome {
    max-width: 80%;
  }
}

/* Para Celulares */
@media (max-width: 768px) {
    .hero-logo-nome {
        max-width: 90%;
    }
    .music-embed-wrapper {
        height: 320px;
    }
    .storyline li {
        gap: 15px;
    }
    .storyline li i {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .slogan-divider img {
        max-width: 80%;
    }
    .contratante h3 {
        font-size: 24px;
    }
    .agenda-location {
        font-size: 16px;
    }
    .agenda-venue {
        font-size: 14px;
    }
}

/* Para Celulares Pequenos */
@media (max-width: 576px) {
    #hero .container {
      padding-top: 120px; /* AUMENTADO: Mais espaço do topo */
    }
    .hero-logo-nome {
        max-width: 100%;
    }
    .agenda-list .list-group-item {
        padding: 15px;
    }
    .agenda-date {
        width: 80px;
        height: 40px;
    }
}
