* {
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.658);
}

::-webkit-scrollbar-thumb {
  background: rgba(136, 136, 136, 0.589);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(85, 85, 85, 0.637);
}

.custom-scrollbar::-webkit-scrollbar {
  display: none;
}
.custom-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body {
 
    font-family: 'Nationale Regular';

    }
@font-face {
    font-family: 'Nationale Regular';
    src: url('./fonts/Nationale-Regular.woff2') format('woff2'),
         url('./fonts/Nationale-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Nationale Bold';
    src: url('./fonts/Nationale-Bold.woff2') format('woff2'),
         url('./fonts/Nationale-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Nationale Black';
    src: url('./fonts/Nationale-Black.woff2') format('woff2'),
         url('./fonts/Nationale-Black.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}


strong, b, .font-bold, .font-semibold {
    font-family: 'Nationale Bold', sans-serif !important; 
}

/* REGRA PARA USAR A VARIAÇÃO REGULAR */
.font-nationale-regular, .regular-text {
    /* Usa o nome exato do @font-face: 'Nationale Regular' */
    font-family: 'Nationale Regular', sans-serif !important; 
    font-weight: normal !important;
}


html,
body,
#app,
#principal {
  width: 100%;
  height: 100%;
  overflow-y: hidden;
}

#app {
  min-width: 767px;
  overflow-x: auto;
}

.card {
  font-family: 'Nationale Bold';
  background-color: rgb(19, 19, 19);
  color: #ffffff;
  margin: 20px 20px 0 20px;
  padding: 10px 18px;
  border-radius: 20px;
  /* border: 1px solid #fff; */  /* removi a borda para tirar o tracado */
  opacity: 0.8;
  font-weight: 500;
  font-size: 0.9em;
}

.card h3 {
  margin-top: 0;
  font-size: 16px;
}

.card p {
  font-size: 14px;
  color: #ffffff;
  margin: 10px 0 20px;
}

.bootn {
  display: inline-block;
  padding: 10px 18px;
  background-color: #fff;   /* fundo branco */
  color: #000;              /* texto preto */
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  -webkit-text-fill-color: #000;
  font-size: 14px;
  border: none;
  box-shadow: none;
  line-height: 1;           /* para o texto não ficar com altura maior */
  text-align: center;       /* garante alinhamento horizontal */
  vertical-align: middle;   /* ajuda no alinhamento vertical */
}

/* Adicione estas regras para o fundo desfocado e as bordas */
#album-cover-bg {
  filter: blur(50px); /* Ajusta o nível de desfoque */
  transform: scale(1.1); /* Evita bordas visíveis após o desfoque */
  transition: background-image 0.5s ease-in-out, filter 0.5s ease-in-out;
}

#album-header {
  margin: 20px;
  border-radius: 20px; /* Adiciona a borda arredondada */
}

    .left, .center, .right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Overall Container */
.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 60px;
  padding: 0 16px;
  background-color: #00000000;
  box-sizing: border-box;
}

/* Left and Right Sections */
.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px; /* Spacing between items */
}




.logo-image {
  width: 32px;
  height: 32px;
}

.icon-circle {
  /* Propriedades existentes (tamanho, cor, borda) */
  width: 48px;
  height: 48px;
  background-color: #121212;
  border: 1px solid #282828;
  border-radius: 50%;

  /* Propriedades para centralizar o ícone */
  display: flex; /* Define o contêiner como um Flexbox */
  justify-content: center; /* Centraliza horizontalmente */
  align-items: center; /* Centraliza verticalmente */
}

.nav-icon {

  width: 30px;
  height: 30px;
}

/* Common Styles for Links/Buttons */
.nav-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease-in-out;
}

.nav-link:hover {
  color: #a7a7a7;
}

/* Specific Link/Button Styles */
.install-app .link-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

.login-button {
  height: 48px;
  padding: 0 24px;
  background-color: #fff;
  color: #000;
  font-weight: 700;
  border-radius: 24px;
  transition: background-color 0.2s ease-in-out;
}

.login-button:hover {
  background-color: #f6f6f6;
  color: #000;
}

.btn-login {
  background: #fff;
  color: #000 !important;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
}

/* Restante do seu CSS (se houver) */

/*playlists */

ul.playlists {
  list-style: none;
  padding: 0;
}

ul.playlists li.serie-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}


ul.playlists li.serie-item a {
  display: flex;
  text-decoration: none;
  color: inherit;
}

.serie-capa {
  width: 100px;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 12px;
}

.serie-info h5 {
  margin: 0 0 5px 0;
  font-size: 1.1em;
}

.serie-info p {
  margin: 0;
  font-size: 0.9em;
  color: #555;
}





#principal #feed #topNav #arrowMenu button {
  border: none;
  margin: 5px;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background-color: rgba(0, 0, 0, 0.671);
  fill: #fff;
  opacity: 0.5;
}

#principal #feed #topNav #btnTopNav button#upgrade {
  background-color: rgba(10, 10, 10, 0.1);
  color: #fff;
  padding: 2px 10px;
  margin: 1px;
  border-radius: 20px;
  border: 1px solid #fff;
  opacity: 0.8;
  font-weight: 500;
  font-size: 0.9em;
}

#principal #feed #topNav #btnTopNav button#upgrade:hover {
  background-color: #0a0a0a;
  padding: 2px 11px;
}

#principal #feed #topNav #btnTopNav #user_bttn button {
  background-color: rgba(99, 99, 99, 0.594);
  border: none;
  border-radius: 50px;
  padding: 3px;
  padding-right: 10px;
}

#principal #feed #topNav #btnTopNav #user_bttn button .imgUsuario {
  border-radius: 14px;
  display: inline-block;
  width: 28px;
  height: 28px;
}

#principal #feed #topNav #btnTopNav #user_bttn button:focus {
  box-shadow: 0 0 0 0;
  border: 0 none;
  outline: 0;
}

#principal #feed #main {
  background: linear-gradient(
    180deg,
    rgba(39, 39, 39, 0.925) 0%,
    #373737 50%,
    #121212 100%
  );
   border-radius: 40px 12px 0 0; /* arredondado só em cima */
}

#principal #feed #main #feedHeader {
  max-width: 1920px;
}

#principal #feed #main #feedHeader #playlistsRecentes {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0;
}

#principal #feed #main #feedHeader #playlistsRecentes li {
  list-style-type: none;
  width: 32%;
  border-radius: 5px;
  margin: 7px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
}

#principal #feed #main #feedHeader #playlistsRecentes li:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

#principal #feed #main #feedHeader #playlistsRecentes li:hover button.btn {
  opacity: 1;
  cursor: default;
}

#principal #feed #main #feedHeader #playlistsRecentes li img {
  width: 80px;
  height: 80px;
  border-radius: 5px 0 0 5px;
}

#principal #feed #main #feedHeader #playlistsRecentes li button.btn {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background-color: #1ed760;
  transition: opacity 0.3s ease;
  opacity: 0;
  box-shadow: 0px 15px 40px 0px rgba(0, 0, 0, 0.9);
  transition: all ease-in-out 0.2s;
}

