.quick-answer {
    background: linear-gradient(135deg, #FAFBFF 0%, #FFFFFF 60%, #F5F7FF 100%);
    border: 1px solid var(--color-border, #E5E7EB);
    border-radius: 20px;
    padding: 32px 36px 32px 40px;
    /* Margin top negativo cria overlap com o hero acima — moderno (Linear/Stripe) */
    margin: -56px auto 48px;
    max-width: 820px;
    position: relative;
    z-index: 5;
    box-shadow:
        0 1px 2px rgba(10, 14, 26, 0.04),
        0 16px 40px rgba(10, 14, 26, 0.08),
        0 4px 12px rgba(10, 14, 26, 0.04);
    overflow: hidden;
}

.quick-answer::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(180deg, var(--first-color, #0024f8) 0%, rgba(0, 36, 248, 0.15) 100%);
}

.quick-answer::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(0, 36, 248, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.quick-answer__title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--first-color, #0024f8);
    margin: 0 0 18px;
    padding: 6px 14px 6px 10px;
    background: rgba(0, 36, 248, 0.08);
    border: 1px solid rgba(0, 36, 248, 0.12);
    border-radius: 999px;
    line-height: 1;
}

.quick-answer__title::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230024f8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2L3 14h9l-1 8 10-12h-9l1-8z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.quick-answer__content {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-primary, #0A0E1A);
    position: relative;
    z-index: 1;
}

.quick-answer__content p {
    margin: 0 0 14px;
}

.quick-answer__content p:last-child {
    margin: 0;
}

.quick-answer__content strong {
    color: var(--first-color, #0024f8);
    font-weight: 600;
}

@media (max-width: 768px) {
    .quick-answer {
        padding: 24px 24px 24px 28px;
        margin: -32px 16px 32px;
        border-radius: 16px;
    }

    .quick-answer__content {
        font-size: 15px;
        line-height: 1.65;
    }
}

@media (max-width: 480px) {
    .quick-answer {
        padding: 22px 20px 22px 24px;
    }

    .quick-answer__title {
        font-size: 10px;
        padding: 5px 12px 5px 8px;
    }
}
