@charset "UTF-8";

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #1a2a40;
}
.hero-section {
    background: linear-gradient(rgba(26, 42, 64, 0.9), rgba(26, 42, 64, 0.9)), url('https://edfc.com.br/assets/images/escola-catequetica-logo_350x350.png') center/cover;
    color: white;
    padding: 80px 0;
    margin-bottom: 50px;
    border-bottom: 5px solid #c5a059;
}
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.5rem;
}
.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #c5a059;
}
.card {
    border: none;
    border-radius: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
}
.role-badge {
    font-size: 0.8rem;
    color: #c5a059;
    font-weight: 600;
    text-transform: uppercase;
}
.vicariato-tag {
    background-color: #e9ecef;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #495057;
}
.teacher-list {
    background-color: white;
    border-left: 4px solid #1a2a40;
}