#principal #feed #main #feedHeader #playlistsRecentes li button.btn:hover {
  padding: 1px;
  border: 0;
  transform: scale(1.05);
}

#botomIcon {
  display: none !important;
}

@media only screen and (max-width: 1186px) {
  #principal #feed #main #feedHeader #playlistsRecentes li {
    width: 49%;
  }

  #principal #feed #main #feedHeader #playlistsRecentes li img {
    width: 64px;
    height: 64px;
  }
}

#principal #feed #main .feedPlaylist {
  max-width: 1920px;
}

#principal #feed #main .feedPlaylist h4 {
  display: inline;
}
#principal #feed #main .feedPlaylist h4 > a {
  text-decoration: none;
  color: #fff;
}

#principal #feed #main .feedPlaylist h4 > a:hover {
  text-decoration: underline;
}
#principal #feed #main .feedPlaylist .see-all {
  text-decoration: none;
  color: #b3b3b3;
  float: right;
  font-size: 9pt;
  font-weight: bold;
}

#principal #feed #main .feedPlaylist .see-all:hover {
  text-decoration: underline;
}

#principal #feed #main .feedPlaylist .playlists {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  justify-content: space-between;
  overflow-y: hidden;
  height: 380px;
}

#principal #feed #main .feedPlaylist .playlists li {
  width: 15%;
  list-style-type: none;
  background-color: rgba(255, 255, 255, 0);
  padding: 15px 15px 0 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  position: relative;
  margin-bottom: 100px;
}

#principal #feed #main .feedPlaylist .playlists li img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 17px;
}

#principal #feed #main .feedPlaylist .playlists li span {
  font-weight: 700;
}

#principal #feed #main .feedPlaylist .playlists li p {
  font-family: 'Nationale Bold', sans-serif;
  font-size: 0.9em;
  line-height: 15px;
  opacity: 0.8;
}

#principal #feed #main .feedPlaylist .playlists li button.btn {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background-color: #1ed760;
  transition: all 0.3s ease;
  opacity: 0;
  position: absolute;
  right: 8px;
  bottom: 80px;
  cursor: default;
  transition: all ease-in-out 0.2s;
  box-shadow: 0px 15px 40px 0px rgba(0, 0, 0, 0.9);
}

#principal #feed #main .feedPlaylist .playlists li button.btn:hover {
  padding: 1px;
  border: 0;
  transform: scale(1.05);
}

#principal #feed #main .feedPlaylist .playlists li:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

#principal #feed #main .feedPlaylist .playlists li:hover button.btn {
  bottom: 95px;
  opacity: 1;
}

@media only screen and (max-width: 2130px) {
  #principal #feed #main .feedPlaylist .playlists {
    height: 360px;
  }
}

@media only screen and (max-width: 1920px) {
  #principal #feed #main .feedPlaylist .playlists {
    height: 320px;
  }
}

@media only screen and (max-width: 1730px) {
  #principal #feed #main .feedPlaylist .playlists {
    height: 300px;
  }
}

@media only screen and (max-width: 1512px) {
  #principal #feed #main .feedPlaylist .playlists {
    height: 295px;
  }

  #principal #feed #main .feedPlaylist .playlists li {
    width: 18%;
  }
}

@media only screen and (max-width: 1324px) {
  #principal #feed #main .feedPlaylist .playlists {
    height: 310px;
  }

  #principal #feed #main .feedPlaylist .playlists li {
    width: 23%;
  }
}

@media only screen and (max-width: 996px) {
  #principal #feed #main .feedPlaylist .playlists {
    height: 295px;
  }

  #principal #feed #main .feedPlaylist .playlists li {
    width: 32%;
  }
}

@media only screen and (max-width: 796px) {
  #principal #feed #main .feedPlaylist .playlists {
    height: 310px;
  }

  #principal #feed #main .feedPlaylist .playlists li {
    width: 48%;
  }
}

@media only screen and (max-width: 770px) {
  #latNav {
    display: none !important;
  }

  #configAudio {
    display: none !important;
  }

  #caixaCentral {
    display: none !important;
  }

  #principal #feed #main .feedPlaylist .playlists {
    height: 310px;
  }

  #principal #feed #main .feedPlaylist .playlists li {
    width: 23%;
  }

  #audioBar #musicaPlay {
    display: none !important;
  }

  #audioBar {
    height: 70px !important;
    width: 100vw !important;
    display: flex;
    align-items: center;
    justify-content: center !important;
  }

  #botomIcon {
    display: unset !important;
  }

  #botomIcon a {
    color: white;
    font-size: 12px;
  }

  #botomIcon a svg {
    margin: 10px;
  }

  #arrowMenu {
    visibility: hidden;
  }

  #app {
    min-width: 100vw;
  }


  #mobiPlay {
    height: 63px;
    width: 95%;
    margin-top: 78vh;
    margin-left: 2.5%;
    position: absolute;
    opacity: 95%;
    border-radius: 15px;
    background-color: #000000e4;
    display: flex !important;
    align-items: center;
    padding: 0 5vw;
    justify-content: end;
  }

  #mobibtn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border-color: white;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media only screen and (max-width: 520px) {
  #principal #feed #main .feedPlaylist .playlists {
    height: 310px;
  }

  #principal #feed #main .feedPlaylist .playlists li {
    width: 48%;
  }
}

@media only screen and (max-width: 430px) {
  #principal #feed #main .feedPlaylist .playlists {
    height: 210px;
  }

  #principal #feed #main .feedPlaylist .playlists li {
    width: 48%;
  }

  #main #feedHeader #playlistsRecentes li {
    width: 100% !important;
  }

  #main #feedHeader #playlistsRecentes {
    height: 240px;
    overflow: hidden;
  }

  #principal #feed #main .feedPlaylist .playlists li p {
    display: none;
  }

  #principal #feed #main .feedPlaylist .playlists li {
    padding-bottom: 15px;
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 370px) {
  #botomIcon a {
    font-size: 10px;
    margin: -9px;
    padding: 18px;
  }
  #principal #feed #main .feedPlaylist .playlists li {
    margin-bottom: 100px;
  }
}

@media only screen and (max-width: 300px) {
  #botomIcon a {
    font-size: 8px;
    margin: -14px;
    padding: 18px;
  }
}

#mobiPlay {
  display: none;
}

#audioBar {
  width: 100%;
  height: 90px;
  background-color: #121212;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#audioBar #musicaPlay {
  width: 20%;
}

#audioBar button.icones {
  background-color: rgba(0, 0, 0, 0);
  fill: #fff;
  border: none;
  opacity: 0.7;
}

#audioBar button.icones:hover {
  opacity: 1;
}

#audioBar button.icones.aleatorio {
  margin: 5px 15px 5px 5px;
}

#audioBar button.icones.proximo {
  margin: 5px 5px 5px 15px;
}

