/* assets/css/components/_services.css */

/* Seção de Serviços Interativa */
.service-item .progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background-color: #CB99FF;
    width: 0;
}

.service-item.active .progress-bar {
    width: 100%;
    transition: width 5s linear;
}

.service-item.active {
    background-color: rgba(255, 255, 255, 0.1);
}

.service-item.active h3 {
    color: #CB99FF;
}

.service-item .service-description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, margin-top 0.5s ease-in-out;
}

.service-item.active .service-description {
    margin-top: 0.5rem;
    /* 8px */
    max-height: 100px;
    /* Adjust as needed */
}

#service-image-container img {
    transition: opacity 0.5s ease-in-out;
}
