/*fixme quebra quando a tela não tem h1*/

.tabs > nav {
    background: white;
    position: sticky;
    top: 3rem;
    display: flex;
    overflow-x: scroll;
    display: flex;
    align-items: stretch;
}

.tabs > nav::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
}

.tabs > nav a {
    color: #646464;
    padding: 0.5rem;
    flex: 1 1 0;
    text-align: center;
    user-select: none;
    border-bottom: 2px solid transparent;
    transition: 0.15s ease-in-out border-bottom-color;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tabs > nav a:hover {
    background: #f6f4f9;
}

.tabs > nav a.sel {
    background: #fcfaff;
    border-bottom: 2px solid var(--azul-escuro);
}

@media (min-width: 1024px) {
    .tabs > nav {
        overflow: visible;
    }

    .tabs > nav a {
        flex: 0 0 auto;
    }
}

.tabs > nav a.disabled, .tabs > nav a.disabled:hover {
    background: white;
    color: lightgray;
}

.tabs > section > div {
    display: none;
}

.tabs > section > div.sel {
    display: block;
}