/* ==============================================
   JRTECH - Página ABS EcoSport Styles
   Compartilha estrutura com hb20.css + extras
   ============================================== */

/* Alerta de Segurança */
.safety-alert {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(245, 158, 11, 0.04) 100%);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.safety-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.safety-alert h3 {
    color: var(--danger);
    margin-bottom: 0.5rem;
}

.safety-alert p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Sintomas ABS - cor âmbar */
.symptom-icon.amber {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.2);
}

/* Diferenciais com ícone */
.diff-grid-abs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.diff-card-abs {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.diff-card-abs .diff-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.diff-card-abs h4 { margin-bottom: 0.5rem; }
.diff-card-abs p { font-size: 0.9rem; margin-bottom: 0; }

/* Cross-sell banner */
.cross-sell {
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cross-sell p {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 500;
}

@media (max-width: 768px) {
    .safety-alert {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .cross-sell {
        flex-direction: column;
        text-align: center;
    }
}
