@font-face {
  font-family: "Gotham Medium";
  src: url(fonts/GothamMediumItalic.ttf);
}

@font-face {
  font-family: "Gotham Book";
  src: url(fonts/GothamBook.ttf);
}

@font-face {
  font-family: "Genesize Grotesk";
  src: url("fonts/GenesizeGroteskDemo.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Fixture Ultra Italic";
  src: url("fonts/Fixture-Ultra-Italic-ExtraBold.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Fixture Ultra Italic Semi Bold";
  src: url("fonts/Fixture-Italic-SemiBold.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Fixture Ultra Italic Bold";
  src: url("fonts/Fixture-Ultra-Italic-Bold.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Fixture Ultra Bold";
  src: url("fonts/Fixture-Ultra-Bold.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Fixture Expanded Black";
  src: url("fonts/Fixture-Expanded-Black.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Fixture Condensed Black";
  src: url("fonts/Fixture-Condensed-Black.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Fixture Condensed Bold";
  src: url("fonts/Fixture-Condensed-Bold.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Fixture Black";
  src: url("fonts/Fixture-Black.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Fixture Expanded Bold";
  src: url("fonts/Fixture-Black.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@import url("https://use.typekit.net/edm1jzi.css");
@import url("https://use.typekit.net/fep2zsu.css");
@import url("https://use.typekit.net/ste4qbf.css");

/* base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

a {
  color: white;
}
a:visited {
  color: white;
}

body {
  background-color: #ef9301;
  font-family: sans-serif;
  overflow-x: hidden;
}

/* off-screen-menu */
.off-screen-menu {
  background-color: #ef9301;
  height: 100%;
  width: 100%;
  max-width: 450px;
  position: fixed;
  top: 0;
  right: -450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 3rem;
  transition: 0.3s ease;
  z-index: 98;
}
.off-screen-menu.active {
  right: 0;
}

.off-screen-menu a:hover {
  color: #8b0093;
}

/* nav */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(17, 0, 31, 0.5);
  position: relative;
  height: 80px;
  width: 100%;
  z-index: 99;
  top: 0;
  left: 0;
}

#inicio {
  display: block;
}

#main {
  width: 1100px;
}

section {
  height: 100svh;
  width: 100%;
}

#main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Distribui os itens nas extremidades */
  margin: 0 auto;
  width: 100%;
  max-width: 1100px; /* Define a largura máxima */
}

.logo-znc {
  display: flex;
  width: 195px;
  height: 65px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

/* ham menu */
.ham-menu {
  margin-right: auto;
  display: flex;
  justify-content: flex-start;
  position: relative;
  /* width: 40px; */
  height: 30px;
  padding: 20px;
  border-radius: 8px;
}
.ham-menu span {
  height: 5px;
  width: 80%;
  background-color: #ef9301;
  border-radius: 25px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
}
.ham-menu span:nth-child(1) {
  top: 25%;
}
.ham-menu span:nth-child(3) {
  top: 75%;
}
.ham-menu.active span {
  background-color: white;
}
.ham-menu.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.ham-menu.active span:nth-child(2) {
  opacity: 0;
}
.ham-menu.active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.social-icons {
  display: flex; /* Para alinhar os ícones horizontalmente */
  gap: 15px; /* Espaço entre os ícones */
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #ef9301;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
}

.social-icon i {
  color: #1c101d; /* Cor do ícone (pode ser ajustada) */
  font-size: 18px; /* Tamanho do ícone */
  margin: 0; /* Remover margens adicionais */
  padding: 0; /* Remover preenchimentos adicionais */
}

/* Efeito ao passar o mouse */
.social-icon:hover {
  background-color: #390065; /* Muda a cor de fundo ao passar o mouse */
  color: #fff;
}

.bg-home {
  display: flex;
  max-width: 100%;
  margin-top: -80px;
  background-image: url("img/banner_home_bcr.png");
  height: 100svh;
  background-size: cover;
  background-position: top center;
}

.logo-znc img {
  width: 180px;
  position: relative;
  left: 3%;
}

.logo-znc {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.teaser-home {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: flex-end;
  margin: 0 auto;
}

#main-agenda {
  width: 1300px;
}

hr {
  height: 7px;
  border: none;
  border-top: 4px solid #000000;
  margin: 0 auto;
  width: 140px;
  /* opacity: 0.9; Transparência */
}

#agenda {
  background-color: #390065;
  height: 80svh;
  padding-bottom: 90px;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-position: bottom;
  background-repeat: no-repeat;
}

.no-shows-message {
  font-family: "Fixture Condensed Black", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 2.2em;
  color: #fff !important;
  text-align: center;
  margin-top: 300px;
}

#agenda h1 {
  font-family: "Genesize Grotesk", sans-serif;
  font-size: calc(12rem + 1vw);
  max-width: 100%;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  margin: 0;
  padding-top: 0;
  margin-top: -7.5%;
  display: flex;
  justify-content: center;

  /* ===== Degradê na fonte ===== */
  background: linear-gradient(133deg, #fed79d 0%, #ef9301 100%);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* fallback */
}

#main {
  margin: 0 auto;
  width: 1100px;
}

.icon {
  display: flex;
  margin-bottom: 15px;
}

.icon a {
  margin-left: 20px;
}

.icon-container {
  display: flex;
  align-items: center;
  width: 100%;
  /* max-width: 800px;  Defina a largura máxima conforme necessário */
  margin: 0 auto;
  padding: 30px;
  justify-content: center;
}

.icon-container a {
  text-decoration: none;
}

.icon-container img {
  width: 50px; /* Ajuste o tamanho dos ícones conforme necessário */
  height: 50px; /* Ajuste o tamanho dos ícones conforme necessário */
  color: #b9001e;
}

#shows {
  display: inline-flex;
  align-items: center;
  padding: 50px;
}

.data {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  margin-bottom: -20px;
}
/* .data h1 {
  font-family: field-gothic-xwide, sans-serif;
  font-size: 90px;
  font-weight: 900;
  font-style: italic;
} */

.dia {
  font-family: "neulis-neue", sans-serif;
  font-weight: 700;
  font-size: 70px;
  font-style: normal;
  color: #fed69c;
}

.mes {
  font-family: "neulis-neue", sans-serif;
  font-weight: 400;
  color: #fed69c;
  font-size: 70px;
  font-style: normal;
}

.local p {
  font-family: "Genesize Grotesk", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  color: #ef9301;
  letter-spacing: 3px;
  line-height: 0.5;
  margin-top: 5px;
  margin-bottom: 9px;
}

.separar {
  margin-top: -35px;
  display: flex;
  flex-direction: column;
}

.separar p {
  font-family: "Fixture Condensed Bold", sans-serif;
  font-size: 35px;
  font-weight: 900;
  color: #fff;
  font-style: italic;
  line-height: 0.9;
  margin-bottom: 0.1rem;
}

.separar span {
  font-family: "Fixture Black", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #0a0f14;
  font-style: italic;
  line-height: 2;
}

.ingressos {
  background-color: #000000;
  text-align: center;
  margin: 0 auto;
  font-family: "Genesize Grotesk", sans-serif;
  color: #fed69c;
  padding: 8px 25px;
  letter-spacing: 6px;
  font-size: 25px;
  text-decoration: none;
  display: flex;
  margin-top: 15px;
}

.ingressos i {
  color: #930900;
  font-size: 20px;
}

.ingressos a {
  display: flex;
}

.ingressos p {
  margin-bottom: 0;
  line-height: 0.9;
  color: #fed69c;
}

#entrada_franca {
  background-color: #fff;
  text-align: center;
  margin: 0 auto;
  font-family: "Fixture Expanded Bold", sans-serif;
  color: #930900;
  padding: 8px 25px;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-size: 18px;
  /* margin-top: 20px; */
  text-decoration: none;
  display: flex;
}

#entrada_franca i {
  color: #000000;
  font-size: 20px;
}

#entrada_franca p {
  line-height: 0.9;
  margin-bottom: 0;
}

.ingressos a:hover {
  text-decoration: none;
}

.ingressos span {
  color: #fed69c;
}

.ingressos span:hover {
  text-decoration: none;
}

.ingressos span:hover {
  text-decoration: none;
}

#item-lista {
  display: flex;
  /* align-content: center; */
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
}

.item {
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: row;
}

.splide__slide {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: center;
}

#splide01 {
  padding: 5px 80px;
}

