/* FUTERS 84 — cabeçalho com submenu de próximos jogos e conta administrativa limpa */
#cabecalhoSite,
#cabecalhoSite * {
    box-sizing: border-box;
}

#cabecalhoSite {
    position: sticky;
    top: 0;
    z-index: 10000;
    width: 100%;
    min-height: 76px;
    visibility: hidden;
    border-bottom: 1px solid #dce4ec;
    background: #fff;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#cabecalhoSite.is-ready {
    visibility: visible;
}

#cabecalhoSite[hidden] {
    display: block !important;
}

#cabecalhoSite select {
    display: none !important;
}

#cabecalhoSite .futers-site-header {
    width: 100%;
    border-bottom: 1px solid #dce4ec;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 3px 14px rgba(20, 35, 50, .045);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

#cabecalhoSite .futers-site-header__inner {
    width: min(calc(100% - 36px), 1440px);
    min-height: 76px;
    display: grid;
    grid-template-columns: minmax(190px, auto) minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    margin: 0 auto;
}

#cabecalhoSite .futers-site-brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #142231;
    text-decoration: none;
}

#cabecalhoSite .futers-site-brand__mark {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 7px;
    background: #096eb7;
    color: #fff;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .02em;
    box-shadow: 0 6px 16px rgba(9, 110, 183, .14);
}

#cabecalhoSite .futers-site-brand__text {
    min-width: 0;
    display: grid;
    gap: 2px;
    line-height: 1.1;
}

#cabecalhoSite .futers-site-brand__text strong {
    color: #142231;
    font-size: 1.08rem;
    font-weight: 820;
    letter-spacing: -.01em;
}

#cabecalhoSite .futers-site-brand__text small {
    color: #718094;
    font-size: .75rem;
    white-space: nowrap;
}

#cabecalhoSite .futers-site-nav {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

#cabecalhoSite .futers-site-nav__link,
#cabecalhoSite .futers-site-members__trigger {
    appearance: none;
    -webkit-appearance: none;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 12px;
    margin: 0;
    border: 1px solid transparent;
    border-radius: 7px;
    background: transparent;
    color: #617185;
    font: inherit;
    font-size: .91rem;
    font-weight: 720;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: none;
    transition: color .16s ease, background .16s ease, border-color .16s ease;
}

#cabecalhoSite .futers-site-nav__link:hover,
#cabecalhoSite .futers-site-members__trigger:hover,
#cabecalhoSite .futers-site-members__trigger[aria-expanded="true"],
#cabecalhoSite .futers-site-nav__link.is-active,
#cabecalhoSite .futers-site-members.is-active > .futers-site-members__trigger {
    border-color: rgba(9, 110, 183, .08);
    background: #edf6fd;
    color: #005ca8;
}

#cabecalhoSite .futers-site-nav__link.is-active,
#cabecalhoSite .futers-site-members.is-active > .futers-site-members__trigger {
    position: relative;
}

#cabecalhoSite .futers-site-nav__link.is-active::after,
#cabecalhoSite .futers-site-members.is-active > .futers-site-members__trigger::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 2px;
    border-radius: 2px;
    background: #096eb7;
}

#cabecalhoSite .futers-site-members {
    position: relative;
    flex: 0 0 auto;
}

#cabecalhoSite .futers-site-members__badge {
    width: 16px;
    height: 16px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(9, 110, 183, .11);
    color: #096eb7;
    font-size: .42rem;
}

#cabecalhoSite .futers-site-members__trigger > svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .16s ease;
}

#cabecalhoSite .futers-site-members__trigger[aria-expanded="true"] > svg {
    transform: rotate(180deg);
}

#cabecalhoSite .futers-site-members__panel,
#cabecalhoSite .futers-site-account__panel {
    position: absolute;
    top: calc(100% + 10px);
    z-index: 10020;
    overflow: hidden;
    border: 1px solid #dce4ec;
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 24px 64px rgba(20, 35, 50, .18);
}

#cabecalhoSite .futers-site-members__panel {
    left: 50%;
    width: 316px;
    transform: translateX(-50%);
}

#cabecalhoSite .futers-site-account__panel {
    right: 0;
    width: min(292px, calc(100vw - 28px));
}

#cabecalhoSite .futers-site-members__panel[hidden],
#cabecalhoSite .futers-site-account__panel[hidden] {
    display: none !important;
}

