/* =========================================
   SECAO CURSOS BIBLICOS - Palavra Viva
   ========================================= */

.pvsh-cursos-section {
    padding: 60px 0;
    background: #fafafa;
}

.pvsh-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pvsh-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 10px;
}

.pvsh-title {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: inherit;
}

.pvsh-icon {
    font-size: 32px;
}

.pvsh-vertodos {
    color: #c89b4a;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: color .2s;
}
.pvsh-vertodos:hover {
    color: #a87a2e;
    text-decoration: none;
}

.pvsh-divider {
    border: none;
    border-top: 2px solid #e5e7eb;
    margin: 0 0 32px;
}

.pvsh-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.pvsh-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    transition: transform .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
}
.pvsh-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,.14);
}

.pvsh-card-thumb {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f3f4f6;
}
.pvsh-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.pvsh-card:hover .pvsh-card-thumb img {
    transform: scale(1.05);
}
.pvsh-card-noimg {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 64px;
}

.pvsh-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #2563eb;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
}

.pvsh-card-nivel {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}
.pvsh-nivel-iniciante     { background: #d1fae5; color: #065f46; }
.pvsh-nivel-intermediario { background: #fef3c7; color: #92400e; }
.pvsh-nivel-avancado      { background: #fee2e2; color: #991b1b; }

.pvsh-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pvsh-card-title {
    font-size: 18px;
    line-height: 1.35;
    margin: 0 0 10px;
    font-weight: 700;
}
.pvsh-card-title a {
    color: #1f2937;
    text-decoration: none;
    transition: color .2s;
}
.pvsh-card-title a:hover {
    color: #c89b4a;
}

.pvsh-card-excerpt {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 14px;
    flex: 1;
}

.pvsh-card-meta {
    display: flex;
    gap: 14px;
    font-size: 13px;
    color: #6b7280;
    padding: 10px 0;
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.pvsh-card-instrutor {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 14px;
}

.pvsh-card-btn {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #c89b4a, #a87a2e);
    color: #fff !important;
    padding: 11px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform .2s, box-shadow .2s;
    margin-top: auto;
}
.pvsh-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(200,155,74,.4);
    color: #fff !important;
    text-decoration: none;
}

@media (max-width: 768px) {
    .pvsh-cursos-section { padding: 40px 0; }
    .pvsh-title { font-size: 24px; }
    .pvsh-icon { font-size: 24px; }
    .pvsh-grid { grid-template-columns: 1fr; gap: 18px; }
}