/* --- ESTILOS GLOBAIS E RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #121212;
    color: #f0f0f0;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    color: #ffffff;
}

/* --- BOTÕES --- */
.btn-primary {
    background-color: #FDB813;
    color: #121212;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: inline-block;
    margin-left: 15px;
    text-align: center;
}

.btn-primary:hover {
    transform: scale(1.05);
    background-color: #ffc940;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid #ffffff;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #121212;
}

.btn-tertiary {
    color: #FDB813;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 15px;
}

.btn-pill {
    border-radius: 50px;
    padding: 15px 40px;
}


/* --- CABEÇALHO (HEADER) --- */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 20px 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 90px;
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-list a {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    padding-bottom: 5px;
    text-align: center;
    display: flex;
    /* height: 50px; */
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FDB813;
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}


/* --- SEÇÃO HERO (PÁGINA INICIAL) --- */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    margin-top: 11%;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 400;
}


/* --- SEÇÃO DE CHAMADA (CTA) - (Abaixo do Hero) --- */
.cta-section {
    background-color: #1a1a1a;
    padding: 80px 0;
}

.cta-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-text p {
    max-width: 600px;
    line-height: 1.6;
}


/* --- SEÇÃO DE EVENTOS --- */
.events-section {
    padding: 100px 0;
}

.events-grid {
    display: grid;
    /* ESTA É A MUDANÇA: Cria exatamente 2 colunas de tamanho igual */
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.event-card {
    background-color: #1e1e1e;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
}

.event-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.event-card h3 {
    font-size: 1.5rem;
    padding: 20px 20px 10px 20px;
}

.event-card p {
    padding: 0 20px 20px 20px;
    line-height: 1.5;
    color: #ccc;
}

.event-card a {
    margin: 0 20px 20px 20px;
}

/* --- SEÇÃO ACTION CARDS (3 Colunas) --- */
.actions-section {
    width: 100%;
    background-color: #000;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 60vh;
}

.action-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    color: #ffffff;
    overflow: hidden;
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease-out;
}

.action-card:hover .card-background {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    transition: background-color 0.3s ease;
}

.action-card:hover .card-overlay {
    background-color: rgba(0, 0, 0, 0.4);
}

.card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-icon {
    margin-bottom: 20px;
}

.card-icon img {
    width: 60px;
    height: 60px;
}

.card-content h2 {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.card-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px;
    max-width: 250px;
}

.card-button {
    display: inline-block;
    border: 2px solid #ffffff;
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.action-card:hover .card-button {
    background-color: #ffffff;
    color: #121212;
}


/* --- SEÇÃO VOLUNTÁRIOS (Fundo Parallax) --- */
.volunteer-section {
    position: relative;
    padding: 120px 0;
    text-align: center;
    color: #ffffff;
    background-image: url('/img/galera02.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.volunteer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.volunteer-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.volunteer-content h2 {
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    max-width: 600px;
    line-height: 1.2;
    margin-bottom: 30px;
}


/* --- SEÇÃO HORÁRIOS DOS CULTOS --- */
.schedule-section {
    position: relative;
    padding: 100px 0;
    color: #ffffff;
    background-image: url('/img/galera02.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.schedule-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.schedule-section .container {
    position: relative;
    z-index: 2;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.schedule-item {
    text-align: center;
}

.service-name {
    color: #FDB813;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.service-details {
    font-size: 0.9rem;
    text-transform: uppercase;
    line-height: 1.4;
}


/* --- PÁGINA DE CONTRIBUIÇÃO --- */
.contribution-section {
    padding-top: 150px;
    padding-bottom: 100px;
    min-height: 100vh;
}

.contribution-header {
    text-align: center;
    margin-bottom: 60px;
}

.contribution-header h1 {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.contribution-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: #ccc;
}

.contribution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.contribution-method {
    background-color: #1e1e1e;
    padding: 30px 40px;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
}

.contribution-method h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FDB813;
}

.contribution-method p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 25px;
}

.pix-qr-code img {
    max-width: 200px;
    margin: 20px auto;
    display: block;
    background-color: white;
    padding: 10px;
    border-radius: 8px;
}

.pix-key-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #121212;
    padding: 10px 15px;
    border-radius: 5px;
    font-family: monospace;
}

#copy-pix-button {
    background: none;
    border: none;
    color: #f0f0f0;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

#copy-pix-button:hover {
    color: #FDB813;
}

