/* ========================================== */
/* ===== SEÇÃO ESTUDOS CATÓLICOS ===== */
/* ========================================== */

.estudos-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 30px;
    background: #f5f0e8;
    color: #333;
}

.estudos-container .titulo {
    text-align: center;
    margin-bottom: 50px;
}

.estudos-container .titulo h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
}

.estudos-container .titulo h2 span {
    color: #b8860b;
}

.estudos-container .titulo p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 15px auto 0;
    line-height: 1.7;
}

/* ===== OBJETIVOS ===== */
.objetivos-box {
    background: #1a1a1a;
    color: #eee;
    padding: 35px;
    border-radius: 16px;
    margin-bottom: 40px;
    border-left: 5px solid #b8860b;
}

.objetivos-box h3 {
    color: #d4a843;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.objetivos-box p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 1rem;
}

.objetivos-box .versiculo {
    background: #2a2a2a;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #b8860b;
    margin: 15px 0;
    font-style: italic;
    color: #ddd;
}

.objetivos-box .highlight {
    color: #d4a843;
    font-weight: 600;
}

/* ===== ACORDEÃO DOS ESTUDOS ===== */
.estudos-accordion {
    margin: 40px 0;
}

.estudos-accordion .accordion-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.estudos-accordion .accordion-title span {
    color: #b8860b;
}

.estudos-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #e8e0d6;
}

.estudos-header {
    width: 100%;
    padding: 18px 25px;
    background: #fff;
    border: none;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
}

.estudos-header:hover {
    background: #f5f0e8;
}

.estudos-header .arrow {
    transition: transform 0.3s;
    font-size: 1rem;
    color: #b8860b;
}

.estudos-item.active .estudos-header .arrow {
    transform: rotate(180deg);
}

.estudos-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    padding: 0 25px;
}

.estudos-item.active .estudos-content {
    max-height: 3000px;
    padding: 0 25px 25px;
}

/* ===== GRADE DE DISCIPLINAS ===== */
.disciplinas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 15px 0;
}

.disciplina-card {
    background: #faf8f5;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e8e0d6;
}

.disciplina-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.disciplina-card .disciplina-imagem {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.disciplina-card .disciplina-imagem:hover {
    opacity: 0.85;
}

.disciplina-card h4 {
    color: #1a1a1a;
    font-size: 1rem;
    margin: 12px 0 5px;
}

.disciplina-card .carga-horaria {
    color: #b8860b;
    font-size: 0.85rem;
    font-weight: 600;
}

.disciplina-card .btn-playlist {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 20px;
    background: #b8860b;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background 0.3s;
}

.disciplina-card .btn-playlist:hover {
    background: #a0750a;
}

.disciplina-card .btn-pdf {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 20px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: background 0.3s;
}

.disciplina-card .btn-pdf:hover {
    background: #333;
}

.disciplina-card .botoes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 10px;
}

/* ===== BAIXAR CATECISMO E CÂNON ===== */
.downloads-extra {
    background: #1a1a1a;
    color: #eee;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    text-align: center;
}

.downloads-extra h4 {
    color: #d4a843;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.downloads-extra .btn-download-extra {
    display: inline-block;
    margin: 5px 10px;
    padding: 12px 30px;
    background: #b8860b;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.3s;
}

.downloads-extra .btn-download-extra:hover {
    background: #a0750a;
}

/* ===== MENSAGEM FINAL ===== */
.mensagem-final {
    background: #1a1a1a;
    color: #eee;
    padding: 35px;
    border-radius: 16px;
    margin-top: 40px;
    text-align: center;
    border: 1px solid #333;
}

.mensagem-final .icone {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.mensagem-final h3 {
    color: #d4a843;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.mensagem-final p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 10px;
}

.mensagem-final .whatsapp-link {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 40px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s;
}

.mensagem-final .whatsapp-link:hover {
    background: #1da851;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .estudos-container {
        padding: 50px 20px;
    }

    .estudos-container .titulo h2 {
        font-size: 2rem;
    }

    .disciplinas-grid {
        grid-template-columns: 1fr 1fr;
    }

    .estudos-header {
        font-size: 0.9rem;
        padding: 14px 18px;
    }

    .estudos-content {
        padding: 0 18px;
    }

    .estudos-item.active .estudos-content {
        padding: 0 18px 18px;
    }

    .objetivos-box {
        padding: 25px 18px;
    }
}

@media (max-width: 480px) {
    .estudos-container {
        padding: 30px 14px;
    }

    .estudos-container .titulo h2 {
        font-size: 1.6rem;
    }

    .disciplinas-grid {
        grid-template-columns: 1fr;
    }

    .disciplina-card .disciplina-imagem {
        height: 120px;
    }

    .downloads-extra .btn-download-extra {
        display: block;
        margin: 8px auto;
        width: 90%;
    }

    .mensagem-final {
        padding: 25px 18px;
    }

    .mensagem-final .whatsapp-link {
        display: block;
        width: 100%;
    }
}

/* ========================================== */
/* ===== FIM SEÇÃO ESTUDOS CATÓLICOS ===== */
/* ========================================== */