/* solicitud.step4.css — Summary, quote note, WhatsApp button (Step 4) */

.sol-summary {
    padding: 0;
    overflow: hidden;
}

.sol-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 14px 20px;
    border-bottom: 1px solid #111;
    gap: 12px;
}

.sol-summary__row:last-child {
    border-bottom: none;
}

.sol-summary__key {
    font-size: 13px;
    color: #555;
    flex-shrink: 0;
}

.sol-summary__val {
    font-size: 14px;
    font-weight: 600;
    text-align: right;
}

/* ---- Quote note ---- */
.sol-quote-note {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(200, 14, 20, 0.06);
    border: 1px solid rgba(200, 14, 20, 0.2);
    border-radius: 12px;
    padding: 16px;
    margin: 20px 0;
}

.sol-quote-note__icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.sol-quote-note p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    margin: 0;
}

.sol-quote-note strong {
    color: #ccc;
}

/* ---- WhatsApp button ---- */
.btn-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    border-radius: 14px;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
    transition: opacity 0.2s;
}

.btn-wa:hover {
    opacity: 0.9;
}
