
    :root {
      --primary-color: #6a35ff;
      --secondary-color: #f50b97;
      --dark-color: #1a1a2e;
      --light-color: #f8f9fa;
      --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Montserrat', sans-serif;
      background-color: var(--dark-color);
      color: var(--light-color);
      height: 100vh;
      
    }
    
    /* Splash Screen */
    .splash-screen {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('imagens/fundo.jpg') no-repeat center center;
  background-size: cover;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }
    
  @keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.splash-logo {
  width: 40vw;
  max-width: 180px;
  animation: pulse 3s ease-in-out infinite;
}




    
    /* Home Screen */
    .home-screen {
      display: none;
      height: 100vh;
     background: url('imagens/fundosite.jpeg') no-repeat center center;
      background-size: cover;
      position: relative;
    }
    
    .home-screen::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      z-index: 0;
    }
    
 .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  position: relative;
  z-index: 1;
  background: rgba(22, 22, 22, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: none;
  border: none;
  border-radius: 0;
}

    
    .logo-text {
      font-size: 24px;
      font-weight: 700;
      background: var(--gradient);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    
    .social-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-icons img,
.social-icons svg {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}

.social-icons img {
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
}

.social-icons img:hover {
  transform: scale(1.2);
}

    
    .main-content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: calc(100vh - 80px);
      padding: 20px;
      text-align: center;
    }
    
    .headline {
      font-size: 2.5rem;
      margin-bottom: 15px;
      background: var(--gradient);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      line-height: 1.2;
    }
    
    .description {
      font-size: 1.2rem;
      margin-bottom: 40px;
      color: rgba(255, 255, 255, 0.8);
    }
    
    .player-controls {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      max-width: 400px;
      margin-bottom: 30px;
    }
    
    .play-btn {
  width: 60px;              /* reduz um pouco */
  height: 60px;             /* reduz um pouco */
  border-radius: 50%;       /* mantém o círculo */
  background: var(--gradient);
  border: none;
  color: white;
  font-size: 24px;          /* reduz o tamanho do ícone */
  margin-bottom: 15px;      /* diminui o espaçamento */
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25); /* sombra mais leve */
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;            /* centraliza o SVG */
  align-items: center;
  justify-content: center;
}

    
    .play-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }
    
   input[type="range"] {
    width: 100%;
    height: 6px;  /* Altura um pouco maior */
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin: 20px 0;
    overflow: hidden;
}

input[type="range"]::-webkit-slider-runnable-track {
    height: 100%;
    background: linear-gradient(90deg, #1e90ff, #e52e71, #ff8a00, white);
    background-size: 300% 100%;
    animation: gradient 3s infinite linear;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;  /* Aumentei o tamanho */
    height: 22px;  /* Aumentei o tamanho */
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: 2px solid rgba(0,0,0,0.2);  /* Borda para melhor contraste */
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);  /* Sombra para destacar */
    margin-top: -8px;  /* Centraliza verticalmente */
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
    .btn-pedir-musica {
      padding: 12px 30px;
      background: var(--gradient);
      color: white;
      border: none;
      border-radius: 30px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: transform 0.3s, box-shadow 0.3s;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    
    .btn-pedir-musica:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }

  #playerModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Modal para pedidos - padrão */
.modal-content.pedidos {
  background: #fff;     /* fundo branco ou transparente */
  padding: 2px;        /* margem interna em todos os lados */
  border-radius: 8px;   /* cantos levemente arredondados */
  max-width: calc(100% - 20px); /* tira 10px de cada lado */
  width: 100%;
  height: calc(100vh - 20px);   /* tira 10px em cima e 10px embaixo */
  box-sizing: border-box;
  text-align: left;
}

/* Ajuste para quando não é PWA (navegador com barra visível) */
body:not(.pwa-installed) .modal-content.pedidos {
  margin-top: 50px; /* espaço extra para não grudar no topo */
  height: calc(100vh - 70px); /* reduz altura proporcionalmente */
}


.modal-content.pedidos iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 6px; /* para acompanhar o arredondamento do container */
}
.modal-content.pedidos button {
  position: absolute;
  top: 8px;     /* distância do topo */
  right: 8px;   /* distância da lateral */
  background: none;
  border: none;
  color: red;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
}


.modal-content button {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: rgb(244, 8, 8);
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
}

    
   .current-song {
  margin-top: 5px;
  margin-bottom: 10px; /* mais espaço para o botão */
  padding: 15px 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  text-align: center;
}
.now-playing-text {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  font-weight: 500;
}
.song-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;

  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto 5px auto;
}

