#home-2 h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    padding: 45px 0px;
    margin-left: 5%;
    font-weight: 700;
    color: #6ca5a0;
}

#home-2 .owl-carousel {
    transform: none;
    margin: 0 auto;
    padding-bottom: 15px;
    max-width: 90%;
    font-family: 'Montserrat', sans-serif;
    touch-action: pan-y;
}

#home-2 .owl-carousel .owl-dots {
    display: block;
    text-align: center;
    margin-top: 20px;
}

#home-2 .owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 4px;
}

#home-2 .owl-carousel .owl-dots .owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(2, 102, 120, 0.469);
    transition: all 0.3s ease;
}

#home-2 .owl-carousel .owl-dots .owl-dot.active span {
    background: #045c59;
    transform: scale(1.2);
}

#home-2 .owl-carousel .owl-nav {
    display: none;
}

/* Estructura de Item */
#home-2 figure {
    position: relative;
    margin: 0;
}

#home-2 figure:before {
    display: block;
    content: "";
    width: 1px;
    height: 80%;
    background: #414f53;
    position: absolute;
    top: 10%;
    right: -10px; /* Ajustado para que no desborde */
}

#home-2 figcaption {
    position: absolute;
    left: 0;
    bottom: 15px;
    font-size: 14px;
    font-weight: 500;
    background: rgba(0,0,0,0.6);
    padding: 10px 25px;
    color: #FFF;
}

#home-2 figcaption div b {
    display: inline-block;
    font-size: 19px;
    border-bottom: solid 1px #fff;
    line-height: normal;
    margin-bottom: 5px;
    font-weight: 700;
    text-shadow: 0 0 5px #000;  
}

#home-2 a {
    text-decoration: none;
}

#home-2 .owl-carousel img {
    -webkit-user-drag: none;
    user-select: none;
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* =====================================================
   FIX RESPONSIVE
===================================================== */

@media (max-width: 991px) {
    /* Ocultamos la línea separadora en móvil para evitar desbordes */
    #home-2 figure:before {
        display: none;
    }
    
    #home-2 h2 {
        font-size: 32px;
        text-align: center;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    #home-2 .owl-carousel {
        max-width: 95%; /* Ocupa casi todo el ancho */
        transform: none !important; /* ELIMINADO EL TRANSLATE QUE ROMPÍA TODO */
    }

    #home-2 figcaption {
        padding: 10px;
        width: auto;
    }
    
    #home-2 figcaption div b {
        font-size: 17px;
    }
}