.section-produto-promocional{
    display:flex;flex-flow:column;width:100vw;min-height:100vh;max-height:100vh;position:fixed;top:0;left:0;z-index:12;background-color:#fafafa;
}
    .produto-promocional{
        display:flex;flex-flow:column;height:max-content;margin:auto 16px;z-index:13;background-color: #ffffff;border:solid 1px #e2e8f0;border-radius:16px;
    }
        .produto-promocional-title{
            font-size:24px;color:#171717;font-weight:600;margin:20px auto 5px 20px;font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;max-width: 80%;
            white-space:nowrap;text-overflow:ellipsis;overflow:hidden;
        }
        .produto-promocional-midia{
            min-width:100%;max-width:100%;min-height:412px;max-height:412px;display:flex;align-items:center;margin:0;
        }
            .produto-promocional-midia > img{
                min-width:100%;max-width:100%;max-height:412px;object-fit:contain;margin: 0 auto;border-bottom:solid 1px #e2e8f0;
            }
            .produto-promocional-midia > video{
                max-width:100%;max-height:412px;object-fit:contain;margin: 0 auto;
            }
        .produto-promocional-price{
            font-size:20px;color:#404040;font-weight:400;margin:0 auto 0 20px;font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }
        
        .produto-promocional > button{
            margin:20px;max-width:100%;height:45px;background-color:#171717;border:none;border-radius:14px;cursor:pointer;color:#ffffff;font-size:16px;font-weight:600;
        }

@media only screen and (min-width: 913px){/*desktop*/

    .produto-promocional{
        max-width:380px;margin:auto;
    }

}