.imgFondo {
    position: relative;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    min-height: 350px;
}

.item-seguro .imgFondo img {
    position: relative;
    width: 100%;
    min-height: 350px;
    left: 0px;
    top: 0px;
    z-index: -1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.item-seguro .imgFondo .txtSeguro {
    position: absolute;
    z-index: 1;
    width: 100%;
    text-align: center;
    color: whitesmoke;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 5px;
}

.item-seguro .imgFondo .txtSeguro .titSeg {
    font-size: 26px;
    font-weight: 600;
    margin: 0px 0px 8px 0px;
}

.item-seguro .imgFondo .txtSeguro .descSeg {
    line-height: 25px;
    font-weight: 500;
}

.item-seguro .imgFondo .txtSeguro .descSegAd {
    line-height: 25px;
    font-weight: 500;
    display: none;
}

.item-seguro .imgFondo .txtSeguro .btn {
    margin-top: 10px;
    cursor: pointer;
    background: rgba(0, 0, 0, .5);
    color: white;
    font-size: 15px;
    border-radius: 0;
    border: 3px solid white;
    padding: 5px 45px;
    display: none;

}

.item-seguro .imgFondo .txtSeguro .btnn {
    cursor: pointer;
    position: relative;
    padding: 5px 30px;
    background: white;
    color: black;
    font-size: 15px;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 8px;
    transition: all 1s;

    &:after,
    &:before {
    content: " ";
    width: 10px;
    height: 10px;
    position: absolute;
    border: 0px solid black;
    transition: all 1s;
    }

    &:after {
    top: -1px;
    left: -1px;
    border-top: 5px solid black;
    border-left: 5px solid black;
    }

    &:before {
    bottom: -1px;
    right: -1px;
    border-bottom: 5px solid black;
    border-right: 5px solid black;
    }

    &:hover {
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
    background: rgba(0, 0, 0, .5);
    color: white;

    &:before,
    &:after {
        width: 100%;
        height: 100%;
        border-color: white;
    }
    }
}

.item-seguro :hover .titSeg, .item-seguro :hover .descSeg {
    display: none ;
}

.item-seguro :hover .descSegAd, .item-seguro :hover .btn {
    display: inline !important;
}