.song-title span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 10s linear infinite;
  white-space: nowrap;
  color: white;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.song-artist {
  font-size: 1rem;
  opacity: 0.8;
}
@media (max-width: 480px) {
  .headline {
    font-size: 1.8rem;
  }
  
  .description {
    font-size: 1rem;
  }

  .play-btn {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .main-content {
    padding: 15px;
  }

  .song-title {
    max-width: 200px;
  }
}

/* Ajuste específico para o botão "Pedir Música" */
.btn-pedir-musica {
  margin-top: 25px; /* Aumenta o espaço acima do botão */
  display: block; /* Garante que o margin funcione corretamente */
}

/* Se estiver usando mobile, adicione também: */
@media (max-width: 768px) {
  .btn-pedir-musica {
    margin-top: 15px; /* Espaço menor em telas pequenas */
  }
}
.headline {
    transition: opacity 1s ease-in-out;
    opacity: 1;
  }
  .fade-out {
    opacity: 0;
  }
 .live-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.live-text {
  color: white; /* Texto branco */
  font-weight: bold;
  font-size: 14px;
}

.blinking-dot {
  display: inline-block;
  width: 8px; /* Tamanho um pouco menor */
  height: 8px;
  background-color: #ff0000;
  border-radius: 50%;
  animation: blink 1s infinite;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.3; } /* Suavizei a transição */
  100% { opacity: 1; }
}
.menu-toggle {
  cursor: pointer;
}


.menu-icon {
  width: 32 px;
  height: 32px;
}

/* Menu Lateral */
.side-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: #200216; /* Cor do site */
  z-index: 10000; /* Muito acima para garantir prioridade */
  transition: right 0.3s ease;
  box-shadow: -2px 0 10px rgba(0,0,0,0.2);
}

.side-menu.active {
  right: 0;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #1e0115;
  color: white;
}

.close-menu {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.menu-options {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-options li a {
  display: block;
  padding: 15px 20px;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid #1e0115;
  transition: background 0.3s;
}

.menu-options li a:hover {
  background: #1e0115;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 9999; /* Acima de tudo, mas abaixo do menu */
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-category {
  padding: 10px 20px;
  color: #ecf0f1;
  background: linear-gradient(90deg, #6a35ff, #680842, #1a1a2e);
  font-weight: bold;
  font-size: 0.9em;
  text-transform: uppercase;
}

.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 11000;
  padding: 15px; /* pra não ficar colado nas bordas */
  box-sizing: border-box;
}

.modal-content {
  background: #7130b3;
  color: white;
  padding: 50px 20px 30px 20px;
  border-radius: 8px;
  max-width: 360px;
  width: 100%;
  position: relative;
  text-align: center;
  font-size: 16px; /* fonte padrão boa pra mobile */
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: white;
  padding: 10px;
  line-height: 1;
  user-select: none;
  /* Aumenta área clicável no mobile */
  touch-action: manipulation;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.close-modal:hover,
.close-modal:focus {
  background-color: rgba(255, 255, 255, 0.2);
  outline: none;
}

.btn-whatsapp,
.btn-copy {
  margin-top: 20px;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border: none;
  user-select: none;
  transition: background-color 0.3s;
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
  text-decoration: none;
  display: inline-block;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
  background-color: #1ebe5c;
  outline: none;
}

.btn-copy {
  background-color: #680842;
  color: white;
  display: inline-block;
}

.btn-copy:hover,
.btn-copy:focus {
  background-color: #4a062d;
  outline: none;
}

/* Modal geral */
.modal {
  position: fixed;
   
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
}

/* Modal conteúdo */
#modalBiblia .modal-content {
  width: 95%;
  height: 95vh;
  max-width: none;
  margin: 2% auto;
  z-index: 9999;
  border-radius: 10px;
  padding: 20px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

/* Botão de fechar */
#modalBiblia .close-modal {
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 26px;
  font-weight: bold;
  color: #f30505;
  cursor: pointer;
}

#modalBiblia button {
  background-color: #7130b3;
  color: white;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

#modalBiblia button:hover {
  background-color: #f80707;
}
#modalBiblia .biblia-controls button {
  margin-top: -5px; /* Ajuste o valor conforme precisar */
}

#bannerAnuncio {
  animation: fadeIn 0.5s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}/* Estilo base para mobile */
/* Container principal com efeito de vidro */
#noticiasFeedContainer {
  margin: 15px 0;
  overflow: hidden;
  width: 100%;
  background: rgba(0, 0, 0, 0.5); /* Fundo mais escuro */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 25px 0 15px 0; /* Dei mais espaço pro título */
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

/* Título "Últimas Notícias" */
.feed-title {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%); /* Centraliza */
  color: #fff;
  font-weight: 600;
  font-size: 14px;
background: linear-gradient(90deg, #41052c, #0d0d0d);
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 2;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  pointer-events: none;
  text-align: center;
}

/* Container do feed */
#noticiasFeed {
  display: inline-block;
  white-space: nowrap;
  margin-top: 20px;  /* só desce um pouco pra não colidir */
  padding-left: 0;   /* zerado */
  margin-left: 0;    /* zerado */
}


/* Itens de notícia */
#noticiasFeed span {
  display: inline-block;
  padding: 0 25px;
  cursor: pointer;
  color: white;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  white-space: nowrap;
  transition: all 0.3s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Efeito hover */
#noticiasFeed span:hover {
  color: #4fc3f7;
  transform: translateY(-2px);
}

/* Indicador de scroll */
#noticiasFeedContainer::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 100%);
  pointer-events: none;
}

/* Responsivo */
@media (max-width: 768px) {
  .feed-title {
    font-size: 12px;
    /*left: 10px;*/
  }
  
  #noticiasFeed {
    padding-left: 85px;
  }
  
  #noticiasFeed span {
    padding: 0 15px;
    font-size: 13px;
  }
}