.bank-details-list {
    list-style: none;
    text-align: left;
}

.bank-details-list li {
    padding: 12px 0;
    border-bottom: 1px solid #333;
    font-size: 1rem;
}

.bank-details-list li:first-child {
    border-top: 1px solid #333;
}

.bank-details-list li strong {
    font-weight: 700;
    margin-right: 10px;
    color: #f0f0f0;
}


/* --- PÁGINA DE GC'S (Efeito Frosted Glass) --- */
.gcs-page-section {
    padding-top: 150px;
    padding-bottom: 100px;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: #ccc;
}

.gc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;

    /* CORREÇÃO PARA LARGURA: Limita a largura máxima do grid e o centraliza */
    max-width: 900px;
    margin: 0 auto;
    /* Centraliza o grid na página */
}

/* Card principal - Estrutura principal */
.gc-card {
    border-radius: 12px;
    overflow: hidden;
    /* Essencial para as bordas arredondadas */
    border: 1px solid #2a2a2a;

    /* Propriedades da imagem de fundo */
    background-size: cover;
    background-position: center;

    /* Organiza o cabeçalho e o conteúdo verticalmente */
    display: flex;
    flex-direction: column;

    transition: transform 0.3s ease;
}

.gc-card:hover {
    transform: translateY(-5px);
}

/* No style.css, substitua as regras antigas por estas */

/* "Janela" para a foto nítida - AGORA MAIOR */
.gc-card-header {
    height: 250px;
    /* Aumentamos de 200px para 250px para mostrar mais da foto */
}

