        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 30px;
        }
        
        @media (max-width: 900px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        
        .reflexao-content {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        
        .content-section {
            margin-bottom: 40px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }
        
        .content-section h2 {
            color: #1e3c72;
            font-size: 1.8em;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #e6f0ff;
            position: relative;
        }
        
        .content-section h2::after {
            content: "";
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100px;
            height: 3px;
            background: #2a5298;
        }
        
        .content-section p {
            margin-bottom: 20px;
            font-size: 1.1em;
            line-height: 1.8;
        }
        
        .highlight-box {
            background: linear-gradient(to right, #e6f0ff, #f0f7ff);
            border-left: 5px solid #2a5298;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        
        .highlight-box p {
            margin: 0;
            font-size: 1.2em;
            font-style: italic;
            color: #1e3c72;
        }
        
        /* Texto bíblico (inicialmente oculto) */
        .bible-text-section {
            margin: 50px 0;
            background: #fff9e6;
            border: 1px solid #ffeaa7;
            border-radius: 15px;
            overflow: hidden;
            display: none; /* OCULTO inicialmente */
        }
        
        .bible-text-section.show {
            display: block;
            animation: slideDown 0.5s ease;
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .bible-header {
            background: #2a5298;
            color: white;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .bible-title {
            font-size: 1.5em;
            font-weight: 600;
        }
        
        .bible-version {
            font-size: 0.9em;
            opacity: 0.9;
        }
        
        .bible-verses {
            padding: 30px;
            font-size: 1.15em;
            line-height: 1.9;
        }
        
        .verse {
            margin-bottom: 25px;
            padding: 15px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        
        .verse:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .verse-number {
            display: inline-block;
            background: #2a5298;
            color: white;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            text-align: center;
            line-height: 32px;
            margin-right: 15px;
            font-weight: bold;
            font-size: 0.9em;
        }
        
        /* Botão para mostrar texto bíblico */
        .toggle-bible-btn {
            display: block;
            width: 100%;
            max-width: 500px;
            margin: 30px auto;
            padding: 18px 30px;
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            box-shadow: 0 5px 15px rgba(42, 82, 152, 0.3);
        }
        
        .toggle-bible-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(42, 82, 152, 0.4);
            background: linear-gradient(135deg, #2a5298, #3a62a8);
        }
        
        .toggle-bible-btn:active {
            transform: translateY(0);
        }
        
        .toggle-bible-btn .icon {
            margin-left: 10px;
            transition: transform 0.3s;
        }
        
        .toggle-bible-btn.expanded .icon {
            transform: rotate(180deg);
        }

        blockquote {
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: #f8fafc; /* fundo claro suave */
  border-left: 6px solid #1e3a8a; /* azul profundo estilo título */
  border-radius: 0 12px 12px 0;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #1f2937; /* cinza escuro elegante */
  font-style: italic;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

blockquote p {
  margin: 0; /* limpa o espaçamento interno */
}

