﻿
#guias {
    font-family: 'Lora', Arial, sans-serif;
    font-size: 28px;
}

#guias > div {
    display: grid;
    grid-column-gap: 30px;
    grid-template-columns: 1fr 1fr;
    padding-bottom:10px;
}

.item_guia {
    position: relative;
    /*    width: 590px;*/
    height: 188px;
    color: #EEE5E4;
    background-color: #CD4335;
    margin-bottom:20px;
}

.item_guia > a {
   color: #CD4335;
}

.item_guia > a:hover {
    color: #EEE5E4;
}

.item_guia > a:link {
    color: #CD4335;
}

.item_guia_thumb {
    left: 0px;
    top: 5px;
    width: 315px;
    margin: 0px;
    height: 178px;
    position:absolute;
    overflow:hidden;
}

.item_guia_thumb > img {
    width: 100%;
    height: 100%;
        -moz-transition: 0.5s all ease;
        -webkit-transition: 0.5s all ease;
        -o-transition: 0.5s all ease;
        transition: 0.5s all ease;}

.item_guia_title {
    z-index: 100;
    left: 315px;
    right: 0px;
    top: 5px;
    margin: 0px;
    height: 178px;
    position: absolute;
    text-align: center;
    background-color: #DDD2CC;
    padding-left: 40px;
    padding-right: 5px;
}



.item_guia_title > div {
        position: relative;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
}

.item_guia_icn_info {
    z-index: 200;
    background-image: url("../img/btn_info_reposo.png");
    background-size: 70px 70px;
    position: absolute;
    left: 278px;
    top: 59px;
    width: 70px;
    height: 70px;
}




.item_guia > a:hover .item_guia_title {
    background-color: #CD4335;
    color: #EEE5E4;
}

.item_guia > a:hover .item_guia_icn_info {
    background-image: url("../img/btn_info_select.png");
}


.item_guia > a:hover .item_guia_thumb > img {
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
    -o-transform: scale(1.08);
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}

@media screen and (min-width: 950px) and (max-width: 1300px) {

    #guias {
        font-size: 20px;
    }

        #guias > div {
            display: grid;
            grid-column-gap: 30px;
            grid-template-columns: 1fr 1fr;
        }

    .item_guia {
        /*    width: 411px;*/
        height: 130px;
    }

    .item_guia_thumb {
        width: 212px;
        height: 120px;
    }

    .item_guia_title {
        left: 212px;
        height: 120px;
        padding-left: 40px;
    }

    .item_guia_icn_info {
        background-size: 70px 70px;
        left: 175px;
        top: 30px;
        width: 70px;
        height: 70px;
    }

}

@media screen and (max-width: 950px) {
    #guias {
        font-size: 17px;
    }

    #guias > div {
            display: grid;
            grid-column-gap: 20px;
            grid-template-columns: 1fr 1fr;
    }

    .item_guia {
        /*    width: 411px;*/
        height: 118px;
    }

    .item_guia_thumb {
        width: 192px;
        height: 108px;
    }

    .item_guia_title {
        left: 192px;
        height: 108px;
        padding-left: 32px;
    }

    .item_guia_icn_info {
        background-size: 56px 56px;
        left: 162px;
        top: 29px;
        width: 56px;
        height: 56px;
    }

}


@media screen and (max-width: 870px) {
    #guias > div {
        display: block;
    }

}

@media screen and (max-width: 480px) {


}


