:root {
    --azul-cestao: #1a3a6d;
    --vermelho-cestao: #e31e24;
}

body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

.btn-primary {
    background-color: var(--azul-cestao);
    border-color: var(--azul-cestao);
}

.btn-danger {
    background-color: var(--vermelho-cestao);
    border-color: var(--vermelho-cestao);
}

.text-primary { color: var(--azul-cestao) !important; }





.modelos-section {
        padding: 60px 0;
        background-color: #f9f9f9;
    }

    .section-title {
        color: #003366;
        font-weight: 800;
        text-align: center;
        margin-bottom: 40px;
        text-transform: uppercase;
    }

    /* Card da Imagem da Loja */
    .store-card {
        border: none;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        height: 100%;
    }

    .store-img-wrapper {
        position: relative;

    }

    .store-logo-overlay {
        position: absolute;
        bottom: 10px;
        left: 10px;
     
        padding: 5px 15px;
        border-radius: 5px;
        max-width: 150px;
    }

    /* Cards das Cestas */
    .cesta-card {
        background: #fff;
        border-radius: 15px;
        padding: 20px;
        margin-bottom: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        display: flex;
        align-items: center;
        transition: transform 0.3s ease;
        border: 1px solid #eee;
    }

    .cesta-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

    .cesta-img {
        width: 120px;
        height: auto;
        margin-right: 20px;
    }

    .cesta-info h5 {
        color: #666;
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .cesta-info h4 {
        color: #003366;
        font-weight: 800;
        margin-bottom: 5px;
    }

    .cesta-info p {
        font-size: 0.85rem;
        color: #777;
        margin-bottom: 0;
    }

    .check-list {
        list-style: none;
        padding: 0;
        margin: 20px 0;
        display: flex;
        justify-content: center;
        gap: 30px;
        font-weight: 600;
        color: #444;
    }

    .check-list i {
        color: #e31e24;
        margin-right: 8px;
    }

    .btn-orcamento-empresa {
        background-color: #e31e24;
        color: #fff;
        border-radius: 8px;
        padding: 15px 40px;
        font-weight: 800;
        text-transform: uppercase;
        border: none;
        display: block;
        margin: 30px auto 0;
        transition: 0.3s;
    }

    .btn-orcamento-empresa:hover {
        background-color: #003366;
        color: #fff;
    }
    
    
    
    Entendido! Vamos criar essa seção invertendo a posição dos elementos para manter o equilíbrio visual da página. O texto ficará à direita e a imagem à esquerda, mantendo o estilo de design "limpo" e profissional que estabelecemos.

Aqui está o código completo para a seção Nosso Compromisso:

HTML
<style>
    /* Estilos para a Seção Compromisso */
    .secao-compromisso {
        padding: 80px 0;
        background-color: #ffffff;
    }

    .compromisso-badge {
        color: #e31e24;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        display: block;
        margin-bottom: 10px;
    }

    .compromisso-title {
        color: #003366;
        font-weight: 800;
        font-size: 2.5rem;
        margin-bottom: 30px;
        position: relative;
    }

    .compromisso-title::after {
        content: '';
        display: block;
        width: 80px;
        height: 5px;
        background: #e31e24;
        margin-top: 15px;
    }

    .compromisso-content p {
        font-size: 1.1rem;
        color: #555;
        line-height: 1.8;
        margin-bottom: 20px;
        text-align: justify;
    }

    /* Box de destaque para a frase principal */
    .compromisso-quote {
        border-left: 4px solid #e31e24;
        padding: 15px 25px;
        background-color: #f9f9f9;
        margin: 30px 0;
        font-style: italic;
        color: #003366;
        font-weight: 600;
    }

    .img-compromisso-container {
        position: relative;
        padding: 10px;
    }

    .img-compromisso {
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        width: 100%;
        transition: transform 0.3s ease;
    }

    /* Decoração de pontos no canto inferior esquerdo */
    .img-compromisso-container::before {
        content: '';
        position: absolute;
        bottom: -15px;
        left: -15px;
        width: 100px;
        height: 100px;
        background: radial-gradient(#003366 2px, transparent 2px);
        background-size: 15px 15px;
        z-index: -1;
    }

    /* Ajuste para Mobile: Inverte a ordem para a imagem não ficar perdida */
    @media (max-width: 991px) {
        .flex-column-reverse-mobile {
            flex-direction: column-reverse;
        }
        .compromisso-title {
            font-size: 2rem;
        }
    }
    

    @media (max-width: 768px) {
        .cesta-card { flex-direction: column; text-align: center; }
        .cesta-img { margin-right: 0; margin-bottom: 15px; }
        .check-list { flex-direction: column; gap: 10px; align-items: center; }
    }