/* Conteúdo do card com o novo efeito gradual */
.gc-card-content {
    padding: 25px;
    color: #ffffff;

    /* REMOVEMOS A LINHA BRANCA de separação que tinha aqui */
    /* border-top: 1px solid rgba(255, 255, 255, 0.2); */

    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* O resto do estilo do conteúdo... */
.gc-tag {
    align-self: flex-start;
    background-color: #FDB813;
    color: #121212;
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.gc-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.gc-details-list {
    list-style: none;
    margin-bottom: 25px;
}

.gc-details-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #f0f0f0;
    font-size: 0.95rem;
}

.gc-details-list i {
    color: #FDB813;
    font-size: 1.2rem;
    margin-right: 12px;
}

.gc-card-content .btn-primary {
    width: 100%;
    text-align: center;
    margin-top: auto;
    /* Empurra o botão para o final do card */
}

/* --- RESPONSIVIDADE (continua igual e funcional) --- */
@media (max-width: 950px) {

    /* Ajustei o ponto de quebra */
    .gc-grid {
        grid-template-columns: 1fr;
    }
}

/* Dentro da regra @media (max-width: 768px) que já existe */
@media (max-width: 768px) {

    /* ... outras regras responsivas ... */

    .events-grid {
        grid-template-columns: 1fr;
        /* Faz os cards empilharem em uma única coluna */
    }
}


/* --- RODAPÉ (FOOTER) --- */
.main-footer {
    background-color: #0a0a0a;
    padding-top: 60px;
    border-top: 1px solid #2a2a2a;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    justify-items: center;
}

.footer-logo {
    /* 1. Aumente o valor da altura para o tamanho desejado */
    height: 95px;
    /* margin-bottom: 20px; */

    /* 2. Adicione esta linha para empurrar a logo para a direita */
    /* margin-left: 75px; */
}

.footer-about p {
    line-height: 1.7;
    color: #aaa;
    max-width: 300px;
}

.footer-content h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-social a {
    font-size: 2rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #FDB813;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #aaa;
}

.footer-contact i {
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

/* --- REGRAS DE RESPONSIVIDADE --- */
@media (max-width: 900px) {
    .actions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }



    .cta-section .container {
        flex-direction: column;
        text-align: center;
    }

    .volunteer-content h2 {
        font-size: 2rem;
    }

    .volunteer-section,
    .schedule-section {
        background-attachment: scroll;
        /* Remove o parallax em celulares para melhor performance */
    }

    .gc-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- PÁGINA SEJA MEMBRO (FORMULÁRIO) --- */
.form-section {
    padding-top: 150px;
    padding-bottom: 100px;
}

.welcome-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: #1e1e1e;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Duas colunas */
    gap: 20px 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

/* Faz um campo ocupar a largura total */
.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label,
.form-group p {
    margin-bottom: 8px;
    font-weight: 500;
    color: #ccc;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: #121212;
    border: 1px solid #333;
    border-radius: 5px;
    color: #f0f0f0;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FDB813;
}

.radio-group label {
    margin-right: 20px;
    color: #f0f0f0;
    font-weight: normal;
}

.radio-group input {
    margin-right: 5px;
}

.welcome-form .btn-primary {
    grid-column: 1 / -1;
    /* Botão ocupa a largura total */
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 1.1rem;
    margin-top: 20px;
}

/* Responsividade para o formulário */
@media (max-width: 768px) {
    .welcome-form {
        grid-template-columns: 1fr;
        /* Uma coluna em telas pequenas */
    }
}

/* --- PÁGINA DA GALERIA --- */
.gallery-section {
    padding-top: 150px;
    padding-bottom: 100px;
}

.gallery-grid {
    display: grid;
    /* Grid responsivo que se ajusta ao tamanho da tela */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    background-color: #1e1e1e;
    /* Cor de fundo enquanto a imagem carrega */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Garante que a imagem preencha o espaço sem distorcer */
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.loading-message {
    grid-column: 1 / -1;
    /* Ocupa a largura total da grade */
    text-align: center;
    font-size: 1.2rem;
}

/* --- ESTILOS DO LIGHTBOX DA GALERIA --- */

/* O container do lightbox que cobre a tela inteira */
.lightbox {
    display: none;
    /* Escondido por padrão */
    position: fixed;
    /* Fica fixo na tela, mesmo com rolagem */
    z-index: 1000;
    /* Garante que fique na frente de tudo */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    /* Fundo preto semi-transparente */
    opacity: 0;
    /* Começa invisível para a animação */
    transition: opacity 0.4s ease;
}

/* Classe para mostrar o lightbox com animação */
.lightbox.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

/* Wrapper que segura a imagem e as setas */
.lightbox-content-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 1200px;
}

/* A imagem ampliada */
.lightbox-content {
    max-width: 100%;
    max-height: 90vh;
    /* Altura máxima para não sair da tela */
    animation: zoomIn 0.4s ease;
}

/* Animação de zoom para a imagem */
@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Botão de fechar (X) */
.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover {
    color: #bbb;
}

/* Botões de navegação (setas) */
.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    padding: 16px;
    transition: 0.3s;
    user-select: none;
    /* Impede que o texto seja selecionado */
}

.lightbox-prev {
    margin-right: 15px;
}

.lightbox-next {
    margin-left: 15px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #bbb;
}

/* Responsividade para as setas em telas pequenas */
@media (max-width: 768px) {

    .lightbox-prev,
    .lightbox-next {
        font-size: 2rem;
        padding: 8px;
    }

    .lightbox-prev {
        margin-right: 5px;
    }

    .lightbox-next {
        margin-left: 5px;
    }
}



/* ATUALIZAÇÃO 1707 */


.palavras {margin-top: 150px;/* display: none; *//* width: 374px; */}

#publicacoes_lista_site {
    width: 90%;
    margin: auto;
    max-width: 900px;
    /* display: none; */
}

.titulo_publicacao_site {
    font-weight: bold;
    border-bottom-style: inset;
    margin-bottom: 10px;
    margin-top: 2px;
}

.conteudo_publicacao_site {
    margin-bottom: 18px;
    /* clear: both; */
    /* white-space: pre-line; */
    word-break: break-word;
}

