    /* RESET */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      background-color: #111;
      color: #fff;
    }

    html,
    body {
      margin: 0;
      padding: 0;
      width: 100%;
      overflow-x: hidden;
      /* evita barra horizontal */
    }


    /* HEADER */
    header {
      width: 100%;
      padding: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(0, 0, 0, 0.6);
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1000;
    }

    .logo {
      font-size: 22px;
      font-weight: bold;
    }

    /* MENU DESKTOP */
    .menu-desktop ul {
      list-style: none;
      display: flex;
      gap: 20px;
    }

    .menu-desktop ul li a {
      color: #fff;
      text-decoration: none;
      font-size: 16px;
      transition: 0.3s;
    }

    .menu-desktop ul li a:hover {
      opacity: 0.7;
    }

    /* MENU MOBILE */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
    }

    .hamburger div {
      width: 25px;
      height: 3px;
      background: #fff;
    }

    .menu-mobile {
      position: fixed;
      top: 70px;
      right: -220px;
      /* escondido fora da tela */
      width: 150px;
      background: rgba(0, 0, 0, 0.9);
      transition: 0.3s;
      padding: 10px;
      z-index: 999;
      display: flex;
      /* sempre flex, para que toggle funcione */
      flex-direction: column;
    }


    .menu-mobile ul {
      display: flex;
      flex-direction: column;
      gap: 10px;
      /* espaçamento menor */
      list-style: none;
      /* remove os pontinhos */
    }

    .menu-mobile ul li a {
      color: #fff;
      text-decoration: none;
      font-size: 14px;
    }

    .menu-mobile.show {
      right: 0;
    }

    /* HERO */
    .hero {
  width: 100%;
  height: 100vh;
  background-image: url('../banner.png'); /* Ajustar conforme o nome real */
  background-size: cover;
  background-position: top center; /* Prioriza o rosto no mobile */
  background-repeat: no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
  margin-top: 80px;
}


    .hero h1 {
      position: absolute;
      bottom: 20px;
      /* distância do rodapé da seção */
      right: 20px;
      /* distância da direita */
      font-size: 60px;
      color: #CB6CE6;
      text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
      text-align: center;
    }

    @media (max-width: 768px) {
      .hero {
        background-position: right;
        /* ajusta o rosto para telas menores */
      }
    }

    /* RESPONSIVO */
    @media (max-width: 768px) {
      .menu-desktop {
        display: none;
        /* esconde menu desktop no mobile */
      }

      .hamburger {
        display: flex;
        /* mostra hambúrguer no mobile */
      }

      .hero h1 {
        font-size: 40px;
        bottom: 10px;
        right: 10px;
        text-align: right;
      }
    }

    .second-hero {
      position: relative;
      width: 100%;
      height: 100vh;
      background-image: url('../imagem1.jpg');
      /* substitua pela sua imagem */
      background-size: cover;
      background-position: center;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      /* para que o h1 seja posicionado em relação à hero */

    }

    .second-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      /* camada escura */
    }

    .second-hero .text h2 {
      color: #fff;
      transition: 0.3s;
      cursor: pointer;
    }

    .second-hero .text h2:hover {
      color: #FF8C00;
      /* laranja escuro */
    }

    .featured {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      padding: 40px 20px;
    }

    .featured img {
      width: 50%;
      object-fit: cover;
    }

    .featured .text {
      width: 50%;
      color: #fff;
    }

    #noticias-recentes {
      padding: 40px 20px;
      background-color: #111;
      color: #fff;
    }

    #noticias-recentes h2 {
      text-align: center;
      margin-bottom: 30px;
      font-size: 36px;
    }

    .noticia-item {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .noticia-item:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .cards-slider {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding-bottom: 20px;
      flex-wrap: nowrap;
      /* impede que quebrem para a linha de baixo */
      justify-content: center;
      /* centraliza o slider */
    }

    .card {
      flex: 0 0 300px;
      background-color: #222;
      border-radius: 10px;
      overflow: hidden;
      scroll-snap-align: start;
      text-align: justify;
      /* <-- aqui faz o texto ficar justificado */
    }

    .card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .card p {
      padding: 10px;
      font-size: 16px;
    }

    /* Responsivo para tablets */
    @media (max-width: 1024px) {
      .card {
        flex: 0 0 200px;
        /* cards um pouco menores */
      }
    }

    /* Responsivo para celulares */
    @media (max-width: 768px) {
      .card {
        flex: 0 0 200px;
        /* cards menores para caber na tela */
      }
    }


    footer {
      background-color: #111;
      color: #fff;
      padding: 40px 20px;
    }

    .footer-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      text-align: center;
    }

    .footer-logo {
      font-size: 24px;
      font-weight: bold;
      color: #CB6CE6;
    }

    .footer-links a {
      color: #fff;
      text-decoration: none;
      margin: 0 10px;
      transition: 0.3s;
    }

    .footer-links a:hover {
      color: #CB6CE6;
    }

    .footer-social a {
      margin: 0 10px;
      color: #fff;
      transition: 0.3s;
    }

    .footer-social a:hover {
      color: #CB6CE6;
    }

    .footer-social i {
      width: 24px;
      height: 24px;
    }

    .footer-copy {
      font-size: 14px;
      color: #888;
    }

    /* Responsivo */
    @media (max-width: 768px) {

      .footer-links,
      .footer-social {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
      }
    }

    #videos {
      padding: 40px 20px;
      background-color: #111;
      color: #fff;
    }

    #videos h2 {
      text-align: center;
      margin-bottom: 30px;
      font-size: 36px;
    }

    .videos-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .video-card {
      width: 300px;
      /* largura do card */
      background-color: #222;
      border-radius: 10px;
      overflow: hidden;
    }

    .video-card iframe {
      width: 100%;
      height: 170px;
      /* altura do vídeo */
      border: none;
    }

    .video-card p {
      padding: 10px;
      font-size: 16px;
      text-align: center;
    }

    .video-item {
      transition: transform 0.3s ease, filter 0.3s ease;
    }

    .video-item:hover {
      transform: scale(1.03);
      filter: brightness(1.1);
    }


    #discografia {
      padding: 60px 20px;
      background-color: #111;
      color: #fff;
      text-align: center;
    }

    #discografia h2 {
      font-size: 36px;
      margin-bottom: 40px;
    }

    .albums-container {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 40px;
      /* espaço entre as duas partes */
      flex-wrap: wrap;
    }

    .albums-left {
      display: flex;
      gap: 20px;
      /* espaço entre os dois álbuns já lançados */
    }

    .album-card {
      width: 220px;
      background-color: #222;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s;
    }

    .album-card:hover {
      transform: translateY(-5px);
    }

    .album-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .album-card p {
      padding: 10px;
      font-size: 16px;
    }

    .album-card .em-breve {
      display: block;
      color: #CB6CE6;
      font-weight: bold;
      margin-top: 5px;
    }

    /* Destaque do álbum em breve */
    .em-breve-card {
      transform: scale(1.1);
      box-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
    }

    /* Responsivo */
    @media (max-width: 1024px) {
      .albums-container {
        gap: 30px;
      }

      .albums-left {
        gap: 15px;
      }
    }

    @media (max-width: 768px) {
      .albums-container {
        flex-direction: column;
        align-items: center;
      }

      .albums-left {
        flex-direction: row;
        gap: 15px;
        margin-bottom: 20px;
      }

      .album-card {
        width: 180px;
      }

      .em-breve-card {
        transform: scale(1);
        box-shadow: none;
      }
    }

    /* Inicialmente escondido e com deslocamento */
    .animate-on-scroll {
      opacity: 0;
      transform: translateY(50px);
      /* sobe de baixo para cima */
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    /* Quando a classe ativa é adicionada pelo JS */
    .animate-on-scroll.active {
      opacity: 1;
      transform: translateY(0);
    }

    .album-anim {
      opacity: 0;
      transform: translateY(50px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    /* Cada álbum terá um delay diferente */
    .album-anim:nth-child(1) {
      transition-delay: 0.2s;
    }

    .album-anim:nth-child(2) {
      transition-delay: 0.4s;
    }

    .album-anim:nth-child(3) {
      transition-delay: 0.6s;
    }

    /* Quando ativo */
    .album-anim.active {
      opacity: 1;
      transform: translateY(0);
    }

    .player-grid {
      display: flex;
      flex-wrap: wrap;
      /* permite quebrar linha se não couber */
      gap: 20px;
      /* espaço entre os itens */
      justify-content: center;
    }

    .audio-item {
      width: 180px;
      /* largura de cada “célula” */
      text-align: center;
    }

    .audio-title {
      cursor: pointer;
      font-size: 16px;
      padding: 8px 12px;
      background-color: #222;
      border-radius: 5px;
      transition: background-color 0.3s;
    }

    .audio-title:hover {
      background-color: #333;
    }

    .audio-player {
      display: none;
      width: 100%;
      margin-top: 5px;
    }

    /* Responsivo */
    @media (max-width: 768px) {
      .audio-item {
        width: 45%;
        /* dois por linha em telas menores */
      }
    }

    @media (max-width: 480px) {
      .audio-item {
        width: 90%;
        /* um por linha em telas bem pequenas */
      }
    }

    #player {
      padding: 60px 20px;
      /* já garante espaço nas laterais */
      background-color: #111;
      color: #fff;
      text-align: center;
      /* centraliza todo o conteúdo dentro da seção */
    }

    #player h2 {
      font-size: 36px;
      margin-bottom: 40px;
      text-align: center;
      /* garante que o título fique centralizado */
      max-width: 800px;
      /* limita a largura para não ficar gigante em telas grandes */
      margin-left: auto;
      margin-right: auto;
    }

    section {
      background-color: #1a1a1a;
      /* cinza escuro elegante */
      color: #fff;
      padding: 60px 20px;
    }

    .audio-btn {
      background-color: #CB6CE6;
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 25px;
      cursor: pointer;
      font-size: 16px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);

      width: 250px;
      /* 🔥 TODOS FICAM IGUAIS */
      text-align: center;
    }


    .audio-btn:hover {
      background-color: #3919eb;
      /* laranja escuro no hover */
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

    .audio-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      /* Centraliza o botão */
    }

    /* ------------------------------------------------------------------
   AJUSTES EXIGIDOS POR LUCINÉIA — TAMANHO DOS CARDS E LINHA NO FOOTER
--------------------------------------------------------------------*/

    /* 🔥 CARDS DE NOTÍCIAS – agora maiores e mais elegantes */
    .cards-slider .card {
      flex: 0 0 350px;
      /* antes 300 — aumenta a largura */
      border-radius: 14px;
    }

    .cards-slider .card img {
      height: 240px;
      /* antes 200 — imagem mais imponente */
    }

    .cards-slider .card p {
      font-size: 18px;
      /* mais legível */
      padding: 15px;
    }

    /* Responsivo */
    @media (max-width: 768px) {
      .cards-slider .card {
        flex: 0 0 260px;
      }

      .cards-slider .card img {
        height: 200px;
      }
    }

    /* ------------------------------------------------------------------ */

    /* 🔥 CARDS DE VÍDEOS – aumentados e mais modernos */
    .video-card {
      width: 350px;
      /* antes 300 */
      border-radius: 14px;
    }

    .video-card iframe {
      height: 210px;
      /* antes 170 */
    }

    .video-card p {
      font-size: 18px;
      padding: 12px;
    }

    /* Responsivo */
    @media (max-width: 768px) {
      .video-card {
        width: 280px;
      }

      .video-card iframe {
        height: 180px;
      }
    }

    /* ------------------------------------------------------------------ */

    /* 🔥 DISCOGRAFIA – capas maiores e destaque mais forte */
    .album-card {
      width: 330px;
      /* antes 220 */
    }

    .album-card img {
      height: 330px;
      /* antes 220 */
    }

    .album-card p {
      font-size: 18px;
    }

    /* Responsivo */
    @media (max-width: 768px) {
      .album-card {
        width: 200px;
      }

      .album-card img {
        height: 200px;
      }
    }

    /* ------------------------------------------------------------------ */

    /* 🔥 LINHA DE SEPARAÇÃO ACIMA DO FOOTER */
    footer {
      border-top: 2px solid #333;
      /* linha suave, elegante */
      padding-top: 50px;
      /* espaço depois da linha */
    }

    /* SESSÃO SOBRE */
    .sobre-container {
      width: 90%;
      max-width: 1200px;
      margin: 60px auto;
      display: flex;
      flex-direction: column;
      gap: 60px;
    }

    .sobre-row {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .sobre-row.invert {
      flex-direction: row-reverse;
    }

    /* Colunas */
    .sobre-col {
      flex: 1;
    }

    /* Texto */
    .text-col h2 {
      font-size: 2rem;
      margin-bottom: 15px;
      text-align: justify;
      /* 📌 aqui faz o texto ficar justificado */
    }

    .text-col p {
      font-size: 1.1rem;
      line-height: 1.6;
      text-align: justify;
      /* 📌 aqui faz o texto ficar justificado */
    }

    /* Imagens */
    .img-col img {
      width: 100%;
      border-radius: 10px;
      object-fit: cover;
    }

    /* MOBILE */
    @media (max-width: 768px) {

      .sobre-row,
      .sobre-row.invert {
        flex-direction: column;
      }
    }

    /* Inicialmente escondido e deslocado */
    .fade-slide {
      opacity: 0;
      transform: translateY(50px);
      /* sobe de baixo para cima */
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    /* Quando a classe ativa é adicionada pelo JS */
    .fade-slide {
      opacity: 0;
      transform: translateY(50px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .fade-slide.active {
      opacity: 1;
      transform: translateY(0);
    }

    /* Remove qualquer espaço do html e body */

    /* Slider */
    .hero-slider {
      position: relative;
      /* necessário para slides absolute */
      width: 100%;
      height: 100vh;
      /* ocupa altura da tela */
      overflow: hidden;
    }

    .hero-slider .slide {
      position: absolute;
      top: 0;
      left: 0;
      /* garante que começa da extremidade esquerda */
      width: 100%;
      height: 100%;
      margin: 0;
      padding: 0;
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      display: flex;
      align-items: flex-end;
      /* mantém h1 na parte inferior */
      justify-content: flex-start;
      /* ainda alinhado à esquerda para referência */
      box-sizing: border-box;
    }

    .hero-slider .slide.active {
      opacity: 1;
    }

    .hero-slider h1 {
      color: #fff;
      font-size: 48px;
      text-align: right;
      text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
      position: absolute;
      right: 50px;
      bottom: 70px;
      max-width: 40%;
      margin: 0;
    }

    /* Sessão CTA com imagem de fundo */
    .cta-section-bg {
      position: relative;
      background-size: cover;
      background-position: center;
      height: 100px;
      /* ajuste conforme necessário */
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
    }

    /* Overlay para escurecer a imagem e destacar o texto */
    .cta-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      /* escurece a imagem */
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Conteúdo da sessão */
    .cta-section-bg .cta-content {
      text-align: center;
      max-width: 600px;
      z-index: 2;
    }

    .cta-section-bg h2 {
      font-size: 36px;
      margin-bottom: 20px;
    }

    .cta-section-bg p {
      font-size: 18px;
      margin-bottom: 30px;
    }

    /* Botão CTA */
    .cta-button {
      display: inline-block;
      padding: 15px 35px;
      font-size: 18px;
      color: #fff;
      background-color: #ff69b4;
      text-decoration: none;
      border-radius: 50px;
      transition: 0.3s ease;
      z-index: 2;
    }

    .cta-button:hover {
      background-color: #ff1493;
      transform: scale(1.05);
    }

    /* Geral para container */
    .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Seção 1: Player Principal */
    .player-principal {
      text-align: center;
      padding: 80px 20px;
      background-color: #f9f9f9;
    }

    .player-principal h2 {
      font-size: 40px;
      margin-bottom: 10px;
      color: #ff69b4;
    }

    .player-principal p {
      font-size: 18px;
      margin-bottom: 30px;
      color: #333;
    }

    .player-principal audio {
      width: 100%;
      max-width: 600px;
      outline: none;
    }

    /* Seção 2: Lista de Músicas */
    .lista-musicas {
      padding: 80px 20px;
      background-color: #fff;
      text-align: center;
    }

    .lista-musicas h2 {
      font-size: 36px;
      margin-bottom: 40px;
      color: #f9f9f9;
    }

    .musicas-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
    }

    .musica-card {
      background-color: #f7f7f7;
      border-radius: 15px;
      padding: 25px;
      width: 260px;
      box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .musica-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }

    .musica-card h3 {
      font-size: 20px;
      margin-bottom: 15px;
      color: #ff1493;
    }

    .musica-card audio {
      width: 100%;
      outline: none;
    }

    /* Seção 3: CTA Player */
    .cta-player {
      background-color: #6a0dad;
      color: #fff;
      text-align: center;
      padding: 80px 20px;
    }

    .cta-player h2 {
      font-size: 36px;
      margin-bottom: 20px;
    }

    .cta-player p {
      font-size: 18px;
      margin-bottom: 30px;
    }

    .cta-player .cta-button {
      display: inline-block;
      padding: 15px 40px;
      font-size: 18px;
      color: #fff;
      background-color: #ff69b4;
      text-decoration: none;
      border-radius: 50px;
      transition: 0.3s ease;
    }

    .cta-player .cta-button:hover {
      background-color: #ff1493;
      transform: scale(1.05);
    }

    /* Responsividade */
    @media (max-width: 768px) {
      .musicas-grid {
        flex-direction: column;
        gap: 20px;
      }

      .musica-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
      }
    }


    .home-radio {
      text-align: center;
      padding: 80px 20px;
      background-color: #f0f0f0;
    }

    .home-radio h2 {
      font-size: 36px;
      margin-bottom: 15px;
      color: #6a0dad;
    }

    .home-radio p {
      font-size: 18px;
      margin-bottom: 30px;
      color: #333;
    }

    .radio-player button {
      padding: 15px 40px;
      font-size: 18px;
      background-color: #ff69b4;
      color: #fff;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .radio-player button:hover {
      background-color: #ff1493;
      transform: scale(1.05);
    }

    .contato-container {
      padding: 80px 20px;
    }

    .contato-flex {
      display: flex;
      flex-wrap: wrap;
      /* para telas pequenas */
      align-items: flex-start;
      gap: 50px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .contato-foto {
      flex: 1 1 200px;
    }

    .contato-foto img {
      width: 100%;
      max-width: 300px;
      border-radius: 10px;
      display: block;
    }

    .contato-info {
      flex: 2 1 400px;
    }

    .contato-info h2 {
      font-size: 32px;
      color: #ff69b4;
      margin-bottom: 20px;
    }

    .contato-info p {
      font-size: 18px;
      color: #f8f7f7;
      margin-bottom: 15px;
      line-height: 1.6;
    }

    .contato-info ul {
      list-style: none;
      padding: 0;
      margin-bottom: 20px;
    }

    .contato-info ul li {
      font-size: 18px;
      margin-bottom: 10px;
    }

    .contato-info ul li i {
      margin-right: 10px;
      color: #ff69b4;
    }

    .contato-info ul li a {
      text-decoration: none;
      color: #ff69b4;
      transition: 0.3s;
    }

    .contato-info ul li a:hover {
      color: #ff1493;
    }

    /* Media Queries para mobile */
    @media screen and (max-width: 768px) {
      .contato-flex {
        flex-direction: column;
        /* coloca foto em cima e texto embaixo */
        align-items: center;
        text-align: center;
      }

      .contato-foto img {
        max-width: 300px;
      }

      .contato-info {
        flex: 1 1 100%;
      }

      .contato-info ul li {
        font-size: 16px;
      }

      .contato-info h2 {
        font-size: 28px;
      }

      .contato-info p {
        font-size: 16px;
      }
    }


    .footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  position: relative;
  color: #fff; /* cor dos ícones */
  font-size: 24px;
  text-decoration: none;
}

.footer-social a .tooltiptext {
  visibility: hidden;
  width: max-content;
  background-color: rgba(0,0,0,0.8);
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 4px 8px;
  position: absolute;
  bottom: 130%; /* posiciona acima do ícone */
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 12px;
  pointer-events: none;
  white-space: nowrap;
  z-index: 10;
}

.footer-social a:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

    /* =========================
   Base visual global (override)
   Cole no final do seu CSS
   ========================= */
:root{
  --bg-dark: #0f0f12;            /* cor base escura */
  --bg-accent: #1a1730;         /* leve variação */
  --bg-gradient-1: linear-gradient(135deg, rgba(16,15,20,1) 0%, rgba(26,23,48,1) 100%);
  --surface: rgba(255,255,255,0.02);
  --glass: rgba(255,255,255,0.03);
}

/* Força um fundo elegante em todo site */
html, body {
  background: var(--bg-gradient-1) fixed;
  color: #eee;
}

/* Torna seções com background preto explícito mais suaves */
section, main, .container, .sobre-container, .lista-musicas, .cards-slider {
  background: transparent; /* evita sobrescrever o gradiente */
}

/* Elementos que tinham fundo preto opaco: aplicar superfície suave */
.footer-container,
.player-principal,
.cta-player,
.cta-section-bg .cta-overlay {
  background: var(--surface);
}

/* Se tiver elementos com rgba preto direto, força nova cor */
/* Atenção: este selector é amplo — mantê-lo no final do CSS evita conflitos */
*[style*="background: rgba(0, 0, 0"] { 
  background: transparent !important;
}

/* Ajustes finos: textos e links */
a { color: #ffb3d9; }
a:hover { color: #ffd7ef; }

/* Opcional: textura sutil por pseudo-elemento (premium) */
body::before {
  content:"";
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,\
    <svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'>\
      <defs><linearGradient id='g' x1='0' x2='1'><stop offset='0' stop-color='%23000000' stop-opacity='0.02'/><stop offset='1' stop-color='%23ffffff' stop-opacity='0.01'/></linearGradient></defs>\
      <rect width='120' height='120' fill='url(%23g)'/></svg>");
  opacity: 0.05;
  mix-blend-mode: overlay;
  z-index: 0;
}



