.bible-navigation-bar {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 40px 0;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.bible-navigation-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="nav-dots" patternUnits="userSpaceOnUse" width="40" height="40"><circle cx="20" cy="20" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23nav-dots)"/></svg>');
    opacity: 0.6;
}

.bible-navigation-bar .container {
    position: relative;
    z-index: 2;
}

.nav-title {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    border-bottom: 2px solid rgba(255,255,255,0.2);
    padding-bottom: 10px;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links li {
    margin-bottom: 8px;
}

.nav-links a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: block;
    padding: 4px 0;
    border-radius: 4px;
    position: relative;
}

.nav-links a:hover {
    color: white;
    text-decoration: none;
    transform: translateX(5px);
    background: rgba(255,255,255,0.1);
    padding-left: 10px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #ffeb3b;
    transition: width 0.3s ease;
}

/* Estilo sutil para o link de admin */
.admin-login-link {
    opacity: 0.6 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    margin-left: 15px !important;
    display: inline-flex !important;
    align-items: center !important;
    text-decoration: none !important;
    color: white !important;
}

.admin-login-link:hover {
    opacity: 1 !important;
    color: white !important;
    transform: translateX(3px) !important;
    text-decoration: none !important;
}

.admin-login-link i {
    font-size: 30px !important;
    color: white !important;
}

.nav-links a:hover::before {
    width: 6px;
}

/* External Resources Section */
.external-resources {
    background: #f8f9fa;
    padding: 30px 0;
    border-top: 1px solid #e9ecef;
}

.external-resources h4 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

.external-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.external-links a {
    background: white;
    color: #2c3e50;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    font-size: 14px;
}