#main-bio {
  position: relative;
  margin-top: 15%;
  margin: 0 auto;
}

#main-release {
  display: flex;
  flex-direction: column;
  top: 90%;
  position: relative;
}

#biografia {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  height: 80svh;
  background-image: url("img/banner_release_bcr.png");
  background-position: center;
  box-shadow: inset -10px 0 20px rgba(0, 0, 0, 0.5),
    /* Sombra interna da direita para a esquerda */ inset 10px 0 20px
      rgba(0, 0, 0, 0.5); /* Sombra interna da esquerda para a direita */
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

/* #biografia-up {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: auto;
  height: 100%;
} */

.text-box {
  width: 750px;
  height: 200px;
  /*overflow-y: scroll;*/
  padding: 10px;
  direction: rtl;
  text-align: left;
}

.mCSB_dragger_bar {
  background-color: #ef9301 !important;
}

.mCSB_draggerRail {
  height: 500px !important;
  background-color: #ef9301 !important;
}

.text-box p {
  font-family: "Gotham Book", sans-serif;
  font-size: 13px;
  text-align: justify;
  color: #fff;
  text-indent: 16px;
  direction: ltr;
}

/*.text-box::-webkit-scrollbar {
  background-color: #fff;
  width: 2px;
}*/

/*.text-box::-webkit-scrollbar-thumb {
  height: 1px;
  background-color: #ff0000; 
} */

