body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  text-align: center;
  padding: 1em;
}

#play-all {
  margin-top: 0.5em;
  padding: 0.5em 1em;
  background: none;
  border: 2px solid #fff;
  color: #fff;
  cursor: pointer;
  border-radius: 1em;
}

#audio-list {
  flex: 1;
  padding: 1em;
}

.audio-card {
  display: flex;
  align-items: center;
  background: #111;
  padding: 0.5em;
  margin-bottom: 1em;
  border-left: 10px solid transparent;
  justify-content: space-between;
}

.audio-card img {
  width: 100%;
  height: auto;
}

.audio-card button {
  background: none;
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  border: none;
}

.card-logo{
  /*  width: 30%;*/
}

.card-texto{
/*  width: 75%;*/
  width: 75%;
  padding-left: 1em;
}

.player-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2d0030;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
  height: 15vh;
}

.footer-logo {
  text-align: center;
  padding: 2em 1em 15vh; /* espaço pro player */
  font-size: 0.8em;
  color: #aaa;
}

.img-50 {
  width: 50vw;       /* 50% da largura da tela (viewport width) */
  max-width: 100%;   /* Garante que não ultrapasse o tamanho da tela */
  height: auto;      /* Mantém a proporção da imagem */
  display: block;    /* Remove espaçamento inferior indesejado */
  margin: 0 auto;    /* Centraliza horizontalmente */
  padding-bottom: 1em;
}

.img-25 {
  width: 25vw;       /* 50% da largura da tela (viewport width) */
  max-width: 100%;   /* Garante que não ultrapasse o tamanho da tela */
  height: auto;      /* Mantém a proporção da imagem */
  display: block;    /* Remove espaçamento inferior indesejado */
  margin: 0 auto;    /* Centraliza horizontalmente */
}

.language-toggle {
  display: flex;
  border: 2px solid white;
  border-radius: 999px;
  overflow: hidden;
  width: fit-content;
  margin: 1rem auto;
  background-color: transparent;
}

.lang-btn {
  flex: 1;
  padding: 0.75rem 2rem;
  border: none;
  background-color: black;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.lang-btn.active {
  background-color: white;
  color: black;
}

.material-symbols-rounded {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
  color: yellow;
/*  font-size: 48px !important;*/
  padding: 10px;
  border: 3px solid yellow;
  border-radius: 50%;
  margin: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#pause-btn {
  display: none;
}

.card-play-btn{
  color: white;
  border: 3px solid white;
/*  font-size: 32px !important;*/
}

.card-pause-btn{
  color: white;
  border: 3px solid white;
/*  font-size: 3em !important;*/
}

.card-active {
  /*border: 2px solid #4CAF50;
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
  transform: scale(1.01);
  transition: all 0.5s ease;*/

  /*border: 2px solid transparent;
  border-image: linear-gradient(45deg, #FF5722, #FFC107);
  border-image-slice: 1;
  background-color: rgba(255, 193, 7, 0.05);*/

  /*border-left: 4px solid #2196F3;
  padding-left: 8px;*/

  /* colorido x branco  */

  /*border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;*/

  border: 3px solid transparent;
  border-image: linear-gradient(45deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
  border-image-slice: 1;
  background-color: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;

  /*border-left: 3px solid rgba(255, 255, 255, 0.7);
  padding-left: 10px;
  background-color: rgba(255, 255, 255, 0.02);*/
}