/* Estilos para a Seção FAQ */
.faq-section {
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.faq-section:before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(0, 104, 115, 0.05);
    z-index: 1;
}

.faq-section:after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(0, 104, 115, 0.05);
    z-index: 1;
}

.faq-section .container {
    position: relative;
    z-index: 2;
}

.faq-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.accordion-item {
    border: none;
    background-color: transparent;
    margin-bottom: 15px;
}

.accordion-button {
    background-color: white;
    border-radius: 10px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    color: var(--cor-texto);
    padding: 20px 25px;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: var(--cor-principal);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 104, 115, 0.2);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23006873' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
    transform: rotate(0deg);
}

.accordion-body {
    background-color: white;
    border-radius: 0 0 10px 10px;
    padding: 20px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-contact {
    margin-top: 50px;
    text-align: center;
}

.faq-contact p {
    margin-bottom: 20px;
}

@media (max-width: 767.98px) {
    .accordion-button {
        padding: 15px 20px;
    }
    
    .accordion-body {
        padding: 15px 20px;
    }
}
