/* Estilos para iconos de WhatsApp */
.wssp {
    font-size: 38px;
    margin-right: 20px;
    margin-top: 5px;
    color: #333;
    transition: all 0.3s ease-in-out;
}

.wssp:hover {
    color: #25D366;
    transform: scale(1.1);
}

/* Estilos para nombres de proyectos */
.Names h5 {
    font-size: 24px !important;
    font-weight: bold !important;
    color: #333;
    transition: all 0.3s ease-in-out;
    position: relative;
    cursor: pointer;
}

.Names h5:hover {
    background: linear-gradient(90deg, rgba(217, 68, 52, 1) 0%, rgba(226, 140, 39, 1) 52%, rgba(247, 200, 57, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-2px);
}

/* Efecto adicional para los nombres */
.Names h5::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(217, 68, 52, 1) 0%, rgba(226, 140, 39, 1) 52%, rgba(247, 200, 57, 1) 100%);
    transition: width 0.3s ease-in-out;
}

.Names h5:hover::after {
    width: 100%;
}

.portfolio-item {
    height: 560px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.owl-nav {
    position: absolute;
    bottom: 13%;
    right: 10%;
}

.logue {
    width: 250px;
}

@media screen and (max-width: 768px) {
    .owl-nav {
        display: inline !important;
    }

    .slider-fade .owl-theme .owl-nav [class*=owl-],
    .project-page .owl-theme .owl-nav [class*=owl-] {
        width: 50px;
        height: 50px;
        line-height: 35px;
        background: transparent;
        border-radius: 100%;
        color: rgba(255, 255, 255, 0.95);
        font-size: 16px;
        margin-right: 11px;
        cursor: pointer;
        border: 1px solid rgba(255, 255, 255, 0.3);
        transition: all 0.2s ease-in-out;
        transform: scale(1.0);
    }
    .logue {
        width: 180px;
    }
    
}