.destinos_inc{
    flex: 0 0 100%;
    margin-bottom: 2rem;
    position: relative;
    border-radius: var(--image-border-radius);
    overflow: hidden;
    display: block;
    border: 1px solid #ededed;
    background: #666;
}

.destinos_inc .imagen{
    padding-bottom: 56.25%;
    display: block;
}

.destinos_inc .imagen .imagen-inner{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.destinos_inc .imagen .imagen-inner img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1s ease;
}

.destinos_inc:hover .imagen .imagen-inner img{
    transform: scale(1.1);
}

.destinos_inc .degradado{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    background: linear-gradient(180deg, transparent 63%, rgb(0, 0, 0) 100%);
    z-index: 2;
}

.destinos-block .destinos_inc h3{
    position: absolute;
    bottom: 0.5rem;
    color: white;
    font-size: 1.125rem;
    left: 1.25rem;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
    z-index: 3;
}