#cabecalhoSite .futers-site-menu__header {
    display: grid;
    gap: 3px;
    padding: 14px 15px;
    border-bottom: 1px solid #e6ecf2;
    background: #f8fafc;
}

#cabecalhoSite .futers-site-menu__header strong {
    overflow: hidden;
    color: #172433;
    font-size: .92rem;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#cabecalhoSite .futers-site-menu__header small {
    overflow: hidden;
    color: #718094;
    font-size: .75rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#cabecalhoSite .futers-site-menu__links,
#cabecalhoSite .futers-site-account__links {
    display: grid;
    gap: 2px;
    padding: 7px;
}

#cabecalhoSite .futers-site-menu__links a,
#cabecalhoSite .futers-site-menu__links button {
    appearance: none;
    -webkit-appearance: none;
    min-height: 52px;
    display: grid;
    grid-template-columns: 27px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 7px 10px;
    margin: 0;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: #314155;
    font: inherit;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

#cabecalhoSite .futers-site-menu__links a:hover,
#cabecalhoSite .futers-site-menu__links button:hover,
#cabecalhoSite .futers-site-account__links a:hover,
#cabecalhoSite .futers-site-account__links button:hover {
    background: #edf6fd;
    color: #005ca8;
}

#cabecalhoSite .futers-site-menu__links svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#cabecalhoSite .futers-site-menu__links span {
    min-width: 0;
    display: grid;
    gap: 2px;
}

#cabecalhoSite .futers-site-menu__links strong {
    overflow: hidden;
    font-size: .83rem;
    font-weight: 760;
    line-height: 1.18;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#cabecalhoSite .futers-site-menu__links small {
    overflow: hidden;
    color: #788698;
    font-size: .71rem;
    font-weight: 500;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#cabecalhoSite .futers-menu-separador {
    height: 1px;
    margin: 5px 7px;
    background: #e6ecf2;
}

#cabecalhoSite .futers-site-account__links a,
#cabecalhoSite .futers-site-account__links button {
    appearance: none;
    -webkit-appearance: none;
    min-height: 41px;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 11px;
    margin: 0;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #314155;
    font: inherit;
    font-size: .84rem;
    font-weight: 680;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

#cabecalhoSite .futers-site-account__links button[data-futers-sair] {
    color: #c92b38;
}

#cabecalhoSite .futers-site-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
}

#cabecalhoSite .futers-site-icon {
    appearance: none;
    -webkit-appearance: none;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    padding: 0;
    border: 1px solid #d9e1e8;
    border-radius: 50%;
    background: #fff;
    color: #172433;
    font: inherit;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(20, 35, 50, .055);
    transition: transform .16s ease, color .16s ease, background .16s ease, border-color .16s ease;
}

#cabecalhoSite .futers-site-icon:hover,
#cabecalhoSite .futers-site-icon[aria-expanded="true"] {
    transform: translateY(-1px);
    border-color: #096eb7;
    background: #edf6fd;
    color: #096eb7;
}

#cabecalhoSite .futers-site-icon--whatsapp {
    border-color: rgba(20, 139, 77, .22);
    background: #eaf8f0;
    color: #148b4d;
}

#cabecalhoSite .futers-site-icon--whatsapp:hover {
    border-color: #148b4d;
    background: #148b4d;
    color: #fff;
}

#cabecalhoSite .futers-site-icon svg {
    width: 22px;
    height: 22px;
    display: block;
    fill: currentColor;
}

#cabecalhoSite .futers-site-account {
    position: relative;
}

#cabecalhoSite .futers-site-mobile {
    appearance: none;
    -webkit-appearance: none;
    width: 42px;
    height: 42px;
    display: none;
    place-items: center;
    gap: 4px;
    padding: 10px;
    border: 1px solid #d9e1e8;
    border-radius: 7px;
    background: #fff;
    cursor: pointer;
}

#cabecalhoSite .futers-site-mobile span {
    width: 18px;
    height: 2px;
    display: block;
    border-radius: 2px;
    background: #172433;
}

@media (max-width: 1180px) and (min-width: 981px) {
    #cabecalhoSite .futers-site-header__inner {
        gap: 12px;
    }

    #cabecalhoSite .futers-site-brand__text small {
        display: none;
    }

    #cabecalhoSite .futers-site-nav__link,
    #cabecalhoSite .futers-site-members__trigger {
        padding: 0 9px;
        font-size: .84rem;
    }
}

