.tabs > nav {
    background: white;
    position: sticky;
    top: var(--altura-menu);
    overflow-x: scroll;
    display: flex;
    display: flex;
    align-items: stretch;
}

@media (min-width: 768px) {
    .tabs > nav {
        border-bottom: 1px solid #bcb3aa;
    }
}

.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;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #bcb3aa;
}

@media (min-width: 768px) {
    .tabs > nav a {
        border: 1px solid transparent;
        padding: 0.6rem 0.8rem;
    }
}

.tabs > nav a:hover {
    background: #f0faf9;
    border: 1px solid #f0faf9;
}

.tabs > nav a.sel {
    border-color: #bcb3aa;
    border-width: 1px 1px 0 1px;
    border-style: solid;
    border-bottom: 1px solid #fff;
}

@media (min-width: 768px) {
    .tabs > nav a.sel {
        position: relative;
        bottom: -1px;
    }
}

@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;
    cursor: not-allowed;
    border: 1px solid transparent;
}

.tabs > section > div {
    display: none;
    padding: 1rem;
}

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