#audioBar button.icones.proximo svg {
  margin-bottom: 4px;
}

#audioBar button.icones.anterior {
  transform: rotate(180deg);
  margin: 5px 15px 5px 5px;
}

#audioBar button.icones.anterior svg {
  margin-bottom: 4px;
}

#audioBar button.icones.repetir {
  margin: 5px 5px 5px 15px;
}

#audioBar button.icones.legenda,
#audioBar button.icones.lista,
#audioBar button.icones.outrosDispositivos {
  padding-right: 15px;
}

#audioBar #caixaCentral #caixaSetas button.playPause {
  width: 35px;
  height: 35px;
  border-radius: 24px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

#audioBar #caixaCentral #caixaSetas button.playPause:hover {
  padding: 2px;
}

#audioBar #caixaCentral #barraDeProgresso small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9em;
  margin: 10px;
}

#audioBar #caixaCentral #barraDeProgresso input[type="range"] {
  width: 25rem;
}

#audioBar #configAudio #volume input[type="range"] {
  width: 5rem;
}

#audioBar input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
  width: 5rem;
}

#audioBar input[type="range"]:focus {
  outline: none;
}

#audioBar input[type="range"]::-webkit-slider-runnable-track {
  background-color: #ffffff;
  border-radius: 0.5rem;
  height: 0.25rem;
}

#audioBar input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  margin-top: -3.2px;
  background-color: #22c925;
  border-radius: 0.5rem;
  height: 0.7rem;
  width: 0.7rem;
}

#audioBar input[type="range"]:focus::-webkit-slider-thumb {
  outline: 3px solid #22c925;
  outline-offset: 0.125rem;
}

#audioBar input[type="range"]::-moz-range-track {
  background-color: #ffffff;
  border-radius: 0.5rem;
  height: 0.25rem;
}

#audioBar input[type="range"]::-moz-range-thumb {
  background-color: #22c925;
  border: none;
  border-radius: 0.5rem;
  height: 0.7rem;
  width: 0.7rem;
}

#audioBar input[type="range"]:focus::-moz-range-thumb {
  outline: 3px solid #22c925;
  outline-offset: 0.125rem;
}

#full-screen {
  background-color: #000000;
  border: none;
}

@media only screen and (max-width: 1060px) {
  #audioBar button.icones svg {
    width: 15px;
    height: 15px;
  }

  #audioBar button.icones.legenda,
  #audioBar button.icones.lista,
  #audioBar button.icones.outrosDispositivos {
    padding-right: 8px;
  }

  #audioBar #caixaCentral #caixaSetas button.playPause {
    width: 30px;
    height: 30px;
    padding: 0;
  }

  #audioBar #caixaCentral #caixaSetas button.playPause svg {
    width: 18px;
    height: 18px;
  }

  #audioBar #caixaCentral #barraDeProgresso small {
    font-size: 0.8em;
  }

  #audioBar #caixaCentral #barraDeProgresso input[type="range"] {
    width: 15rem;
  }
}

.dropdownMenuButton1-dropContent {
  display: none;
  padding:10px;
  padding-left:15px;
  background-color: rgba(10, 10, 10, 0.4);
  margin-top:10px;
  border-radius: 5px;
  width:254px;
  align-self: flex-end;
  position: absolute;
  top:30px
}

.show {
  display: block;
}

.dropdownMenuButton1-dropContent > a {
  text-decoration: none;
  color:white;

}
#user_bttn {
  display: flex;
  flex-direction: column;
}

/* From Uiverse.io by AlimurtuzaCodes */ 
.btn {
  border: none;
  width: 10em;
  height: 3em;
  border-radius: 3em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: #212121;
  cursor: pointer;
  transition: all 450ms ease-in-out;
}

.sparkle {
  fill: #AAAAAA;
  transition: all 800ms ease;
}

.text {
  font-weight: 600;
  color: #ffffff;
  font-size: medium;
}

.btn:hover {
  background: #a4a4a4;
  transform: translateY(-2px);
}

.btn:hover .text {
  color: white;
}

.btn:hover .sparkle {
  fill: white;
  transform: scale(1.2);
} 

.heart-icon {
    width: 80px;        /* tamanho compatível com os ícones da sidebar */
    height: 80px;
    transition: transform 0.3s ease;
}

.heart-icon:hover {
    transform: scale(1.2); /* aumenta ao passar o mouse */
}

.cursor-grabbing {
  cursor: grabbing !important;
}

.carousel-container {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-left: 1.5rem;  /* margem esquerda */
  padding-right: 1.5rem; /* margem direita */
  scroll-padding-left: 1.5rem; /* evita corte no início */
  scroll-padding-right: 1.5rem;
}

.carousel-container::-webkit-scrollbar {
  display: none; /* opcional para esconder scrollbar */
}

body {
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  margin: 0;
}

.section {
  margin: 24px auto;
  padding: 0 16px;
    padding-left: 1.5rem; /* Alinhamento do Título (padrão do feed) */
  padding-right: 0;    /* Remova o padding direito para permitir que o card-row vá até o fim */
  margin-bottom: 32px;
}

.section-title {
  font-size: 1.5rem;
  font-weight: bold;
    margin-bottom: 16px; 
}

.section-scroll {
  position: relative;
}

.card-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  margin-top: 20px;
}

.loading-text {
  color: #aaa;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: none;
  border-radius: 50%;
  padding: 8px;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s ease; /* Adiciona transição suave */
}

/* REGRA ESSENCIAL: Esconde o botão ao adicionar a classe 'hidden' */
.scroll-btn.hidden {
    opacity: 0;
    pointer-events: none; /* Impede que seja clicável quando invisível */
}

.scroll-btn.left { left: 4px; }
.scroll-btn.right { right: 4px; }
.scroll-btn img { width: 24px; height: 24px; }

