/* Custom CSS for Read More (Leia Mais) button and FAQ Accordion */

/* Read More Button Styling */
.btn-leia-mais {
    background-color: #0051d2;
    border: 2px solid #0051d2;
    color: #fff !important;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 81, 210, 0.15);
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-leia-mais:hover {
    background-color: #003fa3;
    border-color: #003fa3;
    box-shadow: 0 6px 12px rgba(0, 81, 210, 0.25);
    transform: translateY(-2px);
    text-decoration: none !important;
}

.btn-leia-mais:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 81, 210, 0.4);
}

.btn-leia-mais:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 81, 210, 0.15);
}

/* FAQ Accordion Styling */
.faq-accordion .card {
    border: 1px solid #e8edf1;
    border-radius: 12px !important;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.015);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: #fff;
}

.faq-accordion .card:hover {
    border-color: #0051d2;
    box-shadow: 0 8px 20px rgba(0, 81, 210, 0.06);
}

.faq-accordion .card-header {
    background: #fff;
    border: none;
    padding: 0;
}

.faq-accordion .faq-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 22px 28px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #020a21 !important;
    text-align: left;
    text-decoration: none !important;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-accordion .faq-btn:focus {
    outline: none;
    box-shadow: none;
}

.faq-accordion .faq-btn:hover {
    color: #0051d2 !important;
}

.faq-accordion .faq-btn:not(.collapsed) {
    color: #0051d2 !important;
}

.faq-accordion .faq-icon {
    font-size: 1.1rem;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: #0051d2;
    margin-left: 15px;
    flex-shrink: 0;
}

.faq-accordion .faq-btn:not(.collapsed) .faq-icon {
    transform: rotate(180deg);
}

.faq-accordion .card-body {
    padding: 0 28px 24px 28px;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #5a6169;
    background: #fff;
    border-top: none;
}

/* Helper styles for layouts */
.content-detail-wrapper {
    margin-top: 30px;
    margin-bottom: 30px;
}

.title-underline {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 25px;
}

.title-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #0051d2;
}

.img-shadow-rounded {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
