#shop {
    background-color: #3f3c3d;
    background-image: url("../img/bg-shop.jpg");
    background-position: center;
    background-repeat: no-repeat;
}

#shop h2 {
    display: inline-block;
    position: absolute;
    bottom: 10px;
    right: 50px;
    width: 270px;
    line-height: 68px;
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    color: #ffffff;
    letter-spacing: 2px;
}

#shop h2 span {
    color: #ed2f59;
}

#shop .item-shop {
    display: block;
    margin-bottom: 90px;
}

#shop .item-shop:last-child {
    margin-bottom: 0px;
}

#shop p {
    display: none;
    opacity: 0;
    margin-left: 20px;
    font-family: 'Crete Round', serif;
    font-size: 20px;
    font-style: italic;
    color: #ed2f59;
}

#shop .item-shop:hover p {
    display: inline-block;
    opacity: 1;

    transition: all 1s ease-in-out;
}

/*//////////////////////////////////////////////////*/

/*			 Desktop Atual acima de 1440px			*/

/*//////////////////////////////////////////////////*/

@media (min-width: 1440px) {}

/*//////////////////////////////////////////////////*/

/*			 Desktop Atual acima de 1200px			*/

/*//////////////////////////////////////////////////*/

@media (min-width: 1200px) and (max-width: 1439px) {}

/*//////////////////////////////////////////////////*/

/*			            Tablets 					*/

/*//////////////////////////////////////////////////*/

@media (min-width: 992px) and (max-width: 1199px) {}

/*//////////////////////////////////////////////////*/

/*			            Tablets 					*/

/*//////////////////////////////////////////////////*/

@media (min-width: 768px) and (max-width: 991px) {
    #shop h2 {
        bottom: 20px;
        right: 30px;
        width: 270px;
        line-height: 55px;
        font-size: 40px;
    }
    #shop p {
        margin-top: 10px;
    }
}

/*//////////////////////////////////////////////////*/

/*	       Smartphones e Tablets Menores			*/

/*//////////////////////////////////////////////////*/

@media (min-width: 576px) and (max-width: 767px) {
    #shop .item-shop img {
        max-width: 100%;
    }
    #shop h2 {
        width: auto;
    }
    #shop p {
        margin-left: 0px;
        font-size: 20px;
        margin-top: 10px;
    }
}

/*//////////////////////////////////////////////////*/

/*	       Smartphones e Tablets Menores			*/

/*//////////////////////////////////////////////////*/

@media (max-width: 575px) {
    #shop {
        padding: 60px 0 0px;
    }
    #shop h2 {
        position: initial;
        width: 100%;
        line-height: 58px;
        font-size: 48px;
        letter-spacing: 2px;
        margin-bottom: 40px;
    }
    #shop h2 br {
        display: none;
    }
    #shop h2 br:first-child {
        display: block;
    }
    #shop p {
        margin-left: 0;
        font-size: 16px;
        margin-top: 10px;
    }
    #shop .item-shop {
        width: 190px;
        margin: 0 auto 30px;
    }
    #shop .item-shop img {
        width: 100%;
    }
}