.elementor-kit-12{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-12 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS */<style>
    #ms-horizontal-pricing {
        width: 100%;
        max-width: 600px;
        margin: 5px auto;
        font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 5px; /* Reduzido para não empurrar o conteúdo */
        box-sizing: border-box;
        overflow: hidden; /* Garante que nada escape do container pai */
    }

    .ms-card {
        display: flex;
        align-items: center;
        background: #ffffff;
        border: 2px solid #e2e8f0;
        border-radius: 15px;
        padding: 15px;
        gap: 15px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        box-sizing: border-box;
        position: relative;
        width: 100%;
    }

    .ms-card.featured-main {
        border: 2px solid #BE2626;
        box-shadow: 0 8px 25px rgba(190, 38, 38, 0.15);
        background: #FFFDFD;
        z-index: 2;
        /* Removido o scale em telas pequenas para evitar cortes */
    }

    .card-image-container {
        flex: 0 0 100px; /* Tamanho fixo menor para dar ar ao texto */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card-image-container img {
        width: 100%;
        max-width: 90px;
        height: auto;
        filter: drop-shadow(0 5px 15px rgba(0,0,0,0.08));
    }

    .card-content {
        flex: 1;
        min-width: 0; /* Essencial para evitar que o flex-item cresça além do limite */
        display: flex;
        flex-direction: column;
    }

    .card-tag {
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        color: #94a3b8;
        margin-bottom: 2px;
    }

    .featured-main .card-tag { color: #BE2626; }

    .card-title {
        font-size: 17px;
        font-weight: 800;
        color: #111;
        margin: 0 0 4px 0;
        white-space: nowrap; /* Evita quebra de linha feia no título */
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .card-prices {
        display: flex;
        align-items: baseline;
        gap: 6px;
        flex-wrap: wrap; /* Permite que o preço caia se não houver espaço */
    }

    .old-price { font-size: 12px; color: #94a3b8; text-decoration: line-through; }
    .new-price { font-size: 24px; color: #111; font-weight: 900; }
    .featured-main .new-price { color: #BE2626; }

    .unit-info { font-size: 12px; color: #64748b; margin-top: 2px; }
    .highlight-unit { font-weight: 800; color: #BE2626; }

    .card-action-zone {
        flex: 0 0 110px;
        display: flex;
        align-items: center;
    }

    .btn-buy {
        background: #BE2626;
        color: #ffffff !important;
        text-decoration: none;
        padding: 10px 5px;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 800;
        width: 100%;
        text-align: center;
        transition: 0.3s;
    }

    /* CSS PODEROSO PARA MOBILE */
    @media (max-width: 480px) {
        #ms-horizontal-pricing { padding: 10px; }
        
        .ms-card {
            flex-direction: column; /* Transforma em vertical no celular */
            text-align: center;
            padding: 20px;
            gap: 10px;
        }

        .card-image-container {
            flex: 0 0 auto;
            width: 100%;
        }

        .card-image-container img { max-width: 120px; }

        .card-prices { justify-content: center; }

        .card-action-zone {
            width: 100%;
            flex: 0 0 auto;
            margin-top: 5px;
        }

        .btn-buy {
            padding: 14px 0;
            font-size: 15px; /* Botão maior e mais clicável no polegar */
        }

        .ms-card.featured-main {
            transform: none; /* Evita que o card saia da tela lateralmente */
        }
        
        .card-title {
            white-space: normal; /* Permite quebrar linha se for vertical */
        }
    }
</style>/* End custom CSS */