
.connector {
    width: 100px;
    height: 3px;
    background-color: #4299E1;
    margin: 0 auto;
}
.underline-custom {
    position: relative;
    text-decoration: none;
    color: #333; /* Cor do texto */
}

.underline-custom::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 3px; 
    background-color: #333; 
}

#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 5px;
    background-color: rgb(58, 133, 64);
    width: 0;
    z-index: 9999;
    transition: width 0.2s;
}