#biografia h1 {
  font-family: "Genesize Grotesk", sans-serif;
  text-transform: uppercase;
  font-size: calc(12rem + 1vw);
  max-width: 100%;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  /* margin: 0;
  padding-top: 0; */
  margin-top: -7.5%;
  display: flex;
  justify-content: center;
  z-index: 150;

  /* ===== Degradê na fonte ===== */
  background: linear-gradient(133deg, #fed79d 0%, #ef9301 100%);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* fallback */
}

#biografia span {
  font-family: "field-gothic-xwide", sans-serif;
  text-transform: uppercase;
  font-size: 85px;
  font-weight: 100;
  font-style: italic;
}

#galeria {
  column-count: 3;
  column-gap: 0;
  gap: 0;
  height: 100%;
}

#galeria img {
  width: 100%;
  padding: 0;
  display: block;
  object-fit: cover;
  margin-bottom: 0;
  height: auto;
}

#play {
  max-width: 100%;
  min-height: 100svh;
  background-image: url("img/BG-STREAM.png");
  background-position: center;
  background-position: center;
  padding: 80px;
  background-repeat: no-repeat;
  background-size: cover;
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

#main-play {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  margin-top: 50px;
}

#play h1 {
  font-family: "Genesize Grotesk", sans-serif;
  font-size: calc(12rem + 1vw);
  max-width: 100%;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  margin: 0;
  padding-top: 0;
  margin-top: 0;
  display: flex;
  justify-content: center;

  /* ===== Degradê na fonte ===== */
  background: linear-gradient(133deg, #fed79d 0%, #ef9301 100%);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* fallback */
}

.span-play {
  font-family: "field-gothic-condensed", sans-serif;
  font-weight: 900;
  font-style: italic;
  color: #930900;
  font-size: calc(12rem + 1vw);
}

