/* ========================================== */
/* ===== SEÇÃO ORAÇÕES ===== */
/* ========================================== */

.oracoes-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 50px;
    background: #f5f0e8;
    color: #333;
}

.oracoes-container .titulo {
    text-align: center;
    margin-bottom: 40px;
}

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

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

.oracoes-container .titulo p {
    font-size: 1rem;
    color: #666;
    max-width: 700px;
    margin: 10px auto 0;
    line-height: 1.6;
}

/* ===== ACORDEÃO ===== */
.oracoes-accordion {
    margin: 30px 0;
}

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

.oracoes-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;
}

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

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

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

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

.oracoes-item.active .oracoes-content {
    max-height: 5000px;
    padding: 0 25px 25px;
}

.oracoes-content .oracao-texto {
    background: #faf8f5;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 4px solid #b8860b;
    font-style: italic;
    line-height: 1.8;
    color: #444;
}

.oracoes-content .oracao-texto strong {
    color: #1a1a1a;
}

.oracoes-content .historia {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.oracoes-content .historia .highlight {
    color: #b8860b;
    font-weight: 600;
}

.oracoes-content .btn-pdf-oracao {
    display: inline-block;
    margin: 5px 8px 5px 0;
    padding: 10px 25px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background 0.3s;
}

.oracoes-content .btn-pdf-oracao:hover {
    background: #333;
}

.oracoes-content .btn-pdf-oracao.historia-btn {
    background: #b8860b;
}

.oracoes-content .btn-pdf-oracao.historia-btn:hover {
    background: #a0750a;
}

.oracoes-content .botoes-pdf {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.oracoes-content .info-box {
    background: #1a1a1a;
    color: #eee;
    padding: 20px;
    border-radius: 10px;
    margin: 15px 0;
}

.oracoes-content .info-box h4 {
    color: #d4a843;
    margin-bottom: 10px;
}

.oracoes-content .info-box p {
    color: #ccc;
    line-height: 1.7;
}

.oracoes-content .info-box .destaque {
    color: #d4a843;
    font-weight: 600;
}

/* ===== BOTÃO WHATSAPP ===== */
.btn-whatsapp-oracao {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 35px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.btn-whatsapp-oracao:hover {
    background: #1da851;
    transform: scale(1.02);
    color: #fff;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .oracoes-container {
        padding: 40px 16px 30px;
    }

    .oracoes-container .titulo h2 {
        font-size: 1.8rem;
    }

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

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

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

    .oracoes-content .oracao-texto {
        padding: 15px;
        font-size: 0.9rem;
    }

    .oracoes-content .btn-pdf-oracao {
        padding: 8px 18px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .oracoes-container .titulo h2 {
        font-size: 1.5rem;
    }

    .oracoes-header {
        font-size: 0.8rem;
        padding: 12px 14px;
    }

    .oracoes-content .oracao-texto {
        font-size: 0.85rem;
        padding: 12px;
    }

    .oracoes-content .btn-pdf-oracao {
        display: block;
        width: 100%;
        text-align: center;
        margin: 4px 0;
    }

    .oracoes-content .botoes-pdf {
        flex-direction: column;
    }

    .btn-whatsapp-oracao {
        display: block;
        width: 100%;
        text-align: center;
    }
}

/* ========================================== */
/* ===== FIM SEÇÃO ORAÇÕES ===== */
/* ========================================== */