@media (max-width: 980px) {
    #cabecalhoSite .futers-site-header__inner {
        min-height: 68px;
        grid-template-columns: auto 1fr auto;
        gap: 10px;
    }

    #cabecalhoSite .futers-site-mobile {
        display: grid;
        justify-self: end;
    }

    #cabecalhoSite .futers-site-nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        display: none;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        padding: 9px;
        border-bottom: 1px solid #dce4ec;
        background: #fff;
        box-shadow: 0 18px 42px rgba(20, 35, 50, .14);
    }

    #cabecalhoSite .futers-site-nav.is-open {
        display: grid;
        gap: 2px;
    }

    #cabecalhoSite .futers-site-nav__link,
    #cabecalhoSite .futers-site-members__trigger {
        width: 100%;
        min-height: 45px;
        justify-content: flex-start;
        padding: 0 12px;
    }

    #cabecalhoSite .futers-site-nav__link.is-active::after,
    #cabecalhoSite .futers-site-members.is-active > .futers-site-members__trigger::after {
        display: none;
    }

    #cabecalhoSite .futers-site-members {
        width: 100%;
    }

    #cabecalhoSite .futers-site-members__trigger > svg {
        margin-left: auto;
    }

    #cabecalhoSite .futers-site-members__panel {
        position: static;
        width: 100%;
        transform: none;
        border: 0;
        border-left: 2px solid #d8e5f2;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    #cabecalhoSite .futers-site-members__panel .futers-site-menu__header {
        display: none;
    }

    #cabecalhoSite .futers-site-menu__links {
        padding: 3px 0 5px 10px;
    }

    #cabecalhoSite .futers-site-actions {
        grid-column: 3;
    }
}

@media (max-width: 600px) {
    #cabecalhoSite .futers-site-header__inner {
        width: min(calc(100% - 22px), 1440px);
    }

    #cabecalhoSite .futers-site-brand__text {
        display: none;
    }

    #cabecalhoSite .futers-site-brand__mark,
    #cabecalhoSite .futers-site-mobile,
    #cabecalhoSite .futers-site-icon {
        width: 39px;
        height: 39px;
    }

    #cabecalhoSite .futers-site-actions {
        gap: 6px;
    }
}

/* FUTERS 73 — a altura do cabeçalho é reservada desde o primeiro paint. */

#cabecalhoSite .futers-site-account__trigger {
    overflow: hidden;
}

#cabecalhoSite .futers-site-account__avatar {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 50%;
}

#cabecalhoSite .futers-site-account__avatar > svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#cabecalhoSite .futers-site-account__identity,
#cabecalhoSite .futers-site-account__chevron {
    display: none;
}

#cabecalhoSite .futers-site-account__trigger.is-authenticated {
    width: auto;
    min-width: 150px;
    max-width: 210px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 9px;
    padding: 4px 9px 4px 5px;
    border-radius: 24px;
}

#cabecalhoSite .futers-site-account__trigger.is-authenticated.is-premium {
    border-color: rgba(9, 110, 183, .24);
    background: linear-gradient(180deg, #fff 0%, #f4f9fd 100%);
}

#cabecalhoSite .futers-site-account__trigger.is-authenticated.is-admin {
    border-color: rgba(9, 110, 183, .24);
    background: linear-gradient(180deg, #fff 0%, #edf6fd 100%);
}

#cabecalhoSite .futers-site-account__trigger.is-authenticated .futers-site-account__avatar {
    width: 36px;
    height: 36px;
    padding: 3px;
    border: 1px solid rgba(9, 110, 183, .14);
    background: #fff;
}

#cabecalhoSite .futers-site-account__trigger.is-authenticated .futers-site-account__avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

#cabecalhoSite .futers-site-account__identity[hidden] {
    display: none !important;
}

#cabecalhoSite .futers-site-account__trigger.is-authenticated .futers-site-account__identity {
    min-width: 0;
    display: grid;
    flex: 1 1 auto;
    gap: 1px;
    text-align: left;
    line-height: 1.08;
}

#cabecalhoSite .futers-site-account__identity strong,
#cabecalhoSite .futers-site-account__identity small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#cabecalhoSite .futers-site-account__identity strong {
    color: #172433;
    font-size: .77rem;
    font-weight: 820;
}

