 .content { margin: 20px auto; max-width: 1200px; }
        .section-header { padding: 20px; background: #f8f9fa; margin-bottom: 20px; text-align: center; }
        .tab-content { padding: 20px; background: #ffffff; }
        .card { margin-bottom: 15px; }
        .img-lider {
            width: 150px; /* Tamanho menor para melhor ajuste */
            height: 150px;
            object-fit: cover;
            border-radius: 50%; /* Mantém formato circular */
            border: 4px solid #f0f0f0; /* Borda leve */
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Efeito de sombra */
        }
        /* Estilo dos cards */
        .celula-card {
            padding: 10px;
        }
        
        .card {
            border-radius: 10px;
            transition: 0.3s;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .card-title {
            font-weight: bold;
        }
        
        .btn {
            min-width: 150px; /* Ajuste conforme necessário */
            text-align: center;
        }

        .btn-info {
            background-color: #007bff;
            border: none;
        }
        
        .btn-info:hover {
            background-color: #0056b3;
        }
        
        .btn-success {
            background-color: #28a745;
            border: none;
        }
        
        .btn-success:hover {
            background-color: #218838;
        }
        
        /* Estilização das Abas */
        .custom-tabs {
            background: #f8f9fa;
            padding: 10px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        
        /* Abas individuais */
        .custom-tabs .nav-link {
            font-size: 18px;
            font-weight: 600;
            color: #555;
            padding: 12px 20px;
            border-radius: 8px;
            transition: all 0.3s ease-in-out;
            background: #fff;
            border: 1px solid #ddd;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        /* Ícones das abas */
        .custom-tabs .nav-link i {
            font-size: 20px;
        }
        
        /* Hover nas abas */
        .custom-tabs .nav-link:hover {
            background: #f0862c;
            color: #fff;
            border-color: #f0862c;
        }
        
        /* Aba ativa */
        .custom-tabs .nav-link.active {
            background: #892f23;
            color: #fff;
            border-color: #892f23;
        }

        /* Estilização da Seção de Introdução */
        .intro-section {
            text-align: center;
            background: linear-gradient(to right, #fff, #f8f9fa);
            padding: 35px;
            border-radius: 12px;
            box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }
        
        /* Estilização do Título */
        .intro-title {
            font-size: 30px;
            font-weight: bold;
            color: #2c3e50;
            font-family: 'Poppins', sans-serif;
            text-transform: uppercase;
            margin-bottom: 20px;
        }
        
        /* Estilização do Versículo */
        .verse-container {
            background: #e9ecef;
            padding: 15px;
            border-left: 5px solid #f0862c;
            border-radius: 8px;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .intro-verse {
            font-size: 20px;
            font-style: italic;
            color: #892f23;
            font-family: 'Georgia', serif;
            margin: 0;
        }
        
        .verse-ref {
            font-weight: bold;
            color: #444;
            font-size: 16px;
        }
        
        /* Estilização do Texto */
        .intro-text {
            font-size: 18px;
            color: #555;
            font-family: 'Roboto', sans-serif;
            margin-top: 10px;
            line-height: 1.6;
        }

        
        .section-header {
            text-align: center;
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
        }
        
        .section-title {
            font-size: 28px;
            font-weight: bold;
            color: #2c3e50;
            font-family: 'Poppins', sans-serif;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
        
        .section-subtitle {
            font-size: 18px;
            color: #555;
            font-family: 'Roboto', sans-serif;
            margin-bottom: 15px;
        }
        
        .bible-verse {
            font-size: 20px;
            font-style: italic;
            color: #892f23;
            font-family: 'Georgia', serif;
            border-left: 5px solid #f0862c;
            padding-left: 15px;
            margin-top: 15px;
            display: inline-block;
        }
        
        /* Estilização da Seção de Estudos */
        .estudos-header {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            text-align: center;
        }
        
        /* Título */
        .estudos-header h2 {
            font-size: 28px;
            font-weight: bold;
            color: #892f23;
        }
        
        /* Texto da missão */
        .missao-texto {
            font-size: 18px;
            color: #333;
            font-weight: 500;
            margin-bottom: 15px;
        }
        
        /* Frase Inspiradora */
        .estudo-quote {
            font-size: 16px;
            font-style: italic;
            color: #555;
            border-left: 4px solid #f0862c;
            padding-left: 15px;
            display: inline-block;
            margin-top: 10px;
        }

        /* Seção de Orientações */
        .orientacoes-header {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            text-align: center;
        }
        
        /* Estilização do Cabeçalho */
        .orientacoes-header {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            text-align: center;
        }
        
        .orientacoes-header h2 {
            font-size: 26px;
            font-weight: bold;
            color: #13505c;
        }
        
        .orientacoes-header p {
            font-size: 16px;
            color: #555;
        }
        
        /* Estilização do Accordion */
        .accordion-item {
            background: #ffffff;
            border-radius: 8px;
            margin-bottom: 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            border: none;
        }
        
        /* Botão do Accordion */
        .accordion-button {
            font-size: 18px;
            font-weight: bold;
            color: #892f23;
            background: #f8f9fa;
            border-radius: 8px;
        }
        
        .accordion-button:not(.collapsed) {
            background: #f0862c;
            color: white;
        }
        
        /* Corpo do Accordion */
        .accordion-body {
            font-size: 16px;
            color: #555;
        }
        
        .accordion-body ul {
            list-style-type: none;
            padding-left: 0;
        }
        
        .accordion-body ul li {
            padding: 6px 0;
            border-bottom: 1px solid #eee;
        }
        
        .accordion-body ul li:last-child {
            border-bottom: none;
        }
        
        .alert-info {
            background-color: #eaf6ff;
            border-left: 5px solid #007bff;
            font-family: "Poppins", sans-serif;
        }
        
        .accordion-button {
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: #007bff;
            color: white;
        }
        
        .tooltip-versiculo {
            position: absolute;
            background: #f8f9fa;
            color: #333;
            padding: 8px;
            border: 1px solid #ccc;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
            font-size: 14px;
            max-width: 300px;
            z-index: 1000;
            border-radius: 5px;
        }
        
        .versiculo-tooltip {
            cursor: pointer;
            color: #007bff;
            text-decoration: underline;
        }
        
        .versiculo-tooltip:hover::after {
            content: "Clique para visualizar";
            position: absolute;
            background-color: rgba(0, 0, 0, 0.75);
            color: white;
            padding: 5px;
            border-radius: 5px;
            font-size: 12px;
            white-space: nowrap;
        }
        
        /* Estilo dos botões das versões principais */
        .versao-buttons {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 15px;
        }
        
        .versao-btn {
            border: none;
            background: #e9ecef;
            color: #333;
            padding: 8px 12px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: 0.3s;
        }
        
        .versao-btn:hover {
            background: #d6d6d6;
        }
        
        .versao-btn.active {
            background: #892f23;
            color: white;
        }
        
        /* Estilo do texto do versículo */
        .versiculo-texto {
            font-size: 18px;
            font-weight: normal;
            text-align: justify;
            color: #444;
        }
        
        /* Estilo do seletor de versões */
        .form-select {
            width: 100%;
            padding: 8px;
            border-radius: 6px;
            font-size: 16px;
        }
        
        /* Estilização do Modal */
        .modal-content {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .modal-header {
            background: #f8f9fa;
            font-weight: bold;
            border-bottom: 2px solid #ddd;
        }
        
        /* Botões das Versões */
        .versao-buttons {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        
        .versao-btn {
            border: none;
            background: #e9ecef;
            color: #333;
            padding: 8px 15px;
            border-radius: 6px;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .versao-btn:hover {
            background: #d6d6d6;
        }
        
        .versao-btn.active {
            background: #892f23;
            color: white;
        }
        
        /* Texto do Versículo */
        #modalTexto {
            font-size: 18px;
            font-weight: normal;
            text-align: justify;
            color: #444;
        }
        
        #modalTexto strong {
            font-size: 20px;
        }
        
        /* Estilização do Select */
        .form-select {
            width: 100%;
            padding: 8px;
            border-radius: 6px;
            font-size: 16px;
        }
        
        /* Melhorar espaçamentos */
        .mt-3 {
            margin-top: 15px !important;
        }

        @media (max-width: 768px) {
            .modal-dialog {
                max-width: 90% !important; /* Ajusta a largura do modal */
            }
            
            .btn-group {
                flex-wrap: wrap !important; /* Faz os botões quebrarem linha se necessário */
                justify-content: center;
            }
        
            .btn-group .btn {
                font-size: 14px !important;
                padding: 6px 10px !important;
            }
            
            .form-select {
                font-size: 14px !important;
                padding: 6px !important;
            }
        
            #modalTexto {
                font-size: 16px !important; /* Ajusta tamanho do texto para leitura confortável */
            }
        }
        
       /* 🔍 Garante que o modal fique visível e na frente */
#modalEstudo {
    z-index: 1065 !important; /* Coloca acima de tudo */
    display: block !important;
    opacity: 1 !important;
    position: fixed !important;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
}

/* 🔍 Ajuste no fundo escuro do modal */
.modal-backdrop.show {
    z-index: 1060 !important;
    background-color: rgba(0, 0, 0, 0.5) !important;
}