.faq {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq h2 {
    text-align: center;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
    width: 100%;
    padding: 18px;
    border: none;
    background: transparent;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: rgba(255,255,255,0.05);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    padding: 0 18px;
}

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

.faq-answer ul {
    margin-left: 20px;
    margin-top: 10px;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-container {
    width: 100%;
}

.faq-container iframe {
    width: 100%;
    min-height: 800px;
    border: none;
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;

    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,.7);

    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 600px;

    padding: 30px;
    border-radius: 12px;

    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;

    font-size: 28px;
    cursor: pointer;
}

.btn-chamado {
    margin-top: 20px;
    padding: 12px 20px;
    cursor: pointer;
}

.modal-header {
    background: linear-gradient(135deg, #0099ff, #0056b3);
    color: white;
    padding: 20px 25px;
    border-radius: 12px 12px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
}


.modal-content ul {
    list-style: none;
    padding: 0;
}


.btn-entendi {
    background: linear-gradient(135deg, #0099ff, #0056b3);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: .3s;
}

.btn-entendi:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,153,255,.3);
}

.modal-content li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.modal-content li::before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    margin-right: 10px;
}


.modal-content {
    animation: modalShow .3s ease;
}

@keyframes modalShow {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.alerta-suporte {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    color: #856404;
    padding: 15px;
    margin-top: 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.btn-chamado-modal {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 15px;
    padding: 14px 28px;

    background: linear-gradient(135deg, #0099ff, #0056b3);
    color: #fff;

    text-decoration: none;
    font-weight: 600;
    font-size: 15px;

    border-radius: 50px;
    border: none;

    cursor: pointer;

    transition: all .3s ease;
    box-shadow: 0 4px 15px rgba(0, 153, 255, .25);
}

.btn-chamado-modal:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 153, 255, .4);
}

.btn-chamado-modal:active {
    transform: translateY(0);
}

.btn-chamado-modal {
    background: linear-gradient(
        135deg,
        #00c6ff,
        #0072ff
    );

    letter-spacing: .5px;
    text-transform: uppercase;
}