/* ======== RESET ======== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* ======== FUNDO ======== */
body {
  background-image: url("img/fUNDO EBNEZER.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  color: white;
}

/* ======== CONTAINER PRINCIPAL ======== */
.Central_pasta {
  width: 350px;
  min-height: 500px;
  background-color: rgba(14, 12, 12, 0.75);
  
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  background-image: url('img/Ebnezer\ LOgo.png');
  background-repeat: no-repeat;
  background-position: center 60%;
  background-size: 80%;
  backdrop-filter: blur(4px);
  
}

/* ======== TÍTULO ======== */
.Titulo_Hino_mocidade {
  font-size: 1.6rem;
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 1px yellow;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 1rem;
}

/* Destaque em vermelho */
.destaque_E {
  color: transparent;
  -webkit-text-stroke: 1px rgb(163, 39, 39);
}

/* ======== SEÇÃO HINO DE DOMINGO ======== */
#hino-domingo {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  margin: 20px auto;
  color: #fff;
  width: 100%;
  max-width: 300px;
  backdrop-filter: blur(6px);
}

#hino-domingo h2 {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 15px;
}

.hino-domingo-controles {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* Seleção */
#hino-domingo select {
  flex: 1;
  min-width: 160px;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.95rem;
  transition: 0.3s;
}

#hino-domingo select:focus {
  outline: none;
  border-color: #00bcd4;
}

/* Botão */
#hino-domingo button {
  padding: 8px 16px;
  background: #00bcd4;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

#hino-domingo button:hover {
  background: #0097a7;
  transform: scale(1.05);
}

/* Resultado */
#hinoEscolhido {
  margin-top: 15px;
  font-size: 1rem;
  color: #e0e0e0;
}

/* ======== LISTA DE HINOS ======== */
.lista_hinos {
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px;
  border-radius: 5px;
  background: rgba(255,255,255,0.05);
}

.lista_hinos a {
  display: block;
  text-decoration: none;
  color: #ffffff;
  padding: 5px 0;
  transition: 0.3s;
}

.lista_hinos a:hover {
  background: yellow;
  color: #000;
}

/* ======== BOTÃO DE CONGRESSO ======== */


input#barra-pesquisa { width: 18rem; padding: 10px; border: 1px solid #ccc; border-radius: 5px; font-size: 16px; /* <- Isso impede o zoom automático no mobile */ }
/* ======== VIDEO INTRO ======== */
#intro-video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ======== RESPONSIVIDADE ======== */
@media (min-width: 769px) {
  .Central_pasta {
    width: 380px;
    background-position: center 58%;
    background-size: 70%;
  }
}

@media (max-width: 768px) {
  body {
    overflow-y: auto;
  }

  .Central_pasta {
    width: 90%;
    margin: 20px;
  }
}