/* CARD */
.card {
  background: transparent;
  border-radius: 8px;
  padding: 8px;
  width: 180px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.card-row {
  display: flex;
  gap: 16px;
  overflow-x: scroll;
  padding-bottom: 20px;
  scrollbar-width: none;
  
  /* MANTER ESSAS TRÊS LINHAS DA SOLUÇÃO ANTERIOR: */
  margin-left: -1.5rem; /* Puxa todo o contêiner de cards para a esquerda */
  padding-right: 3rem; /* Cria o espaço em branco após o último card */
}

/* MANTER ESTA LINHA TAMBÉM: */
.card-row > :first-child {
    /* Isso garante que o PRIMEIRO CARD comece 1.5rem da esquerda, alinhado com o título. */
    margin-left: 1.5rem; 
}
/* Esconder o scroll bar para Webkit (Chrome, Safari) */
.card-row::-webkit-scrollbar {
  display: none;
}

/* Estilo geral para o contêiner do card */
.card {
  font-family: 'Nationale Bold';
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    background-color: #181818;
    border-radius: 8px;
    padding: 16px;
    transition: background-color 0.3s ease;
}

/* Efeito de hover no card */
.card:hover {
    background-color: #282828;
}

/* Contêiner da imagem e do botão de play */
.card-image {
    position: relative; /* ESSENCIAL para o botão de play */
    width: 100%;
    aspect-ratio: 1/1; /* Garante que a imagem seja um quadrado */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

/* Efeito de hover: exibe o botão de play */
.card:hover .play-button {
    opacity: 1;
    transform: translateY(0);
}

/* Estilo das informações do card */
.card-info {
   font-family: 'Nationale Bold';
    margin-top: 16px;
    width: 100%;
    text-align: left;
}

.section-title {
   font-family: 'Nationale Bold', sans-serif;
    font-size: 0,5rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


#youtube-player {
    position: absolute;
    top: -9999px; /* Joga o vídeo para longe */
    left: -9999px;
    width: 1px;
    
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    height: 1px;
    pointer-events: none; /* Garante que ninguém clique nele sem querer */
}

/* Degradê de fundo dinâmico */
#playlist {
    transition: background 0.8s ease-in-out;
    background-attachment: fixed;
}

.card-subtitle {
  font-family: 'Nationale Bold';
    font-size: 0.85rem;
    color: #bababa;
    margin: 4px 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#mobile-nav-bar {
  background-color: #0b0b0ba7;
    position: fixed;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 65px;
    padding-bottom: env(safe-area-inset-bottom);
    z-index: 1000;
    display: flex;
    overflow: hidden;

}

/* Esconde o mobile-nav-bar em telas maiores que 1024px (Tablets e Desktops) */
@media (min-width: 1025px) {
    #mobile-nav-bar {
        display: none !important;
    }
}



/* Container dos ícones acima do vidro */
.nav-content {
    position: relative;
    z-index: 4;
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    transition: transform 0.2s ease;
}

.nav-link:active {
    transform: scale(0.9);
}

.nav-link img {
    width: 26px;
    height: 26px;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

/* Dark Mode Adaptation */
@media (prefers-color-scheme: dark) {
    #mobile-nav-bar {
        --bg-glass: rgba(0, 0, 0, 0.49);
        --glass-border: rgba(255, 255, 255, 0.1);
    }
}

/* 1. Contêiner Principal do Cabeçalho da Playlist */
.playlist-header {
    /* Degradê de cor no topo, com o preto do fundo. Ajuste a cor #50140A para a cor predominante da capa. */
    background: linear-gradient(to bottom, #3f8a70 0%, #121212 70%); 
    padding: 30px 40px; /* Espaçamento interno */
    display: flex;
    align-items: flex-end; /* Alinha a capa e os detalhes na parte inferior */
    gap: 30px; /* Espaçamento entre a capa e os detalhes */
    width: 100%;
    max-width: 1000px; /* Limita a largura do card para não ocupar a tela inteira */
    border-radius: 8px; /* Borda arredondada suave para o card */
    box-sizing: border-box; /* Garante que padding e borda não aumentem o tamanho */
}

/* 2. Contêiner da Capa da Playlist */
.playlist-cover-container {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6); /* Sombra da capa */
    border-radius: 4px; /* Mantém o arredondamento da imagem dentro do container */
    flex-shrink: 0; /* Impede que a capa encolha */
}

.playlist-cover {
    width: 232px; /* Largura fixa da capa */
    height: 232px; /* Altura fixa da capa */
    object-fit: cover; /* Garante que a imagem preencha o espaço sem distorcer */
    border-radius: 4px; /* Levemente arredondada como no Spotify */
    display: block; /* Remove espaço extra abaixo da imagem */
}

/* 3. Detalhes da Playlist (Textos e Botões) */
.playlist-details {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Espaçamento entre os elementos de texto */
    flex-grow: 1; /* Permite que os detalhes ocupem o espaço restante */
    padding-bottom: 5px; /* Pequeno ajuste para alinhar com a capa */
}

.playlist-type {
    font-size: 0.875rem; /* Tamanho do texto "Playlist" */
    color: #b3b3b3; /* Cor cinza padrão */
    font-weight: bold;
    text-transform: uppercase; /* Maiúsculas */
    margin-bottom: 5px; /* Mais espaço antes do título */
}

.playlist-title {
   font-family: 'Nationale Bold', sans-serif;
    font-size: 3rem; /* Título grande */
    font-weight: 900; /* Negrito bem forte */
    line-height: 1.1; /* Espaçamento entre linhas */
    color: white;
    margin: 0;
    word-break: break-word; /* Permite quebrar palavras longas */
}

.playlist-subtitle {
    font-size: 0.95rem; /* Tamanho do nome do artista/descrição */
    color: #b3b3b3; /* Cor cinza */
    margin-top: 5px;
}

/* 4. Contêiner dos Botões */
.playlist-actions {
    display: flex;
    align-items: center;
    margin-top: 25px; /* Espaçamento do subtítulo para os botões */
    gap: 20px; /* Espaçamento entre os botões */
}

.play-button {
    background-color: #ffffff; /* Verde brilhante (Spotify) */
    color: black;
    padding: 14px 35px;
    border-radius: 9999px; /* Botão completamente arredondado */
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none; /* Remove sublinhado do link */
    transition: transform 0.1s ease, background-color 0.1s ease; /* Transição suave */
    border: none;
    cursor: pointer;
}
.play-button:hover {
    transform: scale(1.04); /* Efeito de "zoom" ao passar o mouse */
    background-color: #1ed760; /* Verde um pouco mais claro no hover */
}

.follow-button {
    color: white;
    border: 2px solid #b3b3b3; /* Borda cinza */
    padding: 12px 28px; /* Um pouco menor que o botão Play */
    border-radius: 9999px; /* Arredondado */
    font-weight: bold;
    background-color: transparent;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.1s ease;
}
.follow-button:hover {
    border-color: #ffffff; /* Borda branca no hover */
    transform: scale(1.04);
}

.more-options {
    color: #b3b3b3;
    font-size: 2.2rem; /* Tamanho grande para os três pontos */
    line-height: 0; /* Ajusta o alinhamento vertical dos pontos */
    cursor: pointer;
    transition: color 0.2s ease;
}
.more-options:hover {
    color: #ffffff; /* Fica branco no hover */
}

/* --- Fila de Reprodução Lateral (Pop-up) --- */

.queue-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px; /* Largura padrão */
    max-width: 90vw;
    height: 100vh;
    background-color: var(--secondary-bg);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    transform: translateX(100%); /* Esconde inicialmente */
    transition: transform 0.3s ease-in-out;
    z-index: 1050; 
    display: flex;
    flex-direction: column;
    padding: 20px 15px 100px 15px; /* Padding inferior para não cobrir pelo player */
}

.queue-panel.open {
    transform: translateX(0); /* Abre a fila */
}

.queue-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #303030;
    padding-bottom: 10px;
}

#close-queue-btn {
    background: none;
    border: none;
    color: var(--text-color);
    opacity: 0.7;
    transition: opacity 0.2s;
}

#close-queue-btn:hover {
    opacity: 1;
}

