.faq-section {
    padding: 60px 0;
    background-color: var(--bg-light);
    color: var(--text);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 50vh;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    text-align: left;
}

.faq-title {
    text-align: left;
    margin-bottom: 40px;
    color: var(--text);
    font-size: 2.5rem;
    font-weight: 700;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-weight: 600;
    color: var(--text);
    transition: background-color 0.3s ease;
    text-align: left;
}

.faq-answer {
    padding: 0 20px;
    background-color: var(--bg-light);
    border-radius: 0 0 8px 8px;
    line-height: 1.6;
    color: var(--text-light);
    text-align: left;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.pacote-item {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.pacote-item svg,
.pacote-item i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 2px;
    flex-shrink: 0;
}

.pacote-item span {
    display: block;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Media queries específicas para dispositivos problemáticos */
@media screen and (max-width: 412px) {
    .pacote-item {
        grid-template-columns: 20px 1fr;
        gap: 10px;
        align-items: flex-start;
    }
    .pacote-item svg,
    .pacote-item i {
        width: 20px;
        height: 20px;
    }
}

/* Ajustes gerais por faixas de tamanho */
@media (max-width: 768px) {
    .pacote-item {
        grid-template-columns: 20px auto;
        gap: 10px;
    }
    
    .pacote-item svg,
    .pacote-item i {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 380px) {
    .pacote-item {
        grid-template-columns: 18px 1fr;
        gap: 8px;
    }
    
    .pacote-item svg,
    .pacote-item i {
        width: 18px;
        height: 18px;
    }
    
    .pacote-item span {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}