@charset "UTF-8";

@media screen and (min-width: 992px) {
    body {
        padding: 0;
    }

    main {
        max-width: 992px;
        display: flex;
        height: 450px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    #propaganda {
        display: flex;
        width: 100%;
        height: 100%;
    }

    .img {
        flex: 1;
        background-image: url('../images/image-product-desktop.jpg');
        background-size: cover;
        background-position: center;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        height: auto;
    }

    #info {
        flex: 1;
        justify-content: space-between;
        padding: 32px;
    }

    #info h1 {
        font-size: 2.2rem;
    }
     #info h2, #info h1, #info p, .preco, #btn-comprar {
        margin-bottom: 0; 
    }
    #info {
        gap: 20px; 
    }
}