
        .menu__link {
            color: #fff;
            line-height: 1.3;
            position: relative;
        }

        .menu__link::before {
            content: '';
            width: 100%;
            height: 2px;
            border-radius: 2px;
            background-color: #fff;
            position: absolute;
            bottom: -.0rem;
            left: 0;
            transition: transform .4s, opacity .4s;
            opacity: 0;
        }

        .menu__link:hover::before {
            transform: translateY(-.25rem);
            opacity: 1;
        }

        .blurbg {
            backdrop-filter: blur(5px);
        }

        .detail {
            position: fixed;
            bottom: 4rem;
            text-align: center;
        }

        .dropdown-divider-white {
            border-top: 1px solid #fff;
            /* Color de la línea */
        }

        .button2 {
            display: inline-block;
            transition: all 0.2s ease-in;
            position: relative;
            overflow: hidden;
            z-index: 1;
            color: #090909;
            padding: 0.2em 2.9em 0.2em 1.4em;
            font-size: 15px;
            background: #00906c;
            border: 1px solid #00906c;

        }

        .button2>svg {
            height: 30px;
            position: absolute;
            padding: 0px 5px;
            margin-top: -4px;
        }

        .button2:active {
            color: #15534f;
            box-shadow: inset 4px 4px 12px #c5c5c5,
                inset -4px -4px 12px #ffffff;
        }

        .button2:before {
            content: "";
            position: absolute;
            left: 50%;
            transform: translateX(-50%) scaleY(1) scaleX(1.25);
            top: 100%;
            width: 140%;
            height: 180%;
            background-color: rgba(0, 0, 0, 0.05);
            display: block;
            transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
            z-index: -1;
        }

        .button2:after {
            content: "";
            position: absolute;
            left: 55%;
            transform: translateX(-50%) scaleY(1) scaleX(1.45);
            top: 180%;
            width: 160%;
            height: 190%;
            background-color: #15534f;
            display: block;
            transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
            z-index: -1;
        }

        .button2:hover {
            color: #ffffff;
            border: 1px solid #15534f;
        }

        .button2:hover:before {
            top: -35%;
            background-color: #15534f;
            transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
        }

        .button2:hover:after {
            top: -45%;
            background-color: #15534f;
            transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
        }