#play h2 {
  font-family: "Genesize Grotesk", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  color: #fed69c;
  text-align: center;
  letter-spacing: 1px;
}

.span-playh2 {
  font-family: "Fixture Black", sans-serif;
  font-style: italic;
  font-weight: 500;
  color: #0a0f14;
  font-size: 28px;
}

.spotify {
  display: flex;
  justify-content: center;
}

.spotifymob {
  display: none;
}

#youtube h2 {
  color: #fff;
}

.youtubemob {
  display: none;
}

.span-playyoutube {
  font-family: "field-gothic-condensed", sans-serif;
  font-weight: 900;
  font-style: italic;
  color: #930900;
  font-size: calc(12rem + 1vw);
}

#main-playyoutube {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  align-items: center;
}

#play-youtube {
  max-width: 100%;
  min-height: 100svh;
  background-image: url("img/banner_assistaagora.png");
  background-position: center;
  box-shadow: inset -10px 0 20px rgba(0, 0, 0, 0.5),
    /* Sombra interna da direita para a esquerda */ inset 10px 0 20px
      rgba(0, 0, 0, 0.5); /* Sombra interna da esquerda para a direita */
  background-position: center;
  padding: 80px;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: 30px;
  flex-direction: column;
}

#play-youtube h2 {
  font-family: "Genesize Grotesk", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 36px;
  color: #fed69c;
  text-align: center;
  line-height: inherit;
}

.playyoutube-span {
  font-family: "Fixture Expanded Black", sans-serif;
  font-style: italic;
  font-weight: 900;
  color: #fff;
  font-size: 24px;
}

#play-youtube h1 {
  font-family: "Genesize Grotesk", sans-serif;
  font-size: calc(12rem + 1vw);
  max-width: 100%;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  margin: 0;
  padding-top: 0;
  margin-top: -120px;
  display: flex;
  justify-content: center;

  /* ===== Degradê na fonte ===== */
  background: linear-gradient(133deg, #fed79d 0%, #ef9301 100%);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* fallback */
}

.canal {
  color: #930900 !important;
}

.inscreva-se {
  padding: 0 35px;
  border: solid #ef9301 3px;
  margin-top: 35px;
}

.inscreva-se a {
  text-decoration: none;
}
.inscreva-se span {
  color: #fed69c;
}

#contato {
  display: flex;
  max-width: 100%;
  background-color: #390065;
  padding: 15px;
}

#main.flex-container {
  display: flex;
  gap: 0; /* Espaçamento entre as colunas */
}

#contratante,
.canais {
  flex: 1; /* Cada coluna ocupa metade do espaço */
}

#contratante h2 {
  font-family: "Genesize Grotesk", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  color: #fed69c;
  font-size: 80px;
  line-height: inherit;
  margin-bottom: -30px;
  margin-top: -15px;
  letter-spacing: 2px;
}

#contratante span {
  font-family: "roc-grotesk", sans-serif;
  font-style: normal;
  color: #ef9301;
  font-size: 24px;
  margin-top: 10px;
  font-weight: 800;
  line-height: 1.1;
}

#canais {
  display: flex;
  flex-direction: column;
  margin-left: 30px;
  width: 50%;
  justify-content: center;
}

#canais h2 {
  font-family: "field-gothic", sans-serif;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  font-size: 52px;
  margin-bottom: 10px;
  margin-top: 30px;
  transform: scaleY(1.2);
  letter-spacing: 1px;
}

#canais span {
  font-family: "Fixture Ultra Italic Semi Bold", sans-serif;
  font-style: italic;
  font-weight: 500;
  color: #0a0f14;
  font-size: 24px;
  margin-top: 10px;
}

.midia {
  display: flex;
  align-items: center;
  margin-left: -230px;
  justify-content: flex-start;
}

.press-kit-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #ef9301;
  border-radius: 7px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 15px 30px;
}

#button a:hover {
  text-decoration: none;
}