.queue-list {
    list-style: none;
    overflow-y: auto;
    flex-grow: 1;
}

.queue-empty-message {
    text-align: center;
    color: #b3b3b3;
    padding-top: 50px;
}

/* Item da Fila */
.queue-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 4px;
    cursor: grab; /* Indica que é arrastável */
    transition: background-color 0.2s ease;
}

/* ========================================================== */
/* SEÇÃO: MINHAS CURTIDAS (LAYOUT DA PÁGINA/HOME)             */
/* ========================================================== */

/* Estilo do Título Principal da Seção */
.page-title {
    color: white;
    font-size: 32px; /* Tamanho aproximado para um H1/H2 */
    font-weight: 700; /* Negrito */
    margin-bottom: 24px; /* Espaço abaixo do título */
    /* Garante que o título esteja alinhado com o conteúdo do grid */
    padding: 0 16px; 
}

/* Container de Grid para os Cards */
#my-liked-items-list {
    display: grid;
    /* Define o número de colunas: 4 colunas fixas em telas maiores, adaptável em menores */
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); 
    gap: 24px; /* Espaçamento entre os cards (gap-6) */
    padding: 0 16px 48px 16px; /* Padding na área de conteúdo */
    background-color: transparent; /* A cor de fundo principal deve ser no body ou container pai */
}


/* ========================================================== */
/* SEÇÃO: MINHAS CURTIDAS (LAYOUT DA PÁGINA)                  */
/* ========================================================== */

/* Estilo do Título Principal da Seção */
.page-title {
    color: white;
    font-size: 32px; 
    font-weight: 700; 
    margin-bottom: 24px; 
    padding: 0 16px; 
}

/* Container de Grid para os Cards */
#my-liked-items-list {
    display: grid;
    /* Grid de 5 colunas em telas grandes, 3 em médias, 2 em pequenas */
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); 
    gap: 24px; 
    padding: 0 16px 48px 16px; 
}

.library-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
    margin-top: 15px; /* Espaço entre o título e as curtidas */
}

/* ========================================================== */
/* LAYOUT DA PÁGINA E GRID (BIBLIOTECA) */
/* ========================================================== */

/* Estilo do Título Principal (Inalterado) */
.page-title {
    color: white;
    font-size: 32px; 
    font-weight: 700; 
    margin-bottom: 24px; 
    padding: 0 16px; 
}

/* Container de Grid para os Cards Retangulares (Layout da Biblioteca/Mixes) */
.library-grid-container {
    display: grid;
    
    /* ⭐️ CORREÇÃO: Define o grid com 2 colunas fixas para dispositivos móveis 
       e usa 'auto-fit' para telas maiores (como o PC).
       
       Em telas pequenas (< 500px), ele vai tentar criar 2 colunas que se ajustam
       igualmente (1fr 1fr), garantindo 2 itens lado a lado.
    */
    grid-template-columns: 1fr; /* Padrão: 1 coluna */
    
    /* Media Query para forçar 2 colunas em telas menores (> 300px) */
    @media (min-width: 300px) {
        grid-template-columns: 1fr 1fr; 
    }
    
    /* Media Query para usar 2 colunas flexíveis em telas médias/grandes */
    @media (min-width: 600px) {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    gap: 16px; /* Espaçamento entre os cards */
    padding: 0 16px 48px 16px; 
}

/* ========================================================== */
/* CARD RETANGULAR INDIVIDUAL (BIBLIOTECA) */
/* ========================================================== */

/* 1. Estilo Base do Card Retangular */
.library-item-card {
    /* ⭐️ CORREÇÃO: Layout Flex Horizontal */
    display: flex;
    align-items: center; /* Centraliza verticalmente o texto */
    
    /* Tamanho e Padding */
    height: 70px; /* Altura fixa ou mínima, como nos exemplos */
    padding-right: 16px; 
    
    /* Cor e Interação */
    background-color: #0f0f0fd6; /* Fundo do card na biblioteca */
    border-radius: 4px; /* Arredondamento sutil */
    transition: background-color 0.3s ease;
    text-decoration: none; 
    color: inherit;
    position: relative;
    overflow: hidden; /* Garante que a imagem se encaixe */
    cursor: pointer;
}

.library-item-card:hover {
    background-color: #00000052; /* Fundo do hover */
}


/* 2. Capa (Fixo à Esquerda) */
.card-cover-library-wrapper {
    /* ⭐️ CORREÇÃO: Tamanho fixo da capa */
    width: 70px; 
    height: 70px; 
    flex-shrink: 0; /* Impede que a capa encolha */
    position: relative;
    overflow: hidden;
}

.card-cover-library-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ⭐️ CORREÇÃO: Sem arredondamento ou sombra, exceto no card Músicas Curtidas */
    border-radius: 4px 0 0 4px; /* Arredonda só o canto esquerdo da imagem */
}

