@media (min-width: 767px) {
    .produto .conteiner-imagem img {
        object-fit: contain;
    }
}
@media (min-width: 767px) {
    .produto .conteiner-imagem img {
        object-fit: contain;
    }
}

/* --- REDESIGN TOTAL DOS ALERTAS DE FRETE (Pesarti) --- */

/* 1. Base para TODOS os alertas (Verde, Amarelo, Vermelho, Cinza) */
#corpo .alert, 
.alert-success, .alert-warning, .alert-danger, .alert-info {
    background-color: #8A2BE2 !important; /* Fundo Roxo Pesarti */
    border: 1px solid #7B24CC !important; /* Borda levemente mais escura */
    color: #ffffff !important;            /* Texto Branco */
    border-radius: 8px !important;        /* Cantos arredondados */
    box-shadow: 0 4px 12px rgba(138, 43, 226, 0.3) !important; /* Sombra roxa suave */
    font-size: 14px !important;
    text-align: center !important;
    padding: 15px !important;
}

/* 2. Forçar cor branca em textos em negrito ou links dentro do alerta */
#corpo .alert strong, #corpo .alert b, #corpo .alert a, 
.alert-success strong, .alert-warning strong {
    color: #ffffff !important;
    text-decoration: underline;
}

/* 3. Ajuste do botão de fechar (o "X") para ficar branco e discreto */
#corpo .alert .close, .alert .close {
    color: #ffffff !important;
    opacity: 0.7 !important;
    text-shadow: none !important;
    font-weight: normal !important;
}
#corpo .alert .close:hover {
    opacity: 1 !important;
}

/* (Opcional) Cor diferente para avisos de atenção, se quiser */
.alert-warning {
    background-color: #5D2C87 !important; 
}