.momento_publicacao_site {
    position: absolute;
    margin-top: -30px;
    margin-left: -30px;
    background-color: #fdb813;
    font-size: 12px;
    padding: 5=3px;
    padding: 3px;
    border-radius: 3px;
    font-weight: bold;
}

.publicacao_site {
    background-color: white;
    margin-top: 68px;
    color: black;
    padding: 20px;
    border-radius: 5px;
    /* height: 140px; */
}

/* ATUALIZAÇÃO 1707 */



/* ATUALIZAÇÃO 2107 */

#menu_ham {
    BACKGROUND-COLOR: #FDB813;
    padding: 9px;
    border-radius: 5px;
    width: 103px;
    text-align: center;
    color: black;
    font-size: 22px;
    font-weight: 900;
    cursor: pointer;
    display: none;
    transition: margin-right 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    display: none;
}


#menu_ham:hover {
    opacity: 0.8;

}

#menu_lateral {
    position: absolute;
    background-color: #000000db;
    right: 0px;
    height: 460px;
    width: 250px;
    margin-top: 10px;
    /* background-color: white; */
    transition: margin-right 0.5s;
    /* margin-right: -250px; */
    /* top: -9px; */
    display: none;
}


@media (min-width: 768px) {
   

    #menu_ham {
        display: none;
    }
}



@media (max-width: 768px) {
    .btn-primary {
        display: none;
    }

    #menu_ham {
        display: flex;
    }

        #menu_lateral {
        display: none;
    }

    #menu_principal {
        display: none;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        margin-top: 30px;
    }



}


#topo_menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#fechar_menu {
    font-size: 30px;
    /* padding: 0px; */
    margin-left: 10px;
    border-radius: 5px;
    cursor: pointer;
}

#ofertas {
    background-color: #FDB813;
    color: black;
    padding: 10px;
    /* margin-right: 10px; */
    /* border-radius: 0px 0px 0px 7px; */
    cursor: pointer;
    border-radius: 7px;
    margin: 5px;
}

#ofertas:hover {
    opacity: 0.8;
}


.assinatura_publicacao_site {
    color: #7d7d7d;
    font-size: 13px;
    /* margin-right: 10px; */
    /* position: sticky; */
    /* right: 34px; */
    /* margin-bottom: 14px; */
    /* height: 50px; */
    display: flex;
    justify-content: flex-end;
}



#p_pastor {
    /* display: none; */
}


/* ATUALIZAÇÃO 2107 */







.container598 {
    margin-top: 160px;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    color: #ffffff;
}

.section-title598 {
    /* display: grid; */
    /* grid-template-columns: repeat(4, 1fr); */
    /* gap: 20px; */
    /* margin-top: 40px; */
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    color: #ffffff;
}

.schedule-grid598 {
    display: flex;
    /* grid-template-columns: repeat(4, 1fr); */
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.schedule-item598 {
    text-align: center;
    background-color: #2d2d2d;
    padding: 10px;
    border-radius: 5px;
}

.service-name598 {
    color: #FDB813;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.service-details598 {
    font-size: 0.9rem;
    text-transform: uppercase;
    line-height: 1.4;
}



#culto_ao_vivo {
    width: 100%;
    height: 380px;
}

#player554 {
    text-align: center;
    margin-top: 20px;
    width: 80%;
    margin: auto;
    height: 500px;
}

#live_video554 {
    width: 80%;
    height: 100%;
}

#live_status554 {}


.video-container554 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.video554 {
    width: 300px;
}

.video554 p {
    font-size: 16px;
}


#iframe_videos554 {
    width: 100%;
    height: 180px;
}



#live_message554_baixo {
    font-size: 14px;
    font-weight: normal;
}

#live_message554_cima {
    font-size: 16px;
}



#live_title554 {
    font-size: 18px;
}






#nome_menu{
    font-size: 17px;
    font-weight: normal;
    /* color: #FDB813; */
    margin-left: 10px;
}

#icone_menu{
    /* width: 30px; */
    /* height: 30px; */
    /* margin-right: 10px; */
}