html,
body {
    scroll-behavior: smooth;
}

*{
    cursor: default;
}

a[href]{
    cursor: pointer;
}

#primary {
    padding: 3rem 1rem;
    margin: 0 auto;
}

footer{
    margin-top: 0 !important;
}

.bwb-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: inherit;
    padding: 2rem 1rem;
}

.bwb-glow-white {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

.bwb-glow-strong-white {
    filter:
        drop-shadow(0 0 5px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 15px rgba(255, 255, 255, 0.7)) drop-shadow(0 0 25px rgba(255, 255, 255, 0.4));
}

.bwb-glow-black {
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
}

.bwb-glow-strong-black {
    filter:
        drop-shadow(0 0 5px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 15px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 25px rgba(0, 0, 0, 0.4));
}

.bwb-highlight-strong {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(0, 0, 0, 0.75);
    padding: 1.8rem 2.2rem;
    border-radius: 10px;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.4),
        inset 0 0 25px rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    color: #fff;
    max-width: 750px;
    margin: 0 auto;
}

.bwb-highlight-text {
    text-shadow:
        0 2px 3px rgba(0, 0, 0, 0.55),
        0 0 8px rgba(0, 0, 0, 0.35);
}

.bwb-highlight-box {
    background: rgba(100, 100, 100, 0.5);
    /* leve transparência branca */
    border: 1px solid rgba(0, 0, 0, 0.55);
    padding: 1.6rem 2rem;
    border-radius: 8px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    max-width: 90vw;
    margin: 0 auto;
    color: #fff;
}

.logo-max {
    width: 100vw;
    height: inherit !important;
    min-height: inherit !important;
    padding-top: 5%;
    background-repeat: no-repeat !important;
    background-position: top center !important;
}

.footer-element{
    margin: 0;
    color: #fff;
}

/* ===========================
   DESKTOP
   =========================== */

@media (min-width: 769px) {
    .desktop-right {
        max-width: 50vw;
        margin-left: auto;
        margin-right: 1%;
    }

    .desktop-left {
        max-width: 50vw;
        margin-left: 1%;
        margin-right: auto;
    }

    .desktop-center {
        max-width: 50vw;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===========================
   MOBILE
   =========================== */

@media (max-width: 768px) {
    .bwb-glow-strong {
        position: relative;
        display: inline-block;
    }

    .bwb-glow-strong::after {
        content: "";
        position: absolute;
        inset: -8px;
        /* expande para criar aura */
        background-image: inherit;
        background-size: inherit;
        background-repeat: no-repeat;
        background-position: center;
        filter: blur(18px) brightness(1.4);
        opacity: 0.9;
        z-index: -1;
    }
}