/* ============================================
BLOCO: PERGUNTAS E RESPOSTAS
============================================ */
.bloco-perguntas-respostas {
    padding: 80px 40px 100px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* ===== CABEÇALHO ===== */
.faq-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 50px;
}

.faq-titulo {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px 0;
    letter-spacing: -1px;
}

.faq-titulo span {
    color: #2563eb;
    transition: color 0.3s ease;
}

.faq-titulo span:hover {
    color: #1d4ed8;
}

.faq-subtitulo {
    font-size: 18px;
    color: #475569;
    margin: 0;
}

/* ===== LISTA DE PERGUNTAS ===== */
.faq-lista {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.06);
}

/* ===== PERGUNTA ===== */
.faq-pergunta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-pergunta:hover {
    background: #f8fafc;
}

.faq-pergunta .faq-icone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.faq-item.ativo .faq-pergunta .faq-icone {
    transform: rotate(90deg);
    color: #2563eb;
}

.faq-pergunta .faq-texto {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    transition: color 0.3s ease;
}

.faq-pergunta:hover .faq-texto {
    color: #2563eb;
}

/* ===== RESPOSTA ===== */
.faq-resposta {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.ativo .faq-resposta {
    max-height: 600px;
    padding: 0 24px 24px 24px;
}

.faq-resposta p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

.faq-resposta p strong {
    color: #0f172a;
}

/* ============================================
BOTÃO NO FINAL DA FAQ
============================================ */
.plano-card-footer {
    text-align: center;
    margin-top: 24px;
}

.btn-plano-destaque {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    background: #2563eb;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.btn-plano-destaque:hover {
    background: #1d4ed8;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
    color: #ffffff;
}

.btn-plano-destaque i {
    transition: transform 0.3s ease;
}

.btn-plano-destaque:hover i {
    transform: translateX(4px);
}

/* ============================================
RESPONSIVIDADE
============================================ */
@media (max-width: 768px) {
    .bloco-perguntas-respostas {
        padding: 50px 24px 70px;
    }
    
    .faq-titulo {
        font-size: 30px;
    }
    
    .faq-subtitulo {
        font-size: 16px;
    }
    
    .faq-pergunta {
        padding: 16px 20px;
        gap: 12px;
    }
    
    .faq-pergunta .faq-texto {
        font-size: 15px;
    }
    
    .faq-item.ativo .faq-resposta {
        padding: 0 20px 20px 20px;
    }
}

@media (max-width: 480px) {
    .bloco-perguntas-respostas {
        padding: 40px 16px 50px;
    }
    
    .faq-titulo {
        font-size: 24px;
    }
    
    .faq-subtitulo {
        font-size: 15px;
    }
    
    .faq-pergunta {
        padding: 14px 16px;
        gap: 10px;
    }
    
    .faq-pergunta .faq-texto {
        font-size: 14px;
    }
    
    .faq-item.ativo .faq-resposta {
        padding: 0 16px 16px 16px;
    }
    
    .faq-resposta p {
        font-size: 14px;
    }
    
    .btn-plano-destaque {
        padding: 12px 28px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}