﻿/* resumo-checkout.css — Resumo compartilhado entre Carrinho, Arquivos e Frete */

.box-resumo-checkout {
    margin-bottom: 2.5rem;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    padding: 24px;
    background: #fff;
}
.box-resumo-checkout h3 {
    margin: 0 0 20px;
    font-size: 22px;
    font-weight: 700;
}
.resumo-ck-linha {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
}
.resumo-ck-frete { font-weight: 700; }
.resumo-ck-pendente { font-size: 13px; color: #999; font-style: italic; }
.resumo-ck-gratis { color: #28A745; font-weight: 700; }
.resumo-ck-total {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #e5e5e5;
    margin-top: 20px;
    padding-top: 20px;
    font-weight: 700;
    font-size: 18px;
}
.resumo-ck-aviso {
    margin: 12px 0 0;
    font-size: 13px;
    color: #d97706;
    line-height: 1.5;
}
.resumo-ck-aviso i { margin-right: 4px; }

/* Ações */
.resumo-ck-acoes {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}
.resumo-ck-btn-avancar {
    width: 100%;
    height: 48px;
    background: var(--cor-padrao);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
    text-align: center;
}
.resumo-ck-btn-avancar:hover { opacity: .9; }
.resumo-ck-btn-avancar.disabled {
    background: #ccc;
    color: #888;
    pointer-events: none;
}
.resumo-ck-btn-voltar {
    display: block;
    text-align: center;
    flex: 1;
    height: 48px;
    line-height: 48px;
    background: transparent;
    border: 1.5px solid #d8d8d8;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    transition: .2s;
}
    .resumo-ck-btn-voltar:hover {
        border-color: var(--cor-padrao);
        color: var(--cor-padrao);
        text-decoration: none;
    }
