/* ======== MENU PRINCIPAL - LINHA VERDE NO HOVER ======== */
.sp-megamenu-parent>li>a {
    position: relative;
    display: inline-block;
    padding: 15px 20px;
    color: #0d3b2e;
    /* cor do texto normal (verde escuro do seu site) */
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Cor do texto no hover (se quiser mudar ligeiramente o tom) */
.sp-megamenu-parent>li:hover>a,
.sp-megamenu-parent>li.active>a {
    color: #0d3b2e;
    background-color: transparent !important;
    /* remove fundo verde */
}

/* Linha superior */
.sp-megamenu-parent>li>a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #00b050;
    /* verde da linha */
    transition: width 0.3s ease;
}

/* Quando o mouse passa, a linha aparece */
.sp-megamenu-parent>li:hover>a::before,
.sp-megamenu-parent>li.active>a::before {
    width: 100%;
}