  /* =========================================
       CONTENEDOR MEGA MENU MINIMALISTA
    ========================================= */

    .sp-megamenu-parent .sp-dropdown {

        background: #ffffff;

        border: 0;

        animation: megaFade .25s ease;
    }

    /* ANIMACIÓN SUAVE ORIGINAL */

    @keyframes megaFade {

        from {
            opacity: 0;
            transform: translateY(8px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* =========================================
   LINKS DEL MEGA MENU
	========================================= */

	.sp-megamenu-parent .sp-dropdown li.sp-menu-item a {

	    display: flex;

	    align-items: center;

	    gap: .55rem;

	    color: #2f2f2f;

	    font-size: .96rem;

	    font-weight: 400;

	    line-height: 1.35;

	    padding: .45rem .9rem;

	    border-radius: 10px;

	    text-decoration: none;

	    position: relative;

	    overflow: hidden;

	    transition:
	        background .25s ease,
	        color .25s ease,
	        padding-left .32s cubic-bezier(.22,.61,.36,1);
	}

	/* VIÑETA */

	.sp-megamenu-parent .sp-dropdown li.sp-menu-item a::before {

	    content: "";

	    width: 6px;

	    height: 6px;

	    min-width: 6px;

	    border-radius: 50%;

	    background: #67b26f;

	    flex-shrink: 0;

	    transition:
	        opacity .22s ease,
	        transform .28s ease;
	}

	/* HOVER SUTIL */

	.sp-megamenu-parent .sp-dropdown li.sp-menu-item a:hover {

	    background: #eef7f2;

	    color: #0b6b4b;

	    padding-left: 1.15rem;
	}

	/* OCULTA VIÑETA */

	.sp-megamenu-parent .sp-dropdown li.sp-menu-item a:hover::before {

	    opacity: 0;

	    transform: translateX(-5px) scale(0);
	}

    /* FOCUS ACCESIBLE */

    .sp-megamenu-parent .sp-dropdown li.sp-menu-item a:focus {

        outline: 3px solid rgba(11,107,75,.18);

        outline-offset: 2px;

        background: #eef7f2;

        color: #0b6b4b;

        border-radius: 10px;
    }

    /* =========================================
       TITULOS DE COLUMNAS
    ========================================= */

    .sp-megamenu-parent .sp-dropdown .sp-module-title,
    .sp-megamenu-parent .sp-dropdown li.sp-menu-item > a.sp-group-title {

        font-size: .95rem;

        font-weight: 700;

        text-transform: uppercase;

        letter-spacing: .3px;

        color: #14532d;

        margin-bottom: 1rem;

        padding-bottom: .6rem;

        border-bottom: 2px solid #dfe9e4;
    }