/* Componente de Tabs */
.tabs-container {
    display: flex;
    overflow: hidden;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
    position: sticky;
    top: 0;
    background-color: var(--light-bg);
    z-index: 100;
    padding-top: 10px;
}

.tab {
    background-color: #f1f1f1;
    border: none;
    cursor: pointer;
    padding: 14px 20px;
    transition: 0.3s;
    flex: 1;
    text-align: center;
    border-radius: 0;
    font-weight: 600;
}

.tab:hover {
    background-color: #ddd;
}

.tab.active {
    background-color: var(--primary-color);
    color: white;
}

.tab-content {
    display: none;
    padding: 20px 0;
}

.tab-content.active {
    display: block;
}