.external-links a:hover {
    background: #3498db;
    color: white;
    border-color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .bible-navigation-bar {
        padding: 30px 0;
    }
    
    .nav-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .nav-links a {
        font-size: 13px;
    }
    
    .bible-navigation-bar .col-lg-3 {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .bible-navigation-bar {
        padding: 25px 0;
    }
    
    .nav-title {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .nav-links a {
        font-size: 12px;
        padding: 3px 0;
    }
}



















/* Garantir que o versículo selecionado tenha background laranja elegante */
.verse.selected-verse {
    background: linear-gradient(135deg, #ff9800 0%, #ff9800 100%) !important;
    border-left: 4px solid #ff9800 !important;
    padding: 15px 20px !important;
    margin: 0 -20px 20px -20px !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(255, 152, 0, 0.15) !important;
    position: relative;
    transition: all 0.3s ease !important;
}

.verse.selected-verse .verse-text {
    color: #ffffff !important;
    font-weight: 500 !important;
    line-height: 1.8 !important;
}

/* Melhorar aparência dos versículos para parecer texto orgânico */
.bible-text-content {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    font-size: 18px;
    text-align: justify;
    padding: 25px 30px;
    width: 100%;
    max-width: none;
    margin: 0;
}

.verse {
    margin-bottom: 6px !important;
    padding: 6px 10px !important;
    border-left: 3px solid #e3f2fd !important;
    background: transparent !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
    width: 100%;
}

.verse:hover {
    background: #f8f9fa !important;
    border-left-color: #3498db !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Hover especial para versículo selecionado */
.verse.selected-verse:hover {
    background: linear-gradient(135deg, #ff9800 0%, #ff9800 100%) !important;
    border-left-color: #ff9800 !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(255, 152, 0, 0.25) !important;
}

.verse-number {
    font-weight: bold;
    color: #666;
    margin-right: 8px;
    font-size: 0.9em;
}

.verse-text {
    color: #333;
    line-height: 1.7;
    margin: 0;
}

/* Espaçamento mais natural entre versículos */
.verse + .verse {
    margin-top: 2px !important;
}

/* Otimização do texto dos versículos */
.verse-text {
    color: #333;
    line-height: 1.7;
    margin: 0;
    word-spacing: 0.1em;
    letter-spacing: 0.02em;
}

/* Melhor uso do espaço em diferentes tamanhos de tela */
@media (max-width: 768px) {
    .verse {
        padding: 5px 8px !important;
        margin-bottom: 4px !important;
    }
    
    .verse-text {
        line-height: 1.6;
    }
}

@media (min-width: 1920px) {
    .verse {
        padding: 8px 15px !important;
        margin-bottom: 8px !important;
    }
    
    .verse-text {
        line-height: 1.8;
        word-spacing: 0.15em;
    }
}

/* Melhorar área de seleção */
.bible-selection {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.bible-selection .card-body {
    padding: 20px;
}

.bible-selection .form-label {
    font-weight: 600;
    color: #495057;
    font-size: 14px;
}

.bible-selection .form-select {
    font-size: 14px;
    padding: 8px 12px;
}

/* Otimizações para container-fluid - experiência de leitura como livro */
.bible-reader .container-fluid {
    padding: 0 20px;
}

.bible-reader .row {
    margin: 0;
}

.bible-reader .col-lg-3 {
    padding: 0 15px 0 0;
}

.bible-reader .col-lg-9 {
    padding: 0 0 0 15px;
}

/* Área de leitura com largura otimizada */
.bible-reader .card {
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 12px;
}

.bible-reader .card-body {
    padding: 0;
}

/* Responsividade completa para melhor uso do espaço */
@media (max-width: 768px) {
    .bible-text-content {
        font-size: 16px;
        padding: 20px 15px;
        line-height: 1.7;
    }
    
    .bible-reader .col-lg-3 {
        padding: 0 10px 0 0;
    }
    
    .bible-reader .col-lg-9 {
        padding: 0 0 0 10px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .bible-text-content {
        font-size: 17px;
        padding: 25px 25px;
    }
}

@media (min-width: 1025px) and (max-width: 1399px) {
    .bible-text-content {
        font-size: 18px;
        padding: 30px 35px;
    }
}

@media (min-width: 1400px) and (max-width: 1919px) {
    .bible-text-content {
        font-size: 20px;
        padding: 35px 45px;
    }
}

@media (min-width: 1920px) {
    .bible-text-content {
        font-size: 22px;
        padding: 40px 60px;
    }
}

/* Animação de Loader - Efeito de Virada de Página */
.bible-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bible-loader.active {
    display: flex;
    opacity: 1;
}

.bible-loader-content {
    text-align: center;
    color: white;
    animation: fadeInUp 0.6s ease-out;
}

.bible-loader-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    position: relative;
    animation: pageFlip 2s ease-in-out infinite;
}

.bible-loader-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transform-origin: left center;
    animation: pageTurn 2s ease-in-out infinite;
}

.bible-loader-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 8px;
    opacity: 0;
    animation: pageReveal 2s ease-in-out infinite;
}

.bible-loader-text {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bible-loader-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.bible-loader-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

/* Animações */
@keyframes pageFlip {
    0%, 100% {
        transform: perspective(400px) rotateY(0deg);
    }
    50% {
        transform: perspective(400px) rotateY(180deg);
    }
}

@keyframes pageTurn {
    0%, 100% {
        transform: perspective(400px) rotateY(0deg);
    }
    50% {
        transform: perspective(400px) rotateY(-180deg);
    }
}

@keyframes pageReveal {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Efeito de pulso para o texto */
.bible-loader-text {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .bible-loader-icon {
        width: 60px;
        height: 60px;
    }
    
    .bible-loader-text {
        font-size: 20px;
    }
    
    .bible-loader-subtitle {
        font-size: 14px;
    }
}

.bible-navigation {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin: 30px 0;
}

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

@media (max-width: 768px) {
    .nav-grid {
        grid-template-columns: 1fr;
    }
}

.nav-card {
    /* background: linear-gradient(135deg, #3498db, #2980b9); */
    /* color: white; */
    /* padding: 25px; */
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.nav-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    text-decoration: none;
    color: white;
}

.nav-card-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.nav-card-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.nav-card-description {
    font-size: 14px;
    opacity: 0.9;
}

.quick-access {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
}

.quick-access h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.quick-link {
    background: #3498db;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.quick-link:hover {
    background: #2980b9;
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

/* Quem Somos Section Styles */
.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-content h3 {
    color: #2c3e50;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-content p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.about-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

.feature-item i {
    color: #3498db;
    font-size: 18px;
    font-weight: bold;
}

.feature-item span {
    color: #2c3e50;
    font-weight: 500;
    font-size: 14px;
}

@media (max-width: 768px) {
    .about-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .feature-item {
        justify-content: center;
    }
}

/* Skills Section Styles - Para funcionar dentro do FAQ */
.skills-content .progress,
.skills .progress {
    height: 60px;
    display: block;
    background: none;
    border-radius: 0;
}

.skills-content .progress .skill,
.skills .progress .skill {
    padding: 10px 0;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #37517e;
}

.skills-content .progress .skill .val,
.skills .progress .skill .val {
    float: right;
    font-style: normal;
}

.skills-content .progress-bar-wrap,
.skills .progress-bar-wrap {
    background: rgba(55, 81, 126, 0.1);
    height: 10px;
}

.skills-content .progress-bar,
.skills .progress-bar {
    width: 1px;
    height: 10px;
    transition: 0.9s;
    background-color: #37517e;
    border-radius: 5px;
}

/* Garantir que as barras sejam visíveis dentro do FAQ */
.faq-content .skills-content {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.faq-content .progress {
    margin-bottom: 15px;
}

/* Call to Action Section Styles */
.call-to-action {
    background: linear-gradient(rgba(55, 81, 126, 0.8), rgba(55, 81, 126, 0.8)), url('../img/bg/davi.png') fixed center center;
    background-size: cover;
    padding: 60px 0;
}

.call-to-action h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.call-to-action p {
    color: #fff;
    margin-bottom: 0;
}

.cta-btn {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
}

.cta-btn:hover {
    background: #47b2e4;
    border: 2px solid #47b2e4;
    color: #fff;
    text-decoration: none;
}

/* Team Section Styles */
.team .team-member {
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 10px;
    height: 100%;
}

.team .team-member .pic {
    overflow: hidden;
    width: 90px;
    border-radius: 50%;
}

.team .team-member .pic img {
    transition: ease-in-out 0.3s;
}

.team .team-member:hover .pic img {
    transform: scale(1.1);
}

.team .team-member .member-info {
    padding-left: 30px;
}

.team .team-member h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
    color: #37517e;
}

.team .team-member span {
    display: block;
    font-size: 15px;
    padding-bottom: 10px;
    position: relative;
    margin-bottom: 10px;
}

.team .team-member span::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: #cbd6e9;
    bottom: 0;
    left: 0;
}

.team .team-member p {
    margin: 10px 0 0 0;
    font-size: 14px;
}

.team .team-member .social {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.team .team-member .social a {
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 32px;
    height: 32px;
    background: #eff2f8;
}

.team .team-member .social a i {
    color: #37517e;
    font-size: 16px;
    margin: 0 2px;
}

.team .team-member .social a:hover {
    background: #47b2e4;
}

.team .team-member .social a:hover i {
    color: #fff;
}

/* FAQ Section Styles */
.faq-2 .faq-container {
    padding: 0;
    margin: 0;
}

.faq-2 .faq-item {
    background: #fff;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 4px;
    position: relative;
}

.faq-2 .faq-item h3 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 0;
    padding-left: 25px;
}

.faq-2 .faq-item .faq-icon {
    font-size: 20px;
    position: absolute;
    left: 20px;
    top: 20px;
    color: #47b2e4;
}

.faq-2 .faq-item .faq-content {
    margin-top: 10px;
    display: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-2 .faq-item .faq-content p {
    line-height: 26px;
    font-size: 15px;
}

.faq-2 .faq-item .faq-toggle {
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    color: #47b2e4;
    transition: 0.3s;
    position: absolute;
    right: 20px;
    top: 20px;
}

.faq-2 .faq-item:hover .faq-toggle {
    color: #37517e;
}

.faq-2 .faq-item.faq-active .faq-content {
    display: block;
    animation: fadeInDown 0.3s ease;
}

.faq-2 .faq-item.faq-active .faq-toggle {
    transform: rotate(90deg);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}