/**
 * FAQ Moderno - STEEL360 Theme
 * Design completamente novo mantendo as cores do template
 */

/* Seção FAQ Moderna */
.faq-modern-section {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}



/* Cards FAQ Simplificados */
.faq-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}



/* Pergunta Simplificada */
.modern-faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0;
    transition: all 0.3s ease;
}

.question-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2A2523;
    line-height: 1.4;
}

.modern-faq-question:hover .question-text {
    color: #FF6B35;
}

/* Ícone de Expansão Moderno */
.expand-icon {
    position: relative;
    width: 2rem;
    height: 2rem;
    border: 2px solid #FF6B35;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.icon-line {
    position: absolute;
    background: #FF6B35;
    transition: all 0.3s ease;
}

.icon-line-1 {
    width: 12px;
    height: 2px;
}

.icon-line-2 {
    width: 2px;
    height: 12px;
}

.faq-card.active .expand-icon {
    background: #FF6B35;
    transform: rotate(45deg);
}

.faq-card.active .icon-line {
    background: white;
}

.faq-card.active .icon-line-2 {
    transform: rotate(90deg);
}

/* Resposta Moderna */
.modern-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-card.active .modern-faq-answer {
    max-height: 500px;
    opacity: 1;
    margin-top: 1.5rem;
}

.answer-content {
    padding: 1.5rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 16px;
    border-left: 4px solid #FF6B35;
    color: #2A2523;
    line-height: 1.6;
    font-size: 1rem;
}

.answer-content p {
    margin-bottom: 1rem;
}

.answer-content p:last-child {
    margin-bottom: 0;
}

/* Busca removida - estilos não necessários */

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estados removidos - não necessários */

/* Responsividade */
@media (max-width: 768px) {
    .faq-modern-section {
        padding: 3rem 0;
    }
    
    .faq-card {
        padding: 1.25rem;
    }
    
    .question-text {
        font-size: 1rem;
    }
    
    .expand-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .icon-line-1 {
        width: 10px;
    }
    
    .icon-line-2 {
        height: 10px;
    }
}

/* Modo escuro */
@media (prefers-color-scheme: dark) {
    .faq-modern-section {
        background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    }
    
    .faq-card {
        background: rgba(45, 55, 72, 0.95);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .question-text {
        color: #F8F9F4;
    }
    
    .answer-content {
        background: rgba(255, 107, 53, 0.1);
        color: #F8F9F4;
    }
}