#cabecalhoSite .futers-site-account__identity small {
    color: #096eb7;
    font-size: .66rem;
    font-weight: 720;
}

#cabecalhoSite .futers-site-account__trigger.is-authenticated .futers-site-account__chevron {
    width: 13px;
    height: 13px;
    display: block;
    flex: 0 0 auto;
    fill: none;
    stroke: #718094;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .16s ease;
}

#cabecalhoSite .futers-site-account__trigger.is-authenticated[aria-expanded="true"] .futers-site-account__chevron {
    transform: rotate(180deg);
}

#cabecalhoSite .futers-site-account__admin-mark {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #096eb7;
    color: #fff;
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .02em;
}

#cabecalhoSite .futers-site-account__fallback {
    font-size: 1.08rem;
    line-height: 1;
}

#cabecalhoSite .futers-site-account__clubes {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

#cabecalhoSite .futers-site-account__clubes img {
    position: absolute;
    top: 50%;
    width: 22px !important;
    height: 22px !important;
    padding: 1px;
    transform: translateY(-50%);
    border: 1px solid #dce4ec;
    border-radius: 50%;
    background: #fff;
}

#cabecalhoSite .futers-site-account__clubes img:first-child {
    left: 0;
    z-index: 2;
}

#cabecalhoSite .futers-site-account__clubes img:last-child {
    right: 0;
    z-index: 1;
}

/* A navegação entre documentos não usa animação nem fotografia da página anterior.
   Início, Futebol gaúcho e Próximos jogos continuam com rolagem suave na própria home. */

@media (max-width: 1240px) and (min-width: 981px) {
    #cabecalhoSite .futers-site-account__trigger.is-authenticated {
        width: 42px;
        min-width: 42px;
        height: 42px;
        padding: 3px;
    }

    #cabecalhoSite .futers-site-account__trigger.is-authenticated .futers-site-account__identity,
    #cabecalhoSite .futers-site-account__trigger.is-authenticated .futers-site-account__chevron {
        display: none;
    }

    #cabecalhoSite .futers-site-account__trigger.is-authenticated .futers-site-account__avatar {
        width: 34px;
        height: 34px;
    }
}

@media (max-width: 600px) {
    #cabecalhoSite { min-height: 68px; }

    #cabecalhoSite .futers-site-account__trigger.is-authenticated {
        width: 39px;
        min-width: 39px;
        height: 39px;
        padding: 3px;
    }

    #cabecalhoSite .futers-site-account__trigger.is-authenticated .futers-site-account__identity,
    #cabecalhoSite .futers-site-account__trigger.is-authenticated .futers-site-account__chevron {
        display: none;
    }

    #cabecalhoSite .futers-site-account__trigger.is-authenticated .futers-site-account__avatar {
        width: 31px;
        height: 31px;
    }
}


/* Marca FUTERS: silhueta externa do Rio Grande do Sul (v75) */
#cabecalhoSite .futers-site-brand__mark {
    position: relative;
    width: 48px;
    height: 48px;
    overflow: visible;
    border-radius: 50%;
    background: linear-gradient(145deg, #0b7fca 0%, #075da7 58%, #063f78 100%);
    box-shadow:
        0 8px 22px rgba(5, 92, 168, .20),
        inset 0 1px 0 rgba(255, 255, 255, .24);
    isolation: isolate;
}

#cabecalhoSite .futers-site-brand__mark::after {
    content: "";
    position: absolute;
    inset: 3px;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: inherit;
    pointer-events: none;
}

#cabecalhoSite .futers-site-brand__emblem {
    width: 43px;
    height: 43px;
    display: block;
    overflow: visible;
}

#cabecalhoSite .futers-site-brand__emblem-ring {
    fill: none;
    stroke: rgba(255, 255, 255, .18);
    stroke-width: 1.4;
}

#cabecalhoSite .futers-site-brand__emblem-state {
    fill: rgba(255, 255, 255, .97);
    stroke: rgba(255, 255, 255, .99);
    stroke-width: .8;
    stroke-linejoin: round;
    filter: drop-shadow(0 2px 3px rgba(4, 45, 82, .24));
}

#cabecalhoSite .futers-site-brand:hover .futers-site-brand__mark {
    transform: translateY(-1px) rotate(-1deg);
    box-shadow:
        0 10px 26px rgba(5, 92, 168, .24),
        inset 0 1px 0 rgba(255, 255, 255, .28);
}

