/* =========================================
   ESTILOS EXCLUSIVOS DA PÁGINA "CARRITO"
========================================= */

.banner-estatico {
    width: 100%;
    background: #000;
    display: block;
}

.banner-img-top {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.pricing-main-title {
    text-align: center;
    font-size: 38px;
    font-weight: 900;
    margin: 50px 0;
    color: #000;
}

/* A caixa principal do carrinho */
.cart-section {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}

.cart-box {
    width: 100%;
    max-width: 800px;
    background: linear-gradient(180deg, #444444 0%, #222222 100%);
    border-radius: 35px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    color: #fff;
}

/* Cada item adicionado */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 15px 25px;
    border-radius: 15px;
    margin-bottom: 15px;
    border-left: 5px solid #4aff22;
}

.item-name {
    font-size: 18px;
    font-weight: 600;
}

.item-price {
    font-size: 20px;
    font-weight: 900;
    color: #f2555c;
}

.btn-remove {
    background: #f2555c;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.btn-remove:hover {
    background: #d13d44;
    transform: scale(1.1);
}

/* Área do Total */
.cart-total-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #555;
}

.total-label {
    font-size: 24px;
    font-weight: 900;
}

.total-value {
    font-size: 32px;
    font-weight: 900;
    color: #4aff22;
    text-shadow: 0 0 10px rgba(74, 255, 34, 0.5);
}

/* Botões de Ação */
.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.btn-clear {
    background: transparent;
    border: 2px solid #888;
    color: #ccc;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.btn-clear:hover {
    background: #555;
    color: #fff;
}

/* O Botão Neon do Whatsapp ajustado */
.price-btn-neon.btn-whatsapp {
    width: auto;
    font-size: 24px;
    padding: 15px 40px;
}

@media (max-width: 768px) {
    .cart-actions {
        flex-direction: column-reverse;
        gap: 20px;
    }
    .price-btn-neon.btn-whatsapp { width: 100%; }
    .cart-item { flex-direction: column; gap: 10px; text-align: center; }
}