﻿/* --- CARD DE ESTUDOS --- */
:root {
    --primary-color: #294447;
    --secondary-color: #007bff;
    --background-color: #f4f7f9;
    --card-background: #ffffff;
    --text-color: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.08);

    --font-family: 'Poppins', sans-serif;
    --border-radius: 12px;
}
.studies-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.studies-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.studies-list li:last-child {
    border-bottom: none;
}

.studies-list a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    display: block;
    transition: color 0.3s ease;
}

.studies-list a:hover {
    color: var(--secondary-color);
}

.studies-list .author {
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.9em;
    margin-left: 5px;
}
.card-body-split {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    align-items: center;
    padding: 20px;
}

.split-image {
    flex: 0 0 40%; /* Não cresce, não encolhe, base de 40% */
    text-align: center;
}

.split-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
.btn-link {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
}
.bible-verse-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--card-background);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px var(--shadow-color);
    text-align: center;
}

.bible-icon {
    width: 50px;
    height: auto;
    margin-right: 20px;
}

.search-bar {
	background-color: #FFF;
	border-radius: 8px;
	padding: 1.5rem;
	box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.search-bar .form-control {
	border-radius: 20px;
	border: 2px solid #ddd;
}
.search-bar .form-control:focus {
	border-color: var(--cor-secundaria);
	box-shadow: 0 0 0 0.25rem rgba(62, 146, 204, 0.25);
}
/* --- Cards Pastorais --- */
.card-pastoral {
	border: none;
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border-radius: 10px;
	overflow: hidden;
}
.card-pastoral:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.card-pastoral .card-body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.card-pastoral .card-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	color: var(--primary-color);
}
.card-pastoral .card-subtitle {
	color: var(--accent-color);
	font-weight: 600;
}
.card-pastoral .btn-primary {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	font-weight: 600;
	transition: background-color 0.3s ease;
}
.card-pastoral .btn-primary:hover {
	background-color: #0c026b; /* Um pouco mais escuro */
}
.language-link {
	font-size: 0.8rem;
	text-decoration: none;
	color: #6c757d;
}