#cabecalhoSite .futers-site-brand__mark {
    transition: transform .18s ease, box-shadow .18s ease;
}

@media (max-width: 600px) {
    #cabecalhoSite .futers-site-brand__mark {
        width: 43px;
        height: 43px;
    }

    #cabecalhoSite .futers-site-brand__emblem {
        width: 39px;
        height: 39px;
    }
}

/* Submenu de Próximos jogos */
#cabecalhoSite .futers-site-dropdown {
    position: relative;
    flex: 0 0 auto;
}

#cabecalhoSite .futers-site-dropdown__trigger > svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .16s ease;
}

#cabecalhoSite .futers-site-dropdown__menu {
    position: absolute;
    z-index: 120;
    top: calc(100% + 8px);
    left: 50%;
    width: 190px;
    padding: 7px;
    border: 1px solid #dce5ee;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(20, 35, 50, .16);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -6px);
    pointer-events: none;
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

#cabecalhoSite .futers-site-dropdown__menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 10px;
}

#cabecalhoSite .futers-site-dropdown:hover .futers-site-dropdown__menu,
#cabecalhoSite .futers-site-dropdown:focus-within .futers-site-dropdown__menu,
#cabecalhoSite .futers-site-dropdown.is-open .futers-site-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

#cabecalhoSite .futers-site-dropdown:hover .futers-site-dropdown__trigger > svg,
#cabecalhoSite .futers-site-dropdown:focus-within .futers-site-dropdown__trigger > svg,
#cabecalhoSite .futers-site-dropdown.is-open .futers-site-dropdown__trigger > svg {
    transform: rotate(180deg);
}

#cabecalhoSite .futers-site-dropdown__menu a {
    min-height: 45px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    border-radius: 9px;
    color: #26394d;
    font-size: .9rem;
    font-weight: 760;
    text-decoration: none;
    transition: background .15s ease, color .15s ease;
}

#cabecalhoSite .futers-site-dropdown__menu a:hover,
#cabecalhoSite .futers-site-dropdown__menu a:focus-visible {
    background: #edf6fd;
    color: #005ca8;
    outline: none;
}

#cabecalhoSite .futers-site-dropdown__club {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    overflow: hidden;
    border: 1px solid #d9e4ee;
    border-radius: 50%;
    background: #fff;
    color: #fff;
    font-size: .73rem;
    font-weight: 900;
    box-shadow: 0 2px 7px rgba(26, 48, 70, .10);
}

#cabecalhoSite .futers-site-dropdown__club img {
    width: 25px;
    height: 25px;
    display: block;
    object-fit: contain;
}

#cabecalhoSite .futers-site-dropdown__club--gremio,
#cabecalhoSite .futers-site-dropdown__club--inter {
    padding: 2px;
}

@media (max-width: 980px) {
    #cabecalhoSite .futers-site-dropdown {
        width: 100%;
    }

    #cabecalhoSite .futers-site-dropdown__trigger > svg {
        margin-left: auto;
    }

    #cabecalhoSite .futers-site-dropdown__menu {
        position: static;
        width: auto;
        max-height: 0;
        margin: 0 0 0 12px;
        padding: 0 0 0 10px;
        overflow: hidden;
        border: 0;
        border-left: 2px solid transparent;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        transform: none;
        pointer-events: none;
        transition: max-height .18s ease, opacity .14s ease, margin .18s ease, padding .18s ease;
    }

    #cabecalhoSite .futers-site-dropdown.is-open .futers-site-dropdown__menu {
        max-height: 180px;
        margin-bottom: 4px;
        padding-top: 2px;
        padding-bottom: 2px;
        border-left-color: #d8e5f2;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    #cabecalhoSite .futers-site-dropdown__menu a {
        min-height: 42px;
        padding: 5px 10px;
    }

    #cabecalhoSite .futers-site-dropdown__trigger > svg {
        transform: none;
    }

    #cabecalhoSite .futers-site-dropdown.is-open .futers-site-dropdown__trigger > svg {
        transform: rotate(180deg);
    }
}

/* Controle separado dos próximos jogos por clube */
#cabecalhoSite .futers-site-dropdown__club--todos {
    border-color: #536579;
    background: #536579;
}