/* 3. Informações (Texto à Direita) */
.card-info-library {
  font-family: 'Nationale Regular';
    padding-left: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.card-title-library {
  font-family: 'Nationale Bold';
    color: white;
    font-weight: 700; 
    font-size: 17px; 
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
}

.card-subtitle-library {
    /* ⭐️ CORREÇÃO: Subtítulo não é visível neste layout de Mix/Playlist da Home */
    display: none; 
    color: #A7A7A7; 
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
}

/* Estilos Especiais (Músicas Curtidas - Coração Roxo) */
.purple-overlay-library {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #5038A5; 
    display: flex;
    align-items: center;
    justify-content: center;
}
.heart-icon-library {
    width: 40%;
    height: 40%;
    fill: white;
}

/* ========================================================== */
/* ESTILO DA SAUDAÇÃO (BOM DIA/BOA TARDE/BOA NOITE) */
/* ========================================================== */

.greeting-style {
  margin-left: 20px;
  font-family: 'Nationale Bold';
 
    /* Cor do texto branca (text-white) */
    color: #FFFFFF; 
    
    /* Peso da fonte: Extrabold (font-extrabold) */
    font-weight: 900; 
    
    /* Margem na parte inferior (mb-8, que é 2rem) */
    margin-bottom: 3rem; 
    
    /* Tamanho da fonte padrão (mobile) - text-3xl */
    font-size: 1.875rem; 
    
    /* Evita quebra de linha se o título for muito longo (embora raro aqui) */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Ajuste do tamanho da fonte para telas maiores (md:text-5xl) */
@media (min-width: 768px) { /* Ponto de quebra 'md' */
    .greeting-style {
        font-size: 2.5em;
         display: none;
    }
}

.song-options-icon:hover {
    color: #000000; /* Preto */
    background-color: #e5e7eb; /* gray-200 */
}


.container {
    width: 100%;
    max-width: 600px; /* Limite a largura para melhor visualização */
    margin: 0 auto;
    padding-top: 0px;
}

.profile-header {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 30px;
}

.profile-pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.profile-name {
  font-family: 'Nationale Black';
    font-size: 1.6em;
    font-weight: 700;
    margin: 0;
}



.account-details, .your-plan {
  font-family: 'Nationale Bold';
    margin-bottom: 30px;
}

.detail-item {
  font-family: 'Nationale Regular';
    display: flex;
    flex-direction: column;
    padding: 12px 20px;
    }

.detail-item:last-of-type {
    border-bottom: none; /* Remover a borda do último item */
}

.detail-label {
  font-family: 'Nationale Regular';
    font-size: 0.85em;
    color: #9c9c9c; 
    margin-bottom: 3px;
    font-weight: 500;
}

.detail-value {
  font-family: 'Nationale Regular';
    font-size: 1em;
    font-weight: 400;
    color: #ffffff;
    white-space: nowrap; /* Evita quebra de linha para o nome de usuário */
    overflow: hidden;
    text-overflow: ellipsis;
}

.email-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.email-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Permite que o e-mail ocupe o espaço */
    margin-right: 10px;
}

.external-link {
    color: #b3b3b3;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding-left: 10px; /* Espaço entre o e-mail e o ícone */
}

.external-link svg {
    width: 20px;
    height: 20px;
    color: #b3b3b3;
    stroke-width: 1.5; /* Deixar o ícone um pouco mais fino */
}

.your-plan h2 {
  font-size: 1.6em;
    /* Ajusta o espaçamento do "Seu Plano" para alinhar com o card */
    padding: 0 20px;
    margin-bottom: 30px; 
    margin-top: 30px;
  }

/* NOVO ESTILO PARA O PLAN CARD */
.plan-card {
    display: flex;
    align-items: center;
    background-color: #bade55; /* Fundo do card mais escuro, como na imagem */
    padding: 15px 20px; /* Padding interno */
    margin: 0 20px; /* Margem lateral */
    border-radius: 8px; /* Borda arredondada */
    box-shadow: none; /* Remove qualquer sombra, se houver */
}

.plan-logo {
    width: 35px; /* Tamanho da imagem do logo */
    height: 35px;
    border-radius: 50%; /* Faz a imagem ser redonda */
    object-fit: cover; /* Garante que a imagem preencha o espaço sem distorcer */
    margin-right: 15px; /* Espaço à direita do logo */
    background-color: transparent; /* Certifica-se de que não tem fundo extra */
}


.plan-text {
    display: flex;
    flex-direction: column;
    /* Alinhamento dos textos do plano */
}

.plan-name {
    font-size: 1.1em;
    font-weight: 500;
    margin-bottom: 2px;
    color: #27361d;
}

.plan-description {
    font-size: 0.85em; /* Ajustado para parecer mais com a imagem */
    color: #27361d; /* Cor mais clara para a descrição */
}

/* ... (Manter estilos do body, container, profile-header, etc.) ... */



/* NOVO ESTILO PARA O PLAN LOGO (Para replicar a imagem do plano) */
.plan-logo-container {
    width: 35px;
    height: 35px;
    background-color: #b9a11d; /* Verde do Spotify */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    padding: 2px; /* Espaço para o ícone */
}

.plan-logo-icon {
    width: 100%;
    height: 100%;
    fill: #000000;
    /* Ajuste o SVG dentro do container para simular o ícone */
}

/* --- ESTILOS PARA AS NOVAS SEÇÕES (Pagamento / Segurança) --- */

.menu-block-container {
    margin: 25px 0; /* Espaçamento entre os blocos */
}

.block-title {
  font-size: 1.6em;
    /* Ajusta o espaçamento do "Seu Plano" para alinhar com o card */
    padding: 0 20px;
    margin-bottom: 30px; 
    margin-top: 30px;
}

.menu-block {
    background-color: #282828; /* Fundo mais escuro do bloco */
    margin: 0 20px;
    border-radius: 8px; /* Cantos arredondados do bloco */
    overflow: hidden; /* Garante que a borda arredondada se aplique aos itens internos */
}

.menu-item {
  
    display: flex;
    align-items: center;
    text-decoration: none; /* Remover sublinhado do link */
    padding: 15px 20px;

    color: #FFFFFF; /* Cor do texto padrão */
    transition: background-color 0.1s;
}

.menu-item:hover {
    background-color: #353535; /* Efeito de hover */
}

.menu-item.last-item {
    border-bottom: none; /* Remove a borda do último item de cada bloco */
}

.item-icon-left {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-right: 15px;
    /* Filtrar para ícones escuros ficarem claros, se necessário */
    filter: invert(40%); 
}

.item-text {
  font-family: 'Nationale Regular';
    flex-grow: 1; 
    font-size: 1em;
    font-weight: 400;
    color: #FFFFFF;
}

.item-arrow-right {
    width: 20px;
    height: 20px;
    color: #b3b3b3; 
    stroke-width: 1.5;
}

/* --- Barra de Pesquisa --- */
.search-bar {
    display: flex;
    align-items: center;
    background-color: #242424; /* Fundo do campo de pesquisa */
    border-radius: 4px; /* Bordas levemente arredondadas */
    padding: 8px 12px;
    margin-bottom: 20px;
}

.search-icon {
    /* Cor do ícone de busca */
    color: #b3b3b3;
    margin-right: 8px;
}

.search-bar input[type="text"] {
    flex-grow: 1;
    background-color: transparent; /* Fundo transparente */
    border: none;
    outline: none; /* Remove o foco padrão ao clicar */
    color: #ffffff; /* Cor do texto digitado */
    font-size: 1rem;
    padding: 0;
}

/* Estilo do placeholder */
.search-bar input::placeholder {
    color: #b3b3b3; /* Cor do texto do placeholder */
}


/* --- Estrutura dos Cards (Gêneros, Humores, Décadas) --- */

/* Contêiner que agrupa os cards em cada seção (Grid/Flex) */
.category-grid {
    display: flex;
    /* Permite que os cards quebrem a linha se não couberem */
    flex-wrap: wrap; 
    gap: 10px; /* Espaço entre os cards */
}

/* Estilo para os botões/cards de categoria */
.category-card {
    /* Estilo de botão arredondado com fundo escuro */
    background-color: #242424; 
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 9999px; /* Extremamente arredondado (pílula) */
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    /* Sombra interna sutil para profundidade (opcional) */
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1); 
    /* Efeito de transição ao passar o mouse */
    transition: background-color 0.2s ease;
    /* Para replicar o card que está semi-oculto no lado direito */
    white-space: nowrap; 
}

/* Cor ligeiramente mais clara ao passar o mouse */
.category-card:hover {
    background-color: #383838;
}

/* Estilos específicos para os cards mais proeminentes na imagem */
/* Você pode adicionar classes específicas no HTML para aplicar esses estilos */

/* Card de Gênero Principal (ex: Hip-hop, Pop, R&B/Soul, Rock) */
.genre-card {
    background-color: #404040; /* Fundo mais escuro para destaque na seção */
    font-weight: 700;
}

/* Card de Humor/Atividade Principal (ex: Para DJs, Gravadoras, Collabs) */
.activity-card {
    background-color: #404040;
}

