/* GERAIS */

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #000;
  color: #fff;
  margin-top: 120px; /* Compensação para menu fixo */
}

/* OCULTAR SEÇÕES */
.oculto {
  display: none;
}

/* MENU FIXO */
.navbar {
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: fixed;
  padding: 1rem 1rem;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #111;
}

/* LOGO E NOME */
.logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

#img-logo {
  width: 150px;
}

/* MENU PADRÃO */
.nav-links,
#navLinksI {
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.nav-links {
  flex-wrap: wrap;
}

.nav-links li:last-child {
  margin-right: 2rem;
  padding-left: 10px; /* Ou 1rem, ou o valor que desejar */
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.nav-links li,
#navLinksI li {
  display: block;
  padding-left: 10px; /* Ou 1rem, ou o valor que desejar */
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.nav-links a,
#navLinksI li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* BOTÃO HAMBURGUER */
.hamburger {
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  display: none;
  z-index: 1001;
}

/* BOTÃO LIVE AO VIVO */
.button-live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, #ff4e50, #f9d423);
  color: white;
  padding: 0.75rem 0.75rem;
  border: none;
  border-radius: 999px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 15px rgba(255, 78, 80, 0.3);
}

.button-live:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 78, 80, 0.4);
}

.live-dot {
  width: 12px;
  height: 12px;
  background-color: red;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

/* BOTÕES GERAIS */
.button-main {
  background: white;
  color: black;
  padding: 0.75rem 0.75rem;
  border: none;
  cursor: pointer;
  border-radius: 12px;
}

.button-main:hover {
  background: #cccccc;
  transform: scale(1.05);
}

.espaco-botao {
  margin-top: 3rem;
}

/* SEÇÕES */
.section {
  padding: 4rem 2rem;
  text-align: center;
  min-height: 100vh;
}
#center{
  padding: 0.1rem 2rem 2rem 2rem; /* top, right, bottom, left */
  text-align: center;
  min-height: 100vh;
}

.fade-in {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* SOBRE */
.sobre-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sobre-content img {
  width: 200px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

/* CARROSSEL */
.carrossel {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem;
  box-sizing: border-box;
}

.carrossel-item {
  display: none;
  text-align: center;
}

.carrossel-item.active {
  display: block;
}

.carrossel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  color: black;
  font-size: 2rem;
  padding: 0.2rem 1rem;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.carrossel-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.carrossel-anterior {
  left: 0;
}

.carrossel-proximo {
  right: 0;
}

/* REDES SOCIAIS */
.rede-social,
.rede-social-menu {
  display: flex;
  align-items: center;
}

.rede-social {
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.rede-social-menu {
  gap: 10px;
}

#img-rede-social,
#img-rede-social-menu {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#img-rede-social {
  width: 50px;
  margin: 10px;
  transform: translateY(-50%);
}

#img-rede-social:hover {
  transform: translateY(-50%) scale(1.2);
}

#img-rede-social-menu {
  width: 20px;
}

#img-rede-social-menu:hover {
  opacity: 0.7;
}

#img-qrcode {
  width: 150px;
}

/* FORMULÁRIO */
.formulario-contato input,
.formulario-contato select,
.formulario-contato textarea {
  width: 100%;
  max-width: 400px;
  margin-bottom: 1rem;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
}

.formulario-contato textarea {
  resize: vertical;
}

/* LINK DA RÁDIO */
.link-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #007bff;
  color: white;
  padding: 5px 11px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s, transform 0.3s;
}

.link-radio:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.link-radio i {
  font-size: 1.2em;
}

/* ÍCONE YOUTUBE */
.icone-yt {
  max-width: 40px;
  margin-right: 8px;
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
    font-size: 2rem;
    color: white;
  }

  .mapa-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
  }

  .mapa-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  #navLinksI {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    background: none;
    flex-direction: column;
    z-index: 1000;
    align-items: flex-start;
    margin-bottom: 5px;
  }

  /* FORMULÁRIO */
  .formulario-contato input,
  .formulario-contato select,
  .formulario-contato textarea {
    width: 100%;
    max-width: 300px;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
  }

  .formulario-contato textarea {
    resize: vertical;
  }

  
}

@media (max-width: 500px) {
  .carrossel-btn {
    background-color: #fff;
    border: none;
    font-size: 1.8rem;
    padding: 0.2rem 1rem;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s, transform 0.3s;
  }

  .carrossel-btn:hover {
    background-color: #eee;
    transform: scale(1.1);
  }
}

.ministerio-container {
        display: flex;
        flex-direction: column;
        gap: 60px;
        max-width: 1200px;
        margin: 40px auto;
        padding: 0 20px;
    }

    .ministerio {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .ministerio img {
        width: 100%;
        max-width: 480px;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .ministerio-texto {
        flex: 1;
        min-width: 280px;
    }

    .ministerio:nth-child(even) {
        flex-direction: row-reverse;
    }

    .ministerio h3 {
        margin-bottom: 10px;
        color: white;
    }

    .ministerio p {
        font-size: 16px;
        color: white;
        margin-bottom: 15px;
    }

    .btn-participar {
        display: inline-block;
        padding: 10px 20px;
        background-color: #1e88e5;
        color: white;
        text-decoration: none;
        border-radius: 8px;
        
        transition: background-color 0.3s;
    }

    .btn-participar:hover {
        background-color: #1565c0;
    }

    h2 {
        text-align: center;
        margin-top: 40px;
    }

      form#filtro-form {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin: 30px 0;
        flex-wrap: wrap;
    }
    form#filtro-form label {
        font-weight: bold;
        white-space: nowrap;
    }
    form#filtro-form select, form#filtro-form button {
        padding: 5px 8px;
        font-size: 14px;
    }

    td.centro-custo {
        text-align: left;
    }

    th.centro-custo {
        text-align: center;
    }

    #qrcode {
  margin: 20px auto;  /* Centraliza horizontalmente */
  width: 256px;       /* Mesma largura do QR Code */
  display: block;
}