#button a {
  text-decoration: none;
}

#button i {
  font-size: 32px;
  margin-bottom: 8px;
  padding: 2px;
}

.bold {
  font-family: "Genesize Grotesk", sans-serif;
  text-transform: uppercase;
  font-size: 50px;
  font-weight: 600;
  font-style: normal;
  color: #390065;
  line-height: 0.3;
  letter-spacing: 2px;
  margin-left: 10px;
  margin-top: 10px;
}

#button span {
  font-family: "field-gothic-xxcondensed", sans-serif;
  text-transform: uppercase;
  font-size: 46px;
  font-weight: 900;
  font-style: italic;
  color: #930900;
}

.material {
  display: flex;
  justify-content: space-between;
}

.material-icon {
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.icon-down {
  width: 42px;
}

.znc-logo {
  width: 300px;
}

.znrprod {
  width: 25px;
}

.somlivre {
  width: 28px;
}

#footer {
  background-color: #ef9301;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.logos {
  margin-right: 105px;
  margin-top: 10px;
}

#footer img {
  display: flex;
  padding: 15px;
  cursor: pointer;
  width: 4%;
}

/* Mobile */
@media only screen and (max-width: 768px) {
  /*DESKTOP EXIBIÇÃO*/

  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    background-color: rgba(17, 0, 31, 0.5);
    position: relative;
    height: 80px;
    width: 100%;
    z-index: 99;
    top: 0;
    left: 0;
    padding: 0;
  }

  #inicio-mobile {
    display: block;
  }

  section {
    height: 100%;
    width: 100%;
  }

  #main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Distribui os itens nas extremidades */
    margin: 0 auto;
    max-width: 100%;
    padding: 10px 20px;
  }

  .logo-znc {
    display: flex;
    width: 100%;
    height: 65px;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
  }

  .logo-znc img {
    width: 120px;
    left: 0;
  }

  /* ham menu */
  .ham-menu {
    margin-right: auto;
    display: flex;
    justify-content: flex-start;
    position: relative;
    /* width: 40px; */
    height: 30px;
    padding: 20px;
    border-radius: 8px;
  }
  .ham-menu span {
    height: 5px;
    width: 80%;
    background-color: #ef9301;
    border-radius: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s ease;
  }
  .ham-menu span:nth-child(1) {
    top: 25%;
  }
  .ham-menu span:nth-child(3) {
    top: 75%;
  }
  .ham-menu.active span {
    background-color: white;
  }
  .ham-menu.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .ham-menu.active span:nth-child(2) {
    opacity: 0;
  }
  .ham-menu.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .social-icons {
    display: flex; /* Para alinhar os ícones horizontalmente */
    gap: 15px; /* Espaço entre os ícones */
    display: none;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ef9301;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    overflow: hidden;
  }

  .social-icon i {
    color: #1c101d;
    font-size: 18px;
    margin: 0;
    padding: 0;
  }

  .social-icon:hover {
    background-color: #b9001e;
    color: #fff;
  }

  .bg-home {
    display: flex;
    max-width: 100%;
    margin-top: -80px;
    background-image: url("img/banner_home_bcr_mob.png");
    height: 100svh;
    background-size: cover;
    background-position: top center;
  }

  .teaser-home {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: flex-end;
    margin: 0 auto;
  }

  #main-agenda {
    width: 100%;
    margin-top: -50px;
  }

  hr {
    height: 7px;
    border: none;
    border-top: 4px solid #000000;
    margin: 0 auto;
    width: 140px;
    margin-top: 30px;
    /* opacity: 0.9; Transparência */
  }

  #agenda {
    background-color: #390065;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
    min-height: 120svh;
    display: flex;
    align-items: center;
  }

  #agenda h1 {
    font-family: "Genesize Grotesk", sans-serif;
    font-size: calc(12rem + 1vw);
    max-width: 100%;
    font-weight: 500;
    font-style: normal;
    text-align: center;
    margin: 0;
    padding-top: 0;
    margin-top: -30%;
    display: flex;
    justify-content: center;

    /* ===== Degradê na fonte ===== */
    background: linear-gradient(133deg, #fed79d 0%, #ef9301 100%);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; /* fallback */
  }

  #main-bio {
    margin: 0 auto;
    width: 100%;
    position: static;
    margin-top: 50px;
  }

  .item {
    text-align: center;
    width: 100%;
  }

  .icon {
    display: flex;
  }

  .icon a {
    margin-left: 20px;
  }

  .icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    padding: 30px 0px;
  }

  .icon-container a {
    text-decoration: none;
  }

  .icon-container img {
    width: 40px; /* Ajuste o tamanho dos ícones conforme necessário */
    height: 40px; /* Ajuste o tamanho dos ícones conforme necessário */
    color: #b9001e;
  }

  #shows {
    display: inline-flex;
    align-items: center;
    padding: 50px;
  }

  .data {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    font-family: "field-gothic-xwide", sans-serif;
    font-size: 70px;
    color: #0a0f14;
    text-transform: uppercase;
    margin-bottom: -50px;
  }
  .data h1 {
    font-family: field-gothic-xwide, sans-serif;
    font-size: 90px;
    font-weight: 900;
    font-style: italic;
  }

  .dia {
    font-family: "neulis-neue", sans-serif;
    font-weight: 700;
    font-size: 70px;
    font-style: normal;
    color: #fed69c;
  }

  .mes {
    font-family: "neulis-neue", sans-serif;
    font-weight: 400;
    color: #fed69c;
    font-size: 70px;
    font-style: normal;
  }

  .separar {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
  }

  .separar span {
    font-family: "Fixture Black", sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #0a0f14;
    font-style: italic;
    line-height: 2;
  }

  .ingressos {
    background-color: #000000;
    text-align: center;
    margin: 0 auto;
    font-family: "Fixture Expanded Bold", sans-serif;
    color: #fff;
    padding: 8px 25px;
    letter-spacing: 6px;
    font-size: 18px;
    text-decoration: none;
    display: flex;
    margin-top: 20px;
  }

  .ingressos i {
    color: #930900;
    font-size: 20px;
  }

  .ingressos a {
    display: flex;
    color: #fed69c;
  }

  .ingressos p {
    margin-bottom: 0;
    line-height: 0.9;
    color: #fed69c !important;
  }

  #entrada_franca {
    background-color: #fed69c;
    text-align: center;
    margin: 0 auto;
    font-family: "Fixture Expanded Bold", sans-serif;
    color: #ef9301;
    padding: 8px 25px;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-size: 18px;
    margin-top: 20px;
    text-decoration: none;
    display: flex;
  }

  #entrada_franca i {
    color: #000000;
    font-size: 20px;
  }

  #entrada_franca p {
    line-height: 0.9;
    margin-bottom: 0;
  }

  .splide__pagination {
    bottom: -3.5em !important;
  }

  .local {
    display: flex;
    text-align: center;
    /*flex: 1;*/
    margin-left: 0;
    margin-bottom: -30px;
  }
  .local p {
    font-family: "Genesize Grotesk", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 30px;
    color: #ef9301;
    letter-spacing: 3px;
  }

  #item-lista {
    display: flex;
    /* align-content: center; */
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 15px;
  }

  .splide__slide {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  #splide01 {
    padding: 40px;
  }

  #main-release {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    top: 0;
    margin-top: -50px;
  }

  #biografia {
    display: flex;
    max-width: 100%;
    min-height: 100svh;
    background-image: url(img/ZNC-Banner-Release.png);
    background-position: right;
    background-size: cover;
    padding: 20px;
    box-shadow: inset -10px 0 20px rgba(0, 0, 0, 0.5),
      inset 10px 0 20px rgba(0, 0, 0, 0.5);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  #biografia-up {
    display: none;
  }

  .text-box {
    width: 100%;
    height: 550px;
    overflow-y: scroll; /* Adiciona uma barra de rolagem vertical */
    padding: 10px;
    flex-direction: rtl;
  }

  .text-box p {
    font-family: "Gotham Book", sans-serif;
    font-size: 16px;
    color: #fff;
    text-indent: 16px;
    text-align: justify;
  }

  .mCSB_dragger_bar {
    background-color: #ef9301 !important;
  }

  /*.text-box::-webkit-scrollbar {
    background-color: #0a0f14;
    width: 4px;
  }*/

  /*.text-box::-webkit-scrollbar-thumb {
    height: 1px;
    background-color: #ff0000;
    border-radius: 10%;
  }*/

  #biografia h1 {
    font-family: "Genesize Grotesk", sans-serif;
    font-size: calc(12rem + 1vw);
    max-width: 100%;
    font-weight: 500;
    font-style: normal;
    text-align: center;
    margin: 0;
    padding-top: 0;
    margin-top: -35%;
    display: flex;
    justify-content: center;

    /* ===== Degradê na fonte ===== */
    background: linear-gradient(133deg, #fed79d 0%, #ef9301 100%);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; /* fallback */
  }

  #biografia span {
    font-family: "field-gothic-xwide", sans-serif;
    text-transform: uppercase;
    font-size: 85px;
    font-weight: 100;
    font-style: italic;
  }

  #galeria {
    column-count: 2;
    column-gap: 0;
    gap: 0;
    height: 100%;
  }

  #galeria img {
    width: 100%;
    padding: 0;
    display: block;
    object-fit: cover;
    margin-bottom: 0;
    height: auto;
  }

  #play {
    max-width: 100%;
    min-height: auto;
    background-color: #fff;
    background-size: cover;
    background-position: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  #main-play {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    margin-top: 50px;
  }

  #play h1 {
    font-size: calc(6rem + 1vw);
  }

  .span-play {
    font-family: "field-gothic-condensed", sans-serif;
    font-weight: 900;
    font-style: italic;
    color: #930900;
    font-size: calc(4rem + 1vw);
  }

  #play h2 {
    font-family: "Genesize Grotesk", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    color: #fed69c;
    text-align: center;
    letter-spacing: 1px;
  }

  .span-playh2 {
    font-family: "field-gothic-xwide", sans-serif;
    font-style: italic;
    font-weight: 500;
    color: #0a0f14;
    font-size: 16px;
  }

  .spotify {
    display: flex;
    justify-content: center;
    display: none;
  }

  .spotifymob {
    display: flex;
    justify-content: center;
  }

  #youtube h2 {
    color: #fff;
  }

  .span-playyoutube {
    font-family: "field-gothic-condensed", sans-serif;
    font-weight: 900;
    font-style: italic;
    color: #930900;
    font-size: calc(3rem + 1vw);
  }

  #main-playyoutube {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    align-items: center;
    margin-top: 60px;
  }

  .youtubemob {
    width: 100%;
    display: inherit !important;
  }

  .youtube {
    display: none;
  }

  #play-youtube {
    max-width: 100%;
    min-height: 70svh;
    background-image: url("img/ZNC-Banner-PlayYouTube.png");
    background-position: center;
    box-shadow: inset -10px 0 20px rgba(0, 0, 0, 0.5),
      /* Sombra interna da direita para a esquerda */ inset 10px 0 20px
        rgba(0, 0, 0, 0.5); /* Sombra interna da esquerda para a direita */
    background-position: center;
    padding: 25px 10px 25px;
  }

  #play-youtube h2 {
    font-family: "Genesize Grotesk", sans-serif;
    font-style: italic;
    font-weight: 500;
    font-size: 24px;
    color: #fed69c;
    text-align: center;
    line-height: inherit;
    margin-top: 5px;
  }

  .playyoutube-span {
    font-family: "Fixture Expanded Black", sans-serif;
    font-style: italic;
    font-weight: 900;
    color: #fff;
    font-size: 14px;
  }

  #play-youtube h1 {
    font-family: "Genesize Grotesk", sans-serif;
    font-size: calc(6rem + 1vw);
    max-width: 100%;
    font-weight: 500;
    font-style: normal;
    text-align: center;
    margin: 0;
    padding-top: 0;
    margin-top: 0;
    display: flex;
    justify-content: center;
  }

  .inscreva-se {
    padding: 0 35px;
    border: solid #ef9301 3px;
    margin-top: 35px;
  }

  .inscreva-se a {
    text-decoration: none;
  }
  .inscreva-se span {
    color: #fed69c;
  }

  #main {
    width: 100%;
  }

  #contato {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    background-color: #390065;
    padding: 15px 10px;
  }

  #main.flex-container {
    display: flex;
    flex-direction: column;
    padding: 5px;
  }

  #contratante,
  .canais {
    flex: 1; /* Cada coluna ocupa metade do espaço */
  }
  #contratante h2 {
    font-family: "Genesize Grotesk", sans-serif;
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
    color: #fed69c;
    font-size: 80px;
    line-height: inherit;
    margin-bottom: -30px;
    margin-top: -15px;
    letter-spacing: 2px;
  }

  #contratante span {
    font-family: "roc-grotesk", sans-serif;
    font-style: normal;
    color: #ef9301;
    font-size: 18px;
    margin-top: 10px;
    font-weight: 800;
    line-height: 1.1;
  }

  #canais {
    display: flex;
    flex-direction: column;
    margin-left: 0;
    width: 100%;
    margin-top: 25px;
  }

  #canais h2 {
    font-family: "field-gothic", sans-serif;
    font-weight: 900;
    font-style: italic;
    color: #fff;
    font-size: 52px;
    margin-bottom: 10px;
    margin-top: 30px;
    transform: scaleY(1.2);
    letter-spacing: 1px;
  }

  #canais span {
    font-family: "Fixture Ultra Italic Semi Bold", sans-serif;
    font-style: italic;
    font-weight: 500;
    color: #000000;
    font-size: 24px;
    margin-top: 10px;
  }

  .midia {
    display: flex;
    align-items: center;
    margin-left: -230px;
    justify-content: flex-start;
  }

  .midia h2 {
    font-family: field-gothic-xwide, sans-serif;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 900;
    font-style: italic;
    color: #fff;
    text-align: center;
    padding: 10px 50px;
    margin-left: 180px;
  }

  .press-kit-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #ef9301;
    border-radius: 7px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 15px 30px;
  }

  .bold {
    font-family: "Genesize Grotesk", sans-serif;
    text-transform: uppercase;
    font-size: 36px;
    font-weight: 600;
    font-style: normal;
    color: #390065;
    line-height: 0.3;
    letter-spacing: 2px;
    margin-left: 0;
    margin-top: 10px;
  }

  #button span {
    font-family: "field-gothic-xxcondensed", sans-serif;
    text-transform: uppercase;
    font-size: 46px;
    font-weight: 900;
    font-style: italic;
    color: #930900;
  }

  .material {
    display: flex;
    justify-content: space-between;
  }

  .material-icon {
    margin-right: 0;
    align-items: center;
    display: flex;
    justify-content: space-between;
  }

  .material-icon img {
    margin-left: 0;
    margin-right: 20px;
  }

  .logos {
    margin: 0;
    margin-top: 15px;
  }

  .icon-down {
    width: 35px;
  }

  .znc-logo {
    width: 200px;
  }

  .znrprod {
    width: 30px;
  }

  .somlivre {
    width: 30px;
  }

  #footer {
    background-color: #ef9301;
    width: 100%;
    height: 45px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  #footer img {
    display: flex;
    padding: 15px;
    margin-top: 30px;
    cursor: pointer;
    width: 15%;
  }
}