/* Card de Década */
.decade-card {
    background-color: #404040;
}


/* --- Estilo Adicional para o link "VER TODOS" --- */
.view-all {
    /* Alinha o "VER TODOS" com o título */
    float: right;
    font-size: 0.75rem;
    font-weight: 700;
    color: #b3b3b3; /* Cor cinza sutil */
    text-transform: uppercase;
    text-decoration: none; /* Remove sublinhado */
    padding-top: 5px; /* Alinhamento visual */
}

/* Limpa o float após cada seção */
.categories::after {
    content: "";
    display: table;
    clear: both;
}

/* Animação de pulso para o esqueleto */
@keyframes skeleton-pulse {
  0% { background-color: #1a1a1a; }
  50% { background-color: #2a2a2a; }
  100% { background-color: #1a1a1a; }
}

.skeleton-card {
  min-width: 150px;
  height: 150px;
  background-color: #1a1a1a;
  border-radius: 8px;
  margin-right: 16px;
  animation: skeleton-pulse 1.5s infinite ease-in-out;
  display: inline-block;
}

.skeleton-circle {
  min-width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: #1a1a1a;
  margin-right: 16px;
  animation: skeleton-pulse 1.5s infinite ease-in-out;
  display: inline-block;
}



/* Estilos para o rodapÃ© */
footer {
    background-color: #00000000;
        color: #a0a0a0b0; /* Cor do texto padrÃ£o do rodapÃ© */
    padding: 50px 30px; /* EspaÃ§amento interno */
    display: flex;
    flex-direction: column; /* Organiza os itens em coluna */
    align-items: center; /* Centraliza os itens horizontalmente */
    text-align: center; /* Centraliza o texto */
    }


/* ConteÃºdo principal do rodapÃ© */
.footer-content {
    max-width: 800px; /* Largura mÃ¡xima para o conteÃºdo */
    margin-bottom: 30px; /* EspaÃ§o abaixo do conteÃºdo */
}

.footer-content p {
  font-family: 'Nationale Regular';
    font-size: 10px;
    line-height: 1.6;
    margin-bottom: 25px; /* EspaÃ§o abaixo do parÃ¡grafo */
    color: #e0e0e0;
}

/* Links de navegaÃ§Ã£o */
.footer-links ul {
    list-style: none; /* Remove os marcadores de lista */
    padding: 0;
    margin: 0 0 25px 0; /* EspaÃ§amento abaixo da lista */
}

.footer-links li {
    margin-bottom: 10px; /* EspaÃ§o entre os itens da lista */
}

.footer-links a {
  font-family: 'Nationale Regular';
    color: #a0a0a0; /* Cor do link */
    text-decoration: none; /* Remove sublinhado */
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f0f0f0; /* Cor mais clara ao passar o mouse */
}

/* Direitos autorais */
.copyright {
  font-family: 'Nationale Regular';
    margin-top: 20px; /* EspaÃ§o acima dos direitos autorais */
    font-size: 13px;
    color: #707070;
    display: flex;
    align-items: center;
    gap: 8px; /* EspaÃ§o entre o Ã­cone e o texto */
}

.copyright i {
    font-size: 16px;
}

/* Estilos para o logo personalizado */
.tune-logo {
    opacity: 0.5;
    width: 24px; /* Define a largura do logo (ajuste conforme necessÃ¡rio) */
    height: 24px; /* Define a altura do logo (ajuste conforme necessÃ¡rio para manter a proporÃ§Ã£o) */
    margin-right: 10px; /* Adiciona um espaÃ§o Ã  direita do logo */
    vertical-align: middle; /* Alinha o logo verticalmente com o texto */
    /* Se o seu logo tiver uma cor que vocÃª quer mudar via CSS, 
       e ele for SVG, vocÃª pode tentar usar filtros. Exemplo:
       filter: invert(100%) sepia(0%) saturate(7473%) hue-rotate(180deg) brightness(109%) contrast(100%); 
       Isso inverteria as cores. Ajuste os valores para obter o efeito desejado. */
}

/* Responsividade bÃ¡sica para telas menores */
@media (max-width: 768px) {
    footer {
        padding: 40px 20px;
    }

    .social-media-icons {
        gap: 15px;
        margin-bottom: 25px;
    }

    .social-media-icons a {
        font-size: 24px;
    }

    .footer-content {
        margin-bottom: 25px;
    }

    .footer-content p {
        font-size: 13px;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a,
    .language-selector button {
        font-size: 14px;
    }

    .copyright {
        font-size: 12px;
        margin-top: 30px;
    }
}


  .buttons .btn,
  .buttons .btnlic {
    width: 80%; /* fica mais largo no mobile */
    text-align: center;
  }

.welcome-card {
    background-image: url('./assets/grdbackdro.png');
    background-size: cover;
    animation: gradient 15s ease infinite;
    border-radius: 12px;
    padding: 20px;
    
    /* A MÁGICA AQUI */
    width: calc(100% - 60px); /* Garante margem lateral mesmo esticado */
    max-width: none;        /* Limite para não virar uma linha infinita */
    margin: 20px auto;        /* Centraliza o bloco */
    
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}




.tune-logo-welcome {
    width: 100px; /* Tamanho do logo */
    height: auto;
    filter: brightness(0) saturate(100%);
    display: inline-block; /* Para centralizar o ícone */
}

.welcome-message {
  font-family: 'Nationale Regular';
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.4;
    color: #000000;
}

/* Card de Lançamento Premium */
.release-card {
  font-family: 'Nationale Regular';
   background: #121212; /* Cor de segurança enquanto a imagem carrega */
    transition: background 0.8s ease, transform 0.3s ease; /* Transição suave de cor */
    padding: 32px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px); /* Começa levemente abaixo */
    transition: 
        opacity 0.6s ease-out, 
        transform 0.6s ease-out, 
        background 0.8s ease; /* Transição suave para a cor que vai chegar */

    border-radius: 16px;
    color: white;
    max-width: none;
    margin: 20px auto; 
    width: calc(100% - 40px); /* O segredo está aqui: largura total menos as margens */
    transition: all 0.3s cubic-bezier(0.3, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.release-card.loaded {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.release-card:hover {
    background: linear-gradient(90deg, #181818 0%, #181818cc 100%);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Header do Artista */
.artist-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.artist-thumb {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.label { 
  font-family: 'Nationale Regular';
    font-size: 13px; 
    color: #bdbdbdac; 
    font-weight: 700;
}

.artist-name { 
  font-family: 'Nationale Bold';
    font-size: 28px; 
    font-weight: 900; 
    margin: 0; 

}

/* Área da Capa e Detalhes */
.release-main {
    display: flex;
    gap: 28px;
    align-items: center;
}

.main-cover {
    width: 180px;
    height: 170px;
    border-radius: 8px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.343);
    transition: transform 0.3s ease;
}

.release-card:hover .main-cover {
    transform: scale(1.02);
}

/* Textos do Lançamento */
.type-label { 
    font-size: 13px; 
    font-weight: 600; 
    color: #b3b3b3; 
    display: block;
    margin-bottom: 8px;
}

.release-title { 
  font-family: 'Nationale Black';
    font-size: 38px; 
    font-weight: 900; 
    margin: 0 0 24px 0; 
    line-height: 1; 
    letter-spacing: -1px;
    color: #ffffff;
}

/* Botões de Ação Pequenos */
.actions { 
    display: flex; 
    gap: 20px; 
}

.action-btn {
    background: none;
    border: none;
    color: #b3b3b3;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s;
}

.action-btn:hover {
    color: #ffffff;
    transform: scale(1.1);
}

/* --- CONFIGURAÇÃO PARA CELULAR (MINI) --- */
@media (max-width: 768px) {
    .release-card {
        padding: 20px; /* Reduzido de 32px */
        margin: 20px auto;
        width: calc(100% - 24px); /* Respiro lateral menor */
        border-radius: 12px;
    }

    .artist-header {
        margin-bottom: 12px;
        gap: 10px;
    }

    .artist-thumb {
        width: 35px; /* Foto do artista menor */
        height: 35px;
    }

    .artist-name {
        font-size: 18px; /* Nome do artista menor */
    }

    .release-main {
        flex-direction: row; /* Mantém lado a lado, ou mude para column se preferir */
        align-items: center;
        gap: 12px;
    }

    .main-cover {
        /* O SEGREDO PARA NÃO ESTICAR: */
        width: 100px; 
        height: 100px;
        min-width: 100px; /* Impede que ela diminua demais */
        object-fit: cover; /* Corta a imagem sem esticar */
        border-radius: 6px;
    }

    .release-title {
        font-size: 27px; /* Título bem menor e "mini" */
        margin: 4px 0 10px 0;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* Limita a 2 linhas se o nome for gigante */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .type-label {
        font-size: 10px;
        letter-spacing: 0.5px;
    }

    .actions {
        gap: 12px;
    }

    .action-btn {
        font-size: 22px; /* Ícones menores */
    }
}

/* CONTAINER GERAL */
.top10-container {
  display: flex;
  overflow-x: auto;
  padding: 20px 0 0px;
  scrollbar-width: none;
}

.top10-container::-webkit-scrollbar {
  display: none;
}

/* LISTA */
ol.top10__list {
  list-style: none;
  counter-reset: rank-counter;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

/* ITEM */
.top10__item {
  counter-increment: rank-counter;
  position: relative;
  display: flex;
  align-items: center;

  /* espaço pro número gigante */
  padding-left: 90px;

  min-width: 260px;
  height: 220px;
  cursor: pointer;

  overflow: hidden; /* 🔥 corta o número igual Netflix */
  transition: transform 0.3s ease;
}

.top10__item:hover {
  transform: scale(1.05);
}

/* NÚMERO GIGANTE (NETFLIX FEEL) */
.top10__item::before {
  content: counter(rank-counter);
  position: absolute;
  left: -0px;

  /* 🔥 AGORA SOBE, NÃO DESCE */
  top: -10px;
font-family: 'Nationale Black';
  font-size: 220px;
  font-weight: 900;
  line-height: 1;

  color: #ffffff;

  z-index: 1;

  pointer-events: none;
}

/* CONTEÚDO (FICA NA FRENTE DO NÚMERO) */
.top10__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.top10__image {
  width: 160px;
  height: 160px;

  object-fit: cover;        /* 🔥 corta sem distorcer */
  object-position: center; /* centraliza o rosto */

  border-radius: 50%;
  border: 4px solid #000;
  background: #111;

  box-shadow: 0 10px 30px rgba(29, 29, 29, 0);
}


/* INFO */
.top10__info {
  margin-top: 12px;
  max-width: 160px;
}

.top10__info h4 {
  font-family: 'Nationale Bold';
  font-size: 16px;
  margin: 0;
  color: #fff;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top10__info p {
  font-family: 'Nationale Black';
  font-size: 12px;
  color: #b3b3b3;
  margin: 4px 0 0;
}

.top10-container {
  overflow: hidden; /* não scrolla mais */
}

.top10__list {
  display: flex;
  overflow-x: auto;   /* 🔥 AGORA QUEM SCROLLA */
  scrollbar-width: none;
}

.top10__list::-webkit-scrollbar {
  display: none;
}

/* MOBILE / TABLET */
@media (max-width: 768px) {
  .scroll-btn {
    display: none !important;
  }
}

/* Container Principal do Card */
.artist-promo-container {
    width: 100%;
    padding: 0 15px;
    margin: 25px 0 40px 0;
}

/* Corpo do Card com Efeito de Vidro */
.artist-promo-content {
    background: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.artist-promo-content:hover {
    border-color: rgba(0, 255, 91, 0.3); /* Brilho verde sutil no hover */
    background: linear-gradient(90deg, #ffffff 0%, #e9e9e9 100%);
}

/* Lado Esquerdo: Logo e Textos */
.promo-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.promo-logo {
    width: 100px;
    height: 50px;
    object-fit: contain;

}

.promo-badge {
    color: #00FF5B;
    font-family: 'Nationale Black';
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.promo-title {
    font-family: 'Nationale Bold';
    font-size: 20px;
    color: #0b0b0b;
    margin: 0;
}

.promo-subtitle {
    font-family: 'Nationale Regular';
    font-size: 13px;
    color: #000000;
    margin: 4px 0 0 0;
    max-width: 450px;
}

/* Lado Direito: Botão */
.promo-button {
    background-color: #000000;
    color: #fffefe;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Nationale Bold';
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.promo-button i {
    font-size: 18px;
}

.promo-button:hover {
    background-color: #313131;
    transform: translateY(-2px);
}

.fan-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-left: 10px;
}

.artist-circle-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #282828;
}

.fan-text {
    display: flex;
    flex-direction: column;
}

.fan-text .sub-title {
    font-size: 12px;
    color: #b3b3b3;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.fan-text .section-title {
    margin: 0; /* Remove a margem padrão para alinhar com o "Para fãs de" */
    font-size: 28px;
}

/* Container principal que segura a grade */
#favorites-grid-container {
    width: 100%;
    padding: 0 16px; /* Adiciona o respiro nas laterais para não encostar fora */
    box-sizing: border-box; /* Garante que o padding não aumente a largura total */
}

.favorites-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 8px; /* Espaço entre os cards */
    width: 100%;
}

@media (min-width: 1024px) {
    #favorites-grid-container {
        padding: 0 32px; /* Mais espaço no PC */
    }
    .favorites-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

/* Estilo do card individual */
.fav-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 56px; /* Altura padrão mobile */
    transition: background 0.2s;
}

.fav-img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    flex-shrink: 0;
}

.fav-text-container {
    flex: 1;
    padding: 0 12px;
    overflow: hidden; /* Importante para o truncate funcionar */
}

.fav-text {
    font-family: 'Nationale Bold', